mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-11 07:15:15 +00:00
29 lines
1.7 KiB
Bash
29 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Prowler - the handy cloud security tool (copyright 2018) by Toni de la Fuente
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
# use this file except in compliance with the License. You may obtain a copy
|
|
# of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software distributed
|
|
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations under the License.
|
|
CHECK_ID_extra774="7.74"
|
|
CHECK_TITLE_extra774="[extra774] Ensure credentials unused for 30 days or greater are disabled"
|
|
CHECK_SCORED_extra774="NOT_SCORED"
|
|
CHECK_TYPE_extra774="EXTRA"
|
|
CHECK_SEVERITY_extra774="Medium"
|
|
CHECK_ASFF_RESOURCE_TYPE_extra774="AwsIamUser"
|
|
CHECK_ALTERNATE_check774="extra774"
|
|
CHECK_SERVICENAME_extra774="iam"
|
|
CHECK_RISK_extra774='To increase the security of your AWS account; remove IAM user credentials (that is; passwords and access keys) that are not needed. For example; when users leave your organization or no longer need AWS access.'
|
|
CHECK_REMEDIATION_extra774='Find the credentials that they were using and ensure that they are no longer operational. Ideally; you delete credentials if they are no longer needed. You can always recreate them at a later date if the need arises. At the very least; you should change the password or deactivate the access keys so that the former users no longer have access.'
|
|
CHECK_DOC_extra774='https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_finding-unused.html'
|
|
CHECK_CAF_EPIC_extra774='IAM'
|
|
|
|
extra774(){
|
|
check_creds_used_in_last_days 30
|
|
}
|