mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 14:55:00 +00:00
25 lines
1020 B
Bash
25 lines
1020 B
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"
|
|
|
|
extra774(){
|
|
check_creds_used_in_last_days 30
|
|
}
|