Skip to content

Disable vsftpd Service

An XCCDF Rule

Description

The vsftpd service can be disabled with the following command:
$ sudo systemctl mask --now vsftpd.service

Rationale

Running FTP server software provides a network-based avenue of attack, and should be disabled if not needed. Furthermore, the FTP protocol is unencrypted and creates a risk of compromising sensitive information.

ID
xccdf_org.ssgproject.content_rule_service_vsftpd_disabled
Severity
Medium
References
Updated

Remediation Templates

A Puppet Snippet

include disable_vsftpd
class disable_vsftpd {
  service {'vsftpd':
    enable => false,
    ensure => 'stopped',
  }
}

An Ansible Snippet

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - NIST-800-53-CM-6(a)
  - NIST-800-53-CM-7(a)

OS Build Blueprint

[customizations.services]
masked = ["vsftpd"]