Disable Cloud Print Sharing
An XCCDF Rule
Description
Chromium has cloud sharing capabilities including sharing printers connected to the system. This is done via a proxy. To disable printer sharing, setCloudPrintProxyEnabled
to false
in the Chromium policy file.
Rationale
Google Chromium has the capability to act as a proxy between Google Cloud Print and legacy printers connected to the machine. Users can then enable the cloud print proxy by authentication with their Google account.
- ID
- xccdf_org.ssgproject.content_rule_chromium_disable_cloud_print_sharing
- Severity
- Unknown
- References
- Updated
Remediation Templates
A Shell Script
if ! grep -q CloudPringProxyEnabled /etc/chromium/policies/managed/chrome_stig_policy.json; then
sed -i -e '/{/a \ "'CloudPringProxyEnabled'": 'false',' /etc/chromium/policies/managed/chrome_stig_policy.json
else
sed -i -e 's/\"'CloudPringProxyEnabled'.*/\"'CloudPringProxyEnabled'\": 'false',/g' /etc/chromium/policies/managed/chrome_stig_policy.json
fi