mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-11 07:15:15 +00:00
30 lines
1.6 KiB
Bash
30 lines
1.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Prowler - the handy cloud security tool (c) by Toni de la Fuente
|
|
#
|
|
# This Prowler check is licensed under a
|
|
# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
|
|
#
|
|
# You should have received a copy of the license along with this
|
|
# work. If not, see <http://creativecommons.org/licenses/by-nc-sa/4.0/>.
|
|
|
|
CHECK_ID_check118="1.18"
|
|
CHECK_TITLE_check118="[check118] Ensure security contact information is registered (Not Scored)"
|
|
CHECK_SCORED_check118="NOT_SCORED"
|
|
CHECK_TYPE_check118="LEVEL1"
|
|
CHECK_SEVERITY_check118="Medium"
|
|
CHECK_ASFF_TYPE_check118="Software and Configuration Checks/Industry and Regulatory Standards/CIS AWS Foundations Benchmark"
|
|
CHECK_ALTERNATE_check118="check118"
|
|
CHECK_SERVICENAME_check118="support"
|
|
CHECK_RISK_check118='AWS provides customers with the option of specifying the contact information for accounts security team. It is recommended that this information be provided. Specifying security-specific contact information will help ensure that security advisories sent by AWS reach the team in your organization that is best equipped to respond to them.'
|
|
CHECK_REMEDIATION_check118='Go to the My Account section and complete alternate contacts.'
|
|
CHECK_DOC_check118='https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-account-payment.html'
|
|
CHECK_CAF_EPIC_check118='IAM'
|
|
|
|
check118(){
|
|
# "Ensure security contact information is registered (Scored)"
|
|
# No command available
|
|
textInfo "No command available for check 1.18 "
|
|
textInfo "See section 1.18 on the CIS Benchmark guide for details "
|
|
}
|