Checks/Aws/Test-Ec2SecuritygroupAllowIngressFromInternetToTcpPortMemcached11211.ps1
|
function Test-Ec2SecuritygroupAllowIngressFromInternetToTcpPortMemcached11211 { <# .SYNOPSIS Security group does not allow ingress from 0.0.0.0/0 or ::/0 to Memcached TCP port 11211 .DESCRIPTION **EC2 security groups** are evaluated for inbound rules that permit Internet-sourced access to `TCP 11211` (Memcached) from `0.0.0.0/0` or `::/0`. .PARAMETER Check CIEMCheck object containing check metadata. #> [CmdletBinding()] [OutputType([PSCustomObject[]])] param( [Parameter(Mandatory)] [CIEMCheck]$Check ) $ErrorActionPreference = 'Stop' # TODO: Implement check logic based on Prowler check: ec2_securitygroup_allow_ingress_from_internet_to_tcp_port_memcached_11211 [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check ec2_securitygroup_allow_ingress_from_internet_to_tcp_port_memcached_11211 for reference.', 'N/A', 'ec2 Resources') } |