-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathISM_E8_ML1-baseline-resolved-profile_catalog.yaml
2442 lines (2366 loc) · 115 KB
/
ISM_E8_ML1-baseline-resolved-profile_catalog.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
catalog:
uuid: c55a30aa-2fb5-48e8-b7d3-55b718782568
metadata:
title: Information Security Manual Essential Eight Maturity Level One Baseline
last-modified: 2024-12-18T13:15:25.769148Z
version: 2024.12.19
oscal-version: 1.1.2
props:
- name: resolution-tool
value: libOSCAL-Java+xslt
links:
- href: https://www.cyber.gov.au/ism/oscal/v2024.12.19/artifacts/ISM_E8_ML1-baseline_profile.xml
rel: source-profile
roles:
- id: prepared-by
title: Document creator
parties:
- uuid: ae0012b5-2a98-4610-ba74-08928451a4c0
type: organization
name: Australian Cyber Security Centre
short-name: ACSC
links:
- href: https://www.cyber.gov.au
rel: homepage
email-addresses:
- asd.assist@defence.gov.au
addresses:
- type: work
addr-lines:
- Australian Cyber Security Centre
- General enquiries
- PO Box 5076
city: Kingston
state: ACT
postal-code: "2604"
country: AU
responsible-parties:
- role-id: prepared-by
party-uuids:
- ae0012b5-2a98-4610-ba74-08928451a4c0
groups:
- title: Guidelines for Personnel Security
props:
- name: sort-id
value: "catalog[1].group[08]"
groups:
- title: Access to systems and their resources
props:
- name: sort-id
value: "catalog[1].group[08].group[2]"
parts:
- name: overview
prose: |-
# Security clearances
Where these guidelines refer to security clearances, it applies to Australian security clearances or security clearances from a foreign government which are formally recognised by Australia.
# Further information
Further information on access to government resources, including required security clearances, can be found in the Department of Home Affairs’ [Protective Security Policy Framework](#92679127-f61d-486a-a93e-df2a26dfb07a).
Further information on access to highly sensitive government resources, including required briefings, can be found in the Government Security Committee’s Australian Government Security Caveat Guidelines. This publication is available from the Protective Security Policy GovTEAMS community or the Australian Security Intelligence Organisation by email.
Further information on restricting the use of privileged user accounts can be found in ASD’s [Restricting Administrative Privileges](#3ccea9a8-a728-4f5b-a0a8-43f2f206f76b) publication.
Further information on administering systems and applications can be found in the system administration section of the [Guidelines for System Management](#c6ca6620-ccd5-4c5d-b97c-9d92f1162948).
Further information on event logging can be found in the event logging and monitoring section of the [Guidelines for System Monitoring](#edc24216-f52b-4513-bcda-5fa564661999).
groups:
- title: Privileged access to systems
props:
- name: sort-id
value: "catalog[1].group[08].group[2].group[06]"
parts:
- name: overview
prose: |-
Privileged user accounts are considered to be those which can alter or circumvent a system’s controls. This also applies to user accounts that may only have limited privileges but still have the ability to bypass some of a system’s controls.
Privileged user accounts are often targeted by malicious actors as they can potentially give full access to systems. As such, ensuring that privileged user accounts are prevented from accessing the internet, email and web services minimises opportunities for these accounts to be compromised. However, if privileged user accounts are explicitly authorised to access online services, they should be strictly limited to only what is required for users and services to undertake their duties.
Finally, centrally logging and analysing privileged access events, as well as privileged user account and security group management events, can assist in monitoring the security posture of systems, detecting malicious behaviour and contributing to investigations following cyber security incidents.
controls:
- id: ism-1507
class: ISM-control
title: "Control: ism-1507"
props:
- name: sort-id
value: "catalog[1].group[08].group[2].group[06].control[1]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "3"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Dec-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1507_smt
name: statement
prose: "Requests for privileged access to systems, applications and data repositories are validated when first requested."
- id: ism-1175
class: ISM-control
title: "Control: ism-1175"
props:
- name: sort-id
value: "catalog[1].group[08].group[2].group[06].control[3]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "6"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-24
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1175_smt
name: statement
prose: "Privileged user accounts (excluding those explicitly authorised to access online services) are prevented from accessing the internet, email and web services."
- id: ism-1883
class: ISM-control
title: "Control: ism-1883"
props:
- name: sort-id
value: "catalog[1].group[08].group[2].group[06].control[4]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-24
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1883_smt
name: statement
prose: Privileged user accounts explicitly authorised to access online services are strictly limited to only what is required for users and services to undertake their duties.
- id: ism-0445
class: ISM-control
title: "Control: ism-0445"
props:
- name: sort-id
value: "catalog[1].group[08].group[2].group[06].control[6]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "8"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-24
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-0445_smt
name: statement
prose: Privileged users are assigned a dedicated privileged user account to be used solely for duties requiring privileged access.
- title: Guidelines for System Hardening
props:
- name: sort-id
value: "catalog[1].group[15]"
groups:
- title: Operating system hardening
props:
- name: sort-id
value: "catalog[1].group[15].group[1]"
parts:
- name: overview
prose: |-
# Further information
Further information on cyber supply chain risk management can be found in the cyber supply chain risk management section of the [Guidelines for Procurement and Outsourcing](#f37a4848-0791-4870-b316-5536c2681c28).
Further information on patching or updating operating systems can be found in the system patching section of the [Guidelines for System Management](#c6ca6620-ccd5-4c5d-b97c-9d92f1162948).
Further information on hardening Microsoft Windows operating systems can be found in ASD’s [Hardening Microsoft Windows 10 and Windows 11 Workstations](#6e801c68-61f6-4c28-bf72-df91f7e232cc) publication.
Further information on hardening Microsoft Windows operating systems can also be found in the [Microsoft Security Baselines Blog](#0bf3a1ef-031a-419b-80c3-08a08b1cee9d).
Further information on hardening Linux workstations and servers can be found in ASD’s [Hardening Linux Workstations and Servers](#8132c47e-a2dc-4dd9-81d6-38db96e5cec6) publication.
Further information on [exploit protection functionality](#d0df96bb-7236-4784-8f54-2cb6335ad228) within Microsoft Windows is available from Microsoft.
Further information on implementing application control can be found in ASD’s [Implementing Application Control](#4eeff329-cea0-4baf-a80b-8b0b76436075) publication.
Further information on Microsoft’s [recommended application blocklist](#5a2ed3ef-afcc-485e-8014-5107e9ed97e3) and [vulnerable driver blocklist](#4a3a265f-7772-433b-9906-7f784052f28b) are available from Microsoft.
Further information on [command line process logging](#0a1508c0-b062-4d85-8ded-a95316e17a3a) is available from Microsoft.
Further information on the use of PowerShell can be found in ASD’s [Securing PowerShell in the Enterprise](#8ffea524-0974-4b53-a8f5-41166073ede5) publication.
Further information on [the use of PowerShell by blue teams](#7d22400c-ddef-4cbb-90f1-7502dc569e5b) is available from Microsoft.
Further information on obtaining [greater visibility through PowerShell logging](#af0810aa-3486-4ca6-a48a-fad8ce9ac193) is available from Mandiant.
Further information on independent testing of security products’ ability to [detect or prevent various stages of network intrusions](#3a1a00f6-2f56-4d04-b99d-6f1682b95a98) is available from The MITRE Corporation.
Further information on independent testing of antivirus software is available from [AV-Comparatives](#c852e735-4920-4616-8e34-2fddfb49eea8) and [AV-TEST](#18203e18-2aca-492e-be44-770b2f47242f).
Further information on the use of removable media can be found in the media usage section of the [Guidelines for Media](#b594c9c0-b42f-4f06-b643-38023275a5c7).
Further information on event logging can be found in the event logging and monitoring section of the [Guidelines for System Monitoring](#edc24216-f52b-4513-bcda-5fa564661999).
Further information on security-relevant events to monitor for Apple macOS, Linux and Microsoft Windows operating systems can be found in the following ASD publications:
- [Best Practices for Event Logging and Threat Detection](#b95c4745-572a-4121-b4e1-d0baa90a84fc)
- [Hardening Microsoft Windows 10 and Windows 11 Workstations](#6e801c68-61f6-4c28-bf72-df91f7e232cc)
- [Windows Event Logging and Forwarding](#de239dae-d1e8-4969-9680-ef3444d32a83).
groups:
- title: Hardening operating system configurations
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[04]"
parts:
- name: overview
prose: "When operating systems are deployed in their default state, or with an unapproved configuration, it can lead to an insecure operating environment that may allow malicious actors to gain an initial foothold on networks. Many settings exist within operating systems to allow them to be configured in an approved secure state in order to minimise this security risk. As such, the Australian Signals Directorate (ASD) and vendors often produce hardening guidance to assist in hardening the configuration of operating systems. Note, however, in situations where ASD and vendor hardening guidance conflicts, precedence should be given to implementing the most restrictive guidance."
controls:
- id: ism-1654
class: ISM-control
title: "Control: ism-1654"
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[04].control[06]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1654_smt
name: statement
prose: Internet Explorer 11 is disabled or removed.
- title: Application control
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[06]"
parts:
- name: overview
prose: |-
Application control can be an effective way to not only prevent malicious code from executing on workstations and servers, but also to ensure only approved applications can execute. When developing application control rulesets, determining approved executables (e.g. .exe and .com files), software libraries (e.g. .dll and.ocx files), scripts (e.g. .ps1, .bat, .cmd, .vbs and .js files), installers (e.g. .msi, .msp and .mst files), compiled HTML (e.g. .chm files), HTML applications (e.g. .hta files), control panel applets (e.g. .cpl files) and drivers based on business requirements is a more secure method than simply approving those already residing on a workstation or server. Furthermore, it is preferable that an organisation defines their own application control rulesets, rather than relying on those from application control vendors, and validate them on an annual or more frequent basis.
In implementing application control, an organisation should use a reliable method, or combination of methods, such as cryptographic hash rules, publisher certificate rules or path rules. Depending on the method chosen, further hardening may be required to ensure that application control mechanisms and application control rulesets cannot be bypassed by malicious actors.
Finally, centrally logging and analysing application control events can assist in monitoring the security posture of systems, detecting malicious behaviour and contributing to investigations following cyber security incidents.
controls:
- id: ism-0843
class: ISM-control
title: "Control: ism-0843"
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[06].control[01]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "9"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-0843_smt
name: statement
prose: Application control is implemented on workstations.
- id: ism-1870
class: ISM-control
title: "Control: ism-1870"
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[06].control[04]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1870_smt
name: statement
prose: "Application control is applied to user profiles and temporary folders used by operating systems, web browsers and email clients."
- id: ism-1657
class: ISM-control
title: "Control: ism-1657"
props:
- name: sort-id
value: "catalog[1].group[15].group[1].group[06].control[06]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1657_smt
name: statement
prose: "Application control restricts the execution of executables, software libraries, scripts, installers, compiled HTML, HTML applications and control panel applets to an organisation-approved set."
- title: User application hardening
props:
- name: sort-id
value: "catalog[1].group[15].group[2]"
parts:
- name: overview
prose: |-
# User applications
This section is applicable to applications typically installed on user workstations, such as office productivity suites, web browsers and their extensions, email clients, Portable Document Format (PDF) software, and security products (e.g. antivirus software, device access control software, HIPS and software firewalls). Information on server applications can be found in the server application hardening section of these guidelines.
# Further information
Further information on cyber supply chain risk management can be found in the cyber supply chain risk management section of the [Guidelines for Procurement and Outsourcing](#f37a4848-0791-4870-b316-5536c2681c28).
Further information on patching or updating user applications can be found in the system patching section of the [Guidelines for System Management](#c6ca6620-ccd5-4c5d-b97c-9d92f1162948).
Further information on the implementation and configuration of security products can be found in the operating system hardening section of these guidelines.
Further information on hardening Microsoft Office can be found in ASD’s [Hardening Microsoft 365, Office 2021, Office 2019 and Office 2016](#58c9abfb-58fe-416e-a279-dfbfe123c99f) publication.
Further information on hardening Microsoft Office can also be found on the [Microsoft Security Baselines Blog](#0bf3a1ef-031a-419b-80c3-08a08b1cee9d).
Further information on hardening Microsoft Edge can be found on the [Microsoft Security Baselines Blog](#0bf3a1ef-031a-419b-80c3-08a08b1cee9d).
Further information on hardening Google Chrome can be found in Google’s [Chrome Browser Enterprise Security Configuration Guide (Windows)](#741ab440-5759-4571-894d-e499dea3a54c).
Further information on hardening Adobe Reader and Adobe Acrobat can be found in Adobe’s [Security Configuration Guide for Acrobat](#9ad09461-7b3d-4faf-bdcd-61df9952cf49) publication.
Further information on Microsoft’s attack surface reduction rules can be found on Microsoft’s [attack surface reduction rules overview](#82ae76a4-ed9e-4a7b-8bad-f1950c41eab7) website.
Further information on configuring Microsoft Office macro settings can be found in ASD’s [Restricting Microsoft Office Macros](#dfb52998-0e7e-420d-97e1-d1313c8f919a) publication.
groups:
- title: Hardening user application configurations
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[3]"
parts:
- name: overview
prose: "When user applications are deployed in their default state, or with an unapproved configuration, it can lead to an insecure operating environment that may allow malicious actors to gain an initial foothold on networks. This can be especially risky for office productivity suites, web browsers and their extensions, email clients, PDF software, and security products as such applications are routinely targeted for exploitation. Many settings exist within such applications to allow them to be configured in an approved secure state in order to minimise this security risk. As such, ASD and vendors often produce hardening guidance to assist in hardening the configuration of these applications. Note, however, in situations where ASD and vendor hardening guidance conflicts, precedence should be given to implementing the most restrictive guidance."
controls:
- id: ism-1486
class: ISM-control
title: "Control: ism-1486"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[3].control[11]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1486_smt
name: statement
prose: Web browsers do not process Java from the internet.
- id: ism-1485
class: ISM-control
title: "Control: ism-1485"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[3].control[12]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1485_smt
name: statement
prose: Web browsers do not process web advertisements from the internet.
- id: ism-1585
class: ISM-control
title: "Control: ism-1585"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[3].control[14]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "2"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Mar-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1585_smt
name: statement
prose: Web browser security settings cannot be changed by users.
- title: Microsoft Office macros
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[4]"
parts:
- name: overview
prose: "Microsoft Office files can contain embedded code, known as a macro, written in the Visual Basic for Applications programming language. A macro can contain a series of commands that can be coded or recorded and replayed at a later time to automate repetitive tasks. Macros are powerful tools that can be easily created by users to greatly improve their productivity. However, malicious actors can also create macros to perform a variety of malicious activities, such as assisting to compromise workstations in order to exfiltrate or deny access to data. To reduce this security risk, an organisation should disable Microsoft Office macros for users that do not have a demonstrated business requirement and secure their use for the remaining users that do."
controls:
- id: ism-1671
class: ISM-control
title: "Control: ism-1671"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[4].control[01]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1671_smt
name: statement
prose: Microsoft Office macros are disabled for users that do not have a demonstrated business requirement.
- id: ism-1488
class: ISM-control
title: "Control: ism-1488"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[4].control[02]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1488_smt
name: statement
prose: Microsoft Office macros in files originating from the internet are blocked.
- id: ism-1672
class: ISM-control
title: "Control: ism-1672"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[4].control[03]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-21
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1672_smt
name: statement
prose: Microsoft Office macro antivirus scanning is enabled.
- id: ism-1489
class: ISM-control
title: "Control: ism-1489"
props:
- name: sort-id
value: "catalog[1].group[15].group[2].group[4].control[11]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-18
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1489_smt
name: statement
prose: Microsoft Office macro security settings cannot be changed by users.
- title: Authentication hardening
props:
- name: sort-id
value: "catalog[1].group[15].group[4]"
parts:
- name: overview
prose: |-
# User accounts and authentication types
The guidance within this section is equally applicable to all user accounts unless specified otherwise. This includes unprivileged user accounts and privileged user accounts, which includes break glass accounts and service accounts. In addition, the guidance is equally applicable to interactive authentication and non-interactive authentication.
# Further information
Further information on cyber supply chain risk management can be found in the cyber supply chain risk management section of the [Guidelines for Procurement and Outsourcing](#f37a4848-0791-4870-b316-5536c2681c28).
Further information on implementing multi-factor authentication can be found in ASD’s [Implementing Multi-Factor Authentication](#83e3a9b1-5057-4531-91dd-03c8d92634b0) publication.
Further information on event logging can be found in the event logging and monitoring section of the [Guidelines for System Monitoring](#edc24216-f52b-4513-bcda-5fa564661999).
Further information on [randomly generating passphrases](#58282062-5c17-476a-98b1-105a627cd28d) (preferably using five dice rolls and a long word list) is available from the Electronic Frontier Foundation while a [random dice roller](#0508be6f-cb97-44da-b212-42416a0048b0) is available from RANDOM.ORG.
Further information on [group Managed Service Accounts](#91b92563-d991-40fa-9adc-548df9f6c496) in Microsoft Windows Server is available from Microsoft.
Further information on changing credentials for the Kerberos Key Distribution Center’s service account can be found in Microsoft’s [Active Directory accounts](#ae426d0a-adb6-43b8-a463-faa33e83b679) and [Active Directory Forest Recovery - Reset the krbtgt password](#3e5a98e5-9219-46c8-81c2-e3a4d13407ce) publications. A script for [changing credentials for this service account](#f74ba095-a7f7-4b8c-9e60-5fe84f2a2d0b) is also available from Microsoft.
Further information [memory integrity functionality](#d446dea3-c36d-45af-9623-05b686624af0) is available from Microsoft.
Further information on [Local Security Authority protection functionality](#3f43c8d2-8a8c-4e2f-af80-48a607bce643) is available from Microsoft.
Further information on [Credential Guard functionality](#8d53ee7f-54c2-4380-8408-f7403db30ba1) and [Remote Credential Guard functionality](#92975dff-58e0-4813-842b-f27c0533ca56) is available from Microsoft.
Further information on mitigating the use of stolen credentials can also be found in Microsoft’s [Mitigating Pass-the-Hash (PtH) Attacks and Other Credential Theft Techniques, Version 1 and 2](#f9fb4c57-8c12-4edf-9e34-cb422664aae9) publication.
groups:
- title: Multi-factor authentication
props:
- name: sort-id
value: "catalog[1].group[15].group[4].group[03]"
parts:
- name: overview
prose: |-
Multi-factor authentication uses two or more different authentication factors. This may include:
- something users know, such as a memorised secret (i.e. personal identification number, password or passphrase)
- something users have, such as a security key, smart card, passkey, smartphone or one-time password token
- something users are, such as a fingerprint pattern or their facial geometry.
Users of online services, privileged users of systems and users with access to data repositories are more likely to be targeted by malicious actors due to their access. For this reason, it is especially important that multi-factor authentication is used for these user accounts. In addition, multi-factor authentication is vital to any administrative activities as it can limit the consequences of a compromise by preventing or slowing malicious actors’ ability to gain unrestricted access to assets. In this regard, multi-factor authentication can be implemented as part of jump server authentication where assets being administered do not support multi-factor authentication themselves.
When implementing multi-factor authentication, several different authentication factors can be implemented. Unfortunately, some authentication factors, such as biometrics or codes sent via Short Message Service, Voice over Internet Protocol or email, are more susceptible to compromise than others. For this reason, authentication factors that involve something users have should be used with something users know. Alternatively, something users have that is unlocked by something users know or are (often known as passwordless multi-factor authentication) can be used. Furthermore, for increased security, the use of phishing-resistant multi-factor authentication is recommended to protect against real-time phishing attacks.
Finally, centrally logging and analysing multi-factor authentication events can assist in monitoring the security posture of systems, detecting malicious behaviour and contributing to investigations following cyber security incidents.
controls:
- id: ism-1504
class: ISM-control
title: "Control: ism-1504"
props:
- name: sort-id
value: "catalog[1].group[15].group[4].group[03].control[01]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "3"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Dec-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1504_smt
name: statement
prose: "Multi-factor authentication is used to authenticate users to their organisation’s online services that process, store or communicate their organisation’s sensitive data."
- id: ism-1679
class: ISM-control
title: "Control: ism-1679"
props:
- name: sort-id
value: "catalog[1].group[15].group[4].group[03].control[02]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1679_smt
name: statement
prose: "Multi-factor authentication is used to authenticate users to third-party online services that process, store or communicate their organisation’s sensitive data."
- id: ism-1680
class: ISM-control
title: "Control: ism-1680"
props:
- name: sort-id
value: "catalog[1].group[15].group[4].group[03].control[03]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "1"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Sep-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: S
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: TS
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML1
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML2
- name: essential-eight-applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: ML3
parts:
- id: ism-1680_smt
name: statement
prose: "Multi-factor authentication (where available) is used to authenticate users to third-party online services that process, store or communicate their organisation’s non-sensitive data."
- id: ism-1892
class: ISM-control
title: "Control: ism-1892"
props:
- name: sort-id
value: "catalog[1].group[15].group[4].group[03].control[04]"
- name: revision
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: "0"
- name: updated
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: Dec-23
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: NC
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: OS
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0
value: P
- name: applicability
ns: https://cyber.gov.au/ns/ism/oscal/3.0