Memcached Disabled

  • Query id: 2d55ef88-b616-4890-b822-47f280763e89
  • Query name: Memcached Disabled
  • Platform: Ansible
  • Severity: Medium
  • Category: Encryption
  • URL: Github

Description

Check if the Memcached is disabled on the ElastiCache
Documentation

Code samples

Code samples with security vulnerabilities

Postitive test num. 1 - yaml file
- name: Basic example
  community.aws.elasticache:
    name: "test-please-delete"
    state: present
    engine: redis
    cache_engine_version: 5.1.10
    node_type: cache.m1.small
    num_nodes: 1

Code samples without security vulnerabilities

Negative test num. 1 - yaml file
- name: Basic example
  community.aws.elasticache:
    name: test-please-delete
    state: present
    engine: memcached
    cache_engine_version: 5.1.10
    node_type: cache.m1.small
    num_nodes: 1