SV-268517r1137691_rule
V-268517
SRG-OS-000080-GPOS-00048
APPL-15-002100
CAT II
10
Configure the macOS system to disable Media Sharing by installing the "com.apple.applicationaccess" configuration profile.
Verify the macOS system is configured to disable Media Sharing with the following commands:
/usr/bin/osascript -l JavaScript << EOS
function run() {
let pref1 = ObjC.unwrap($.NSUserDefaults.alloc.initWithSuiteName('com.apple.applicationaccess')\
.objectForKey('allowMediaSharing'))
let pref2 = ObjC.unwrap($.NSUserDefaults.alloc.initWithSuiteName('com.apple.applicationaccess')\
.objectForKey('allowMediaSharingModification'))
if ( pref1 == false && pref2 == false ) {
return("true")
} else {
return("false")
}
}
EOS
If the result is not "true", this is a finding.
V-268517
False
APPL-15-002100
Verify the macOS system is configured to disable Media Sharing with the following commands:
/usr/bin/osascript -l JavaScript << EOS
function run() {
let pref1 = ObjC.unwrap($.NSUserDefaults.alloc.initWithSuiteName('com.apple.applicationaccess')\
.objectForKey('allowMediaSharing'))
let pref2 = ObjC.unwrap($.NSUserDefaults.alloc.initWithSuiteName('com.apple.applicationaccess')\
.objectForKey('allowMediaSharingModification'))
if ( pref1 == false && pref2 == false ) {
return("true")
} else {
return("false")
}
}
EOS
If the result is not "true", this is a finding.
M
5661