このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
Description
The Apport modifies certain kernel configuration values at
runtime which may decrease the overall security of the system and expose sensitive data.
The apport
service can be disabled with the following command:
$ sudo systemctl mask --now apport.service
Rationale
The Apport service modifies the kernel
fs.suid_dumpable
configuration at runtime which
prevents other hardening from being persistent. Disabling the
service prevents this behavior.
Shell script
The following script can be run on the host to remediate the issue.
#!/bin/bash
# Remediation is applicable only in certain platforms
if dpkg-query --show --showformat='${db:Status-Status}\n' 'apport' 2>/dev/null | grep -q installed; then
SYSTEMCTL_EXEC='/usr/bin/systemctl'
"$SYSTEMCTL_EXEC" stop 'apport.service'
"$SYSTEMCTL_EXEC" disable 'apport.service'
"$SYSTEMCTL_EXEC" mask 'apport.service'
# Disable socket activation if we have a unit file for it
if "$SYSTEMCTL_EXEC" -q list-unit-files apport.socket; then
"$SYSTEMCTL_EXEC" stop 'apport.socket'
"$SYSTEMCTL_EXEC" mask 'apport.socket'
fi
# The service may not be running because it has been started and failed,
# so let's reset the state so OVAL checks pass.
# Service should be 'inactive', not 'failed' after reboot though.
"$SYSTEMCTL_EXEC" reset-failed 'apport.service' || true
else
>&2 echo 'Remediation is not applicable, nothing was done'
fi
Ansible playbook
The following playbook can be run with Ansible to remediate the issue.
- name: Gather the package facts
package_facts:
manager: auto
tags:
- disable_strategy
- low_complexity
- low_disruption
- no_reboot_needed
- service_apport_disabled
- unknown_severity
- name: Disable Apport Service - Collect systemd Services Present in the System
ansible.builtin.command: systemctl -q list-unit-files --type service
register: service_exists
changed_when: false
failed_when: service_exists.rc not in [0, 1]
check_mode: false
when: '"apport" in ansible_facts.packages'
tags:
- disable_strategy
- low_complexity
- low_disruption
- no_reboot_needed
- service_apport_disabled
- unknown_severity
- name: Disable Apport Service - Ensure apport.service is Masked
ansible.builtin.systemd:
name: apport.service
state: stopped
enabled: false
masked: true
when:
- '"apport" in ansible_facts.packages'
- service_exists.stdout_lines is search("apport.service", multiline=True)
tags:
- disable_strategy
- low_complexity
- low_disruption
- no_reboot_needed
- service_apport_disabled
- unknown_severity
- name: Unit Socket Exists - apport.socket
ansible.builtin.command: systemctl -q list-unit-files apport.socket
register: socket_file_exists
changed_when: false
failed_when: socket_file_exists.rc not in [0, 1]
check_mode: false
when: '"apport" in ansible_facts.packages'
tags:
- disable_strategy
- low_complexity
- low_disruption
- no_reboot_needed
- service_apport_disabled
- unknown_severity
- name: Disable Apport Service - Disable Socket apport
ansible.builtin.systemd:
name: apport.socket
enabled: false
state: stopped
masked: true
when:
- '"apport" in ansible_facts.packages'
- socket_file_exists.stdout_lines is search("apport.socket", multiline=True)
tags:
- disable_strategy
- low_complexity
- low_disruption
- no_reboot_needed
- service_apport_disabled
- unknown_severity