-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfight.yaml
11769 lines (11639 loc) · 610 KB
/
fight.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
case-studies: []
data sources:
- description: Computer software that provides low-level control for the hardware
and device(s) of a host, such as BIOS or UEFI/EFI
id: DS0001
name: Firmware
object-type: data source
techniques: []
- description: A profile representing a user, device, service, or application used
to authenticate and access resources
id: DS0002
name: User Account
object-type: data source
techniques:
- FGT1078.003
- FGT1078.004
- FGT1020.001
- description: 'Automated tasks that can be executed at a specific time or on a recurring
schedule running in the background (ex: Cron daemon, task scheduler, BITS)'
id: DS0003
name: Scheduled Job
object-type: data source
techniques: []
- description: Information obtained (via shared or submitted samples) regarding malicious
software (droppers, backdoors, etc.) used by adversaries
id: DS0004
name: Malware Repository
object-type: data source
techniques: []
- description: The infrastructure for management data and operations that enables
local and remote management of Windows personal computers and servers
id: DS0005
name: WMI
object-type: data source
techniques: []
- description: Credential material, such as session cookies or tokens, used to authenticate
to web applications and services
id: DS0006
name: Web Credential
object-type: data source
techniques:
- FGT5034
- description: A single file used to deploy a virtual machine/bootable disk into an
on-premise or third-party cloud environment
id: DS0007
name: Image
object-type: data source
techniques:
- FGT5039
- FGT1014
- FGT1542.501
- description: A computer program, at the core of a computer OS, that resides in memory
and facilitates interactions between hardware and software components
id: DS0008
name: Kernel
object-type: data source
techniques:
- FGT1014
- FGT1542.501
- FGT1587.004
- description: Instances of computer programs that are being executed by at least
one thread. Processes have memory space for process executables, loaded modules
(DLLs or shared libraries), and allocated memory regions containing everything
from user input to application-specific data structures
id: DS0009
name: Process
object-type: data source
techniques:
- FGT1611
- FGT1014
- FGT1542.501
- FGT1072
- FGT1611.501
- FGT1040
- description: Data object storage infrastructure hosted on-premise or by third-party
providers, made available to users through network connections and/or APIs
id: DS0010
name: Cloud Storage
object-type: data source
techniques:
- FGT5034
- description: Executable files consisting of one or more shared classes and interfaces,
such as portable executable (PE) format binaries/dynamic link libraries (DLL),
executable and linkable format (ELF) binaries/shared libraries, and Mach-O format
binaries/shared libraries
id: DS0011
name: Module
object-type: data source
techniques: []
- description: A file or stream containing a list of commands, allowing them to be
launched in sequence
id: DS0012
name: Script
object-type: data source
techniques: []
- description: Information from host telemetry providing insights about system status,
errors, or other notable functional activity
id: DS0013
name: Sensor Health
object-type: data source
techniques:
- FGT1542.501
- FGT1195
- FGT1599.501
- FGT1599.502
- FGT5038
- FGT1498.502
- FGT1195.003
- description: A single unit of shared resources within a cluster, comprised of one
or more containers
id: DS0014
name: Pod
object-type: data source
techniques:
- FGT5013
- FGT5014
- description: Events collected by third-party services such as mail servers, web
applications, or other appliances (not by the native OS or platform) Data sources
with information about the set of devices found within the network, along with
their current software and configurations
id: DS0015
name: Application Log
object-type: data source
techniques:
- FGT1199.501
- FGT5002
- FGT5003
- FGT5004
- FGT5004.001
- FGT5004.002
- FGT5039
- FGT5005
- FGT5007
- FGT5008
- FGT5011
- FGT1600.501
- FGT1072
- FGT5013
- FGT5014
- FGT1611.501
- FGT1599.501
- FGT1599.502
- FGT5038
- FGT1040
- FGT1555.501
- FGT5016
- FGT1557.502
- FGT5027
- FGT5028
- FGT1557.503
- FGT5012.005
- FGT5020
- FGT5032.002
- FGT5032.003
- FGT5019.003
- FGT5009.001
- FGT1499
- FGT1499
- FGT1048.003
- FGT5009.002
- FGT1600.502
- FGT5029
- FGT5037
- FGT5036
- description: A non-volatile data storage device (hard drive, floppy disk, USB flash
drive) with at least one formatted partition, typically mounted to the file system
and/or assigned a drive letter
id: DS0016
name: Drive
object-type: data source
techniques: []
- description: A directive given to a computer program, acting as an interpreter of
some kind, in order to perform a specific task
id: DS0017
name: Command
object-type: data source
techniques:
- FGT1021
- FGT5014
- FGT1040
- FGT1020.001
- FGT1048.501
- description: 'A network security system, running locally on an endpoint or remotely
as a service (ex: cloud environment), that monitors and controls incoming/outgoing
network traffic based on predefined rules'
id: DS0018
name: Firewall
object-type: data source
techniques:
- FGT1498.501
- FGT1583.508
- description: A computer process that is configured to execute continuously in the
background and perform system tasks, in some cases before any user has logged
in
id: DS0019
name: Service
object-type: data source
techniques:
- FGT1014
- FGT1542.501
- description: A malicious online profile representing a user commonly used by adversaries
to social engineer or otherwise target victims
id: DS0021
name: Persona
object-type: data source
techniques: []
- description: A computer resource object, managed by the I/O system, for storing
data (such as images, text, videos, computer programs, or any wide variety of
other media).
id: DS0022
name: File
object-type: data source
techniques:
- FGT1014
- FGT1542.501
- FGT1195
- FGT1020.001
- FGT5032.002
- FGT5032.003
- FGT1195.002
- FGT1195.003
- description: Mechanisms that allow inter-process communication locally or over the
network. A named pipe is usually found as a file and processes attach to it
id: DS0023
name: Named Pipe
object-type: data source
techniques: []
- description: A Windows OS hierarchical database that stores much of the information
and settings for software programs, hardware devices, user preferences, and operating-system
configurations
id: DS0024
name: Windows Registry
object-type: data source
techniques: []
- description: Infrastructure, platforms, or software that are hosted on-premise or
by third-party providers, made available to users through network connections
and/or APIs
id: DS0025
name: Cloud Service
object-type: data source
techniques:
- FGT5032.002
- FGT5032.003
- FGT5034
- description: A database and set of services that allows administrators to manage
permissions, access to network resources, and stored data objects (user, group,
application, or devices)
id: DS0026
name: Active Directory
object-type: data source
techniques: []
- description: A computer program that operates or controls a particular type of device
that is attached to a computer. Provides a software interface to hardware devices,
enabling operating systems and other computer programs to access hardware functions
without needing to know precise details about the hardware being used
id: DS0027
name: Driver
object-type: data source
techniques: []
- description: Logon occurring on a system or resource (local, domain, or cloud) to
which a user/device is gaining access after successful authentication and authorizaton
id: DS0028
name: Logon Session
object-type: data source
techniques:
- FGT5039
- FGT1078.003
- FGT1021
- FGT1078.004
- FGT1599.501
- FGT1599.502
- FGT5038
- FGT1020.001
- FGT1555.501
- FGT5029
- FGT5037
- FGT5036
- description: 'Data transmitted across a network (ex: Web, DNS, Mail, File, etc.),
that is either summarized (ex: Netflow) and/or captured as raw data in an analyzable
format (ex: PCAP)'
id: DS0029
name: Network Traffic
object-type: data source
techniques:
- FGT1199.501
- FGT5004
- FGT5004.001
- FGT5004.002
- FGT5039
- FGT5005
- FGT1014
- FGT1542.501
- FGT1600.501
- FGT5021
- FGT1021
- FGT1599.501
- FGT1599.502
- FGT5038
- FGT1020.001
- FGT1555.501
- FGT1018
- FGT1046
- FGT1599
- FGT1557.502
- FGT1557.503
- FGT1565.002
- FGT1565.002
- FGT1565.002
- FGT1572
- FGT5009
- FGT5009.001
- FGT1499
- FGT1499
- FGT1048.003
- FGT1048
- FGT5009.002
- FGT1600.502
- FGT5029
- FGT1572.501
- FGT5031
- FGT1498.503
- FGT1599.505
- FGT5012.008
- FGT5019.005
- FGT1200
- FGT1048.501
- description: A virtual server environment which runs workloads, hosted on-premise
or by third-party cloud providers
id: DS0030
name: Instance
object-type: data source
techniques: []
- description: A set of containerized computing resources that are managed together
but have separate nodes to execute various tasks and/or applications
id: DS0031
name: Cluster
object-type: data source
techniques: []
- description: A standard unit of virtualized software that packages up code and all
its dependencies so the application runs quickly and reliably from one computing
environment to another
id: DS0032
name: Container
object-type: data source
techniques:
- FGT1611
- FGT5007
- FGT5013
- FGT5014
- FGT1611.501
- description: A storage resource (typically a folder or drive) made available from
one host to others using network protocols, such as Server Message Block (SMB)
or Network File System (NFS)
id: DS0033
name: Network Share
object-type: data source
techniques: []
- description: Block object storage hosted on-premise or by third-party providers,
typically made available to resources as virtualized hard drives
id: DS0034
name: Volume
object-type: data source
techniques:
- FGT1611
- FGT1611.501
- description: Information obtained (commonly via active network traffic probes or
web crawling) regarding various types of resources and servers connected to the
public Internet
id: DS0035
name: Internet Scan
object-type: data source
techniques: []
- description: A collection of multiple user accounts that share the same access rights
to the computer and/or network resources and have common security rights
id: DS0036
name: Group
object-type: data source
techniques: []
- description: A digital document, which highlights information such as the owner's
identity, used to instill trust in public keys used while encrypting network communications
id: DS0037
name: Certificate
object-type: data source
techniques:
- FGT5034
- description: 'Information obtained (commonly through registration or activity logs)
regarding one or more IP addresses registered with human readable names (ex: mitre.org)'
id: DS0038
name: Domain Name
object-type: data source
techniques: []
- description: Monitoring ability to detect new ports, devices on the network
id: DS0039
name: Asset
object-type: data source
techniques:
- FGT1040
- FGT1200
- description: Operational databases contain information about the status of the operational
process and associated devices, including any measurements, events, history, or
alarms that have occurred
id: DS0040
name: Operational Databases
object-type: data source
techniques:
- FGT5018
- FGT5018.002
- description: RF spectrum monitoring equipment, optionally including direction finding
and geolocation
id: FGDS5001
name: RF Spectrum Monitor
object-type: data source
techniques:
- FGT5035
- description: UE measurements of received power levels from all base stations nearby.
Report to operator gNB radio signals (sent to all UEs to enable them to select
gNB and connect) received at a given UE
id: FGDS5002
name: UE signal measurements
object-type: data source
techniques:
- FGT1557.501
- FGT5012.006
- FGT1583.501
- FGT1608.501
- FGT5012.007
- FGT1642.501
- description: Audit charging system records for anomaly
id: FGDS5003
name: Charging anomaly
object-type: data source
techniques:
- FGT5021
- FGT5023
- description: Scan voice calls for certain amount of losses to detect if the call
is made over internet (IP)
id: FGDS5004
name: Scan voice calls
object-type: data source
techniques: []
- description: Keep track of SIM cards with unusual pattern
id: FGDS5005
name: SIM card pattern
object-type: data source
techniques:
- FGT5026
- description: Monitor for excessive data usage; including using AI/ML
id: FGDS5006
name: UE data usage
object-type: data source
techniques:
- FGT1499.501
- FGT5025
- description: Number of access requests received from UEs (or a single UE) at the
gNB. Keep track to avoid overload.
id: FGDS5007
name: UE access requests
object-type: data source
techniques:
- FGT1499.002
- FGT1499.002
- description: Leaking IR.21 information on the Internet can be found
id: FGDS5008
name: Search Internet for leaks
object-type: data source
techniques:
- FGT1592.501
- description: Maintain logs of access to operator O&M resources like IR.21 databases.
id: FGDS5009
name: Access to operator resource
object-type: data source
techniques:
- FGT1592.501
- FGT5015
- description: UE transitions from 5GS to 4G/EPS with less or no security
id: FGDS5010
name: UE transition to less secure service
object-type: data source
techniques:
- FGT5019.002
- FGT5012.002
- FGT1040.501
- description: Subscriber notifies service provider about DoS attack or other issues
id: FGDS5011
name: Subscriber notify provider
object-type: data source
techniques:
- FGT1499.502
- FGT5022
- FGT5025
- FGT1565.002
- FGT1499.503
- description: Security Incident and event monitoring. Event logs recording user activities,
exceptions, faults and information security events should be produced, kept and
regularly reviewed
id: FGDS5012
name: SIEM
object-type: data source
techniques:
- FGT1525
- FGT5018.001
- FGT5018.003
- FGT5018.004
- FGT5017
- FGT1498.502
- description: 'The UE can tell that there is a 5G cell site that it can hear, but
if it eventually gets connected to a 4G cell site '
id: FGDS5013
name: UE connecting to 4G
object-type: data source
techniques:
- FGT1562.501
- description: Analyze SDN logs to detect unauthorized activity
id: FGDS5014
name: SDN Access Logs
object-type: data source
techniques:
- FGT5004
- FGT5004.001
- FGT5004.002
- description: Automated hash verification of images
id: FGDS5015
name: Image verification
object-type: data source
techniques:
- FGT1525
- FGT5032.002
- FGT5032.003
- FGT1498.503
- FGT5034
- description: Verify payload for GTP-U encapsulated packets
id: FGDS5016
name: Payload checking
object-type: data source
techniques:
- FGT1572.501
- FGT5031
- description: Monitor gNB and core network logs for NULL scheme usage for SUCI protection.
id: FGDS5017
name: Monitor null scheme usage
object-type: data source
techniques:
- FGT5019.004
- description: Monitor provisioning logs in core network for changes in home network
public key and home PLMN ID.
id: FGDS5018
name: Monitor provisioning logs
object-type: data source
techniques:
- FGT5019.004
- description: Monitor when UE makes emergency call or when UE is moved to eNB in
NSA mode.
id: FGDS5019
name: Monitor operations logs
object-type: data source
techniques:
- FGT5019.004
- description: Monitor gNB logs for unplanned network service outages.
id: FGDS5020
name: Monitor unplanned service outage
object-type: data source
techniques:
- FGT5024
- description: Monitor all 3rd party application onboarding processes and use host
scanning to detect malware insertions.
id: FGDS5021
name: Monitor 3rd party application onboarding
object-type: data source
techniques:
- FGT5034
- description: Monitor if any security configurations have been downgraded to weak
or no security.
id: FGDS5022
name: Monitor security configurations
object-type: data source
techniques:
- FGT1040
- FGT1565.002
- description: Run at the UE side an application/tool to detect received silent SMS
messages
id: FGDS5102
name: Silent SMS detector
object-type: data source
techniques:
- FGT5019.006
- FGT5012.007
- description: Automated policy compliance checks
id: FGDS5023
name: Audit policy violation
object-type: data source
techniques:
- FGT1498.502
id: FiGHT
mitigations:
- description: Increase RACH resources on the gNB (bandwith, time slots)
id: FGM5021
name: Increase RACH (Random Access CHannel resources)
object-type: mitigation
techniques:
- FGT1499.002
- description: When the subscriber affiliation is reflected in the home network identifier
(part of subscriber identifier), and would benefit from not being sent in the
clear, the subscriber's provider (home network) should be a proxy mobile network
operator - whose identifier does not reveal the true affiliation of the subscriber.
id: FGM5022
name: Proxy home network
object-type: mitigation
techniques:
- FGT5019.001
- description: Perform periodic authentication and authorization of consumer NFs by
NRF
id: FGM5023
name: Periodic Authentication & Authorization of NFs
object-type: mitigation
techniques:
- FGT5007
- FGT5010
- FGT5012.004
- FGT1499.503
- FGT5023
- description: Use strong data integrity protection algorithms.
id: FGM5024
name: Integrity protection of data communication
object-type: mitigation
techniques:
- FGT5004
- FGT5004.001
- FGT5004.002
- FGT1557.503
- FGT1565.002
- FGT1565.002
- FGT1565.002
- FGT1565.002
- FGT1557.504
- FGT1195.501
- FGT1572
- FGT5009.001
- FGT5009.002
- FGT1642.501
- FGT1048.501
- description: Disable or remove an RF transmitter
id: FGM5001
name: Disable malicious transmitter
object-type: mitigation
techniques:
- FGT5035
- description: User Equipment (UE) can reject e.g. RRC signaling such as RRC Release
with Redirect info, if not integrity protected.
id: FGM5002
name: Discard RAN signaling received without integrity protection
object-type: mitigation
techniques:
- FGT1562.501
- description: NFs such as NRF should cross check with TLS layer before issuing token
to an NF
id: FGM5003
name: Cross check between application layer and transport layer
object-type: mitigation
techniques:
- FGT5003
- FGT5011
- FGT5027
- description: Employ a SMS Router that intercepts incoming location queries (from
other operators), configured so that it can't be subverted.
id: FGM5004
name: Correctly configure SMS firewall
object-type: mitigation
techniques:
- FGT5002
- FGT5012.008
- FGT5019.005
- FGT5019.006
- FGT5012.007
- description: 'Physical protection of: communications centers, Telecommunications
equipment room, Physically isolated operation areas, Equipment sited in other
carrier''s or partner''s premises, cable/fibers, junction boxes, '
id: FGM5005
name: Physical and environmental protection
object-type: mitigation
techniques:
- FGT5018
- FGT5018.001
- FGT5018.002
- FGT5018.003
- FGT5018.004
- FGT1498.502
- description: This profile does not allow bidding down to 4G
id: FGM5006
name: Restrictive user profile
object-type: mitigation
techniques:
- FGT5019.002
- FGT5012.002
- FGT1040.501
- FGT5009.001
- description: Subscription that includes unlimited data can prevent DoS due to exhausion
of data plan limits
id: FGM5007
name: Unlimited data plan
object-type: mitigation
techniques:
- FGT1499.501
- description: On the UE, monitor installed applications for data usage and perform
throttling if necessary
id: FGM5008
name: Monitor installed applications for data usage
object-type: mitigation
techniques:
- FGT1499.501
- description: Services are refreshed periodically and/or terminated after completion
of a request.
id: FGM5010
name: Non-Persistent Services
object-type: mitigation
techniques:
- FGT5029
- description: Check if IMSI is served by the slice ID (NSSAI)
id: FGM5012
name: Slice ID check
object-type: mitigation
techniques:
- FGT5012.005
- description: UDM/UDR should correctly implement UE authentication/registration status
updates.
id: FGM5013
name: Timely updates to UE status
object-type: mitigation
techniques:
- FGT5010
- description: UDM can check whether a requesting AMF is likely to be the one serving
that UE.
id: FGM5014
name: UE location plausibility
object-type: mitigation
techniques:
- FGT5010
- description: NEF should authorize API calls especially from external AFs for service
accesses
id: FGM5019
name: Authorize external API calls
object-type: mitigation
techniques:
- FGT5008
- FGT5011
- FGT5012.004
- FGT5019.003
- description: Including EIR Equipment Identity Register
id: FGM5020
name: Secure subscriber repositories
object-type: mitigation
techniques:
- FGT5015
- FGT5022
- description: Use zero trust principles for application/NF protection
id: FGM5033
name: Zero Trust
object-type: mitigation
techniques:
- FGT1040
- FGT5020
- description: Separate repositositories must be maintained for development and production
software to avoid access and image slipovers
id: FGM5088
name: Separate repositories for development and production
object-type: mitigation
techniques:
- FGT1525
- description: Use image name and hash to verify image during deployment
id: FGM5089
name: Verify image in deployment
object-type: mitigation
techniques:
- FGT1525
- FGT5017
- description: Correlate logs between SDN controllers and network elements
id: FGM5090
name: Log correlation
object-type: mitigation
techniques:
- FGT1525
- FGT5004
- FGT5004.001
- FGT5004.002
- FGT5005
- description: Enforce mutual authentication between SDN controller, network elements,
SDN controller and SDN application
id: FGM5091
name: Mutual authentication
object-type: mitigation
techniques:
- FGT5004
- FGT5004.001
- FGT5004.002
- FGT5034
- description: 'UE warn user of lower security network. '
id: FGM5092
name: Warn user
object-type: mitigation
techniques:
- FGT1562.501
- description: UDM/SIDF checks if SUCI freshness parameter from the same UE (with
same SUPI) is identical during SUCI deconcealment within a short period of time
id: FGM5093
name: SUCI freshness parameter
object-type: mitigation
techniques:
- FGT1499.502
- description: Network (AMF) should allocate new 5G-GUTI whenever possible; UPF and
gNB should allocate unique Tunnel IDs. SMF should check newly allocated charging
IDs.
id: FGM5094
name: Allocate new 5G identifiers judiciously
object-type: mitigation
techniques:
- FGT5012.003
- FGT5021
- FGT5023
- description: Verify if the TLS certificate is valid for the endpoint
id: FGM5095
name: TLS certificate check
object-type: mitigation
techniques:
- FGT1557.504
- description: Disable usage of location on UE device
id: FGM5096
name: Disable UE location use
object-type: mitigation
techniques:
- FGT5012.002
- description: Restrict UE to bid down (from 5G) or use of less secure system
id: FGM5097
name: Disable acceptance of a less secure system
object-type: mitigation
techniques:
- FGT1562.501
- description: Use UE only when needed. Turn power off when not in use.
id: FGM5098
name: Reduce UE usage
object-type: mitigation
techniques:
- FGT5012.001
- description: Move UE close to gNB or indoors to make geo-location harder
id: FGM5099
name: Move UE close to gNB
object-type: mitigation
techniques:
- FGT5035
- FGT5012.001
- description: Raising the height of the UE may move it outside another RF source,
e.g. jammer
id: FGM5100
name: Raise height of UE
object-type: mitigation
techniques:
- FGT5035
- description: Isolate CDR databases from the rest of the IT systems/NOC resources
id: FGM5101
name: Isolate CDR database
object-type: mitigation
techniques: []
- description: Run at the UE side an application/tool to detect and not respond to
silent SMS messages
id: FGM5102
name: 'Silent SMS blocker '
object-type: mitigation
techniques:
- FGT5019.006
- FGT5012.007
- description: Use a firewall or other rate limiter for signaling and user plane traffic
coming into 5G network
id: FGM5498
name: Limit incoming signaling and user plane traffic
object-type: mitigation
techniques:
- FGT1498.501
- FGT1572.501
- description: Producer NF e.g. AUSF can rate limit authentication requests from the
same SUCI/SUPI too many times in a short period. Or NRF not respond to requests
after a given number of failed NSSAI lookups
id: FGM5499
name: Rate limiting by producer NF
object-type: mitigation
techniques:
- FGT1499.002
- FGT5028
- description: E.g. restrict access to IR.21 database
id: FGM5500
name: Restrict access to operator OA&M resources
object-type: mitigation
techniques:
- FGT1592.501
- description: Operator should deploy TLS proxies or firewalls on the SBA that can
inspect packets to detect anomalies
id: FGM5501
name: TLS proxy/firewalls with DPI on the SBA
object-type: mitigation
techniques:
- FGT5003
- FGT1437
- description: 'Examples: employ home routing vs. local bypass.'
id: FGM5503
name: Increase control of home network for user plane
object-type: mitigation
techniques:
- FGT5025
- description: 'Cloud compute, cloud storage and any serverless activity should be
isolated from other tenants '
id: FGM5504
name: Resource Isolation in virtualization environment
object-type: mitigation
techniques:
- FGT1583
- description: Hardware mediated execution environment
id: FGM5505
name: Hardware mediated execution environment
object-type: mitigation
techniques:
- FGT1599.501
- FGT1599.502
- FGT5038
- FGT1583
- description: Use of Network Slice Templates -Use of templates for network slicing
can enforce baseline security and isolation requirements. These templates can
be created for networks, compute and 5G slice functions deployments.
id: FGM5506
name: network slice templates
object-type: mitigation
techniques:
- FGT1599.501
- FGT1599.502
- FGT5038
- description: Continuity of power supplies to equipment deployed in the field.
id: FGM5540
name: Power supplies
object-type: mitigation
techniques:
- FGT5018.001
- description: Vulnerability scanning is used to find potentially exploitable software
vulnerabilities to remediate them.
id: M1016
name: Vulnerability Scanning
object-type: mitigation
techniques:
- FGT1195
- FGT1190
- FGT1499
- FGT1499
- FGT1195.002
- FGT1195.003
- description: Train users to be aware of access or manipulation attempts by an adversary
to reduce the risk of successful spearphishing, social engineering, and other
techniques that involve user interaction.
id: M1017
name: User Training
object-type: mitigation
techniques:
- FGT1078.004
- FGT1555.501
- FGT5026
- FGT1195.501
- description: Manage the creation, modification, use, and permissions associated
to user accounts.
id: M1018
name: User Account Management
object-type: mitigation
techniques:
- FGT1199.501
- FGT1014
- FGT1542.501
- FGT5007
- FGT1600.501
- FGT1021
- FGT1072
- FGT1078.004
- FGT5013
- FGT1609.501
- FGT5014
- FGT1611.501
- FGT1555.501
- FGT5009.001
- FGT5009.002
- FGT1600.502
- FGT5037
- FGT5036
- description: Break and inspect SSL/TLS sessions to look at encrypted web traffic
for adversary activity.
id: M1020
name: SSL/TLS Inspection
object-type: mitigation
techniques:
- FGT1040
- FGT5027
- FGT1565.002
- description: Restrict access by setting directory and file permissions that are
not specific to users or privileged accounts.
id: M1022
name: Restrict File and Directory Permissions
object-type: mitigation
techniques:
- FGT5004