#!/usr/bin/env bash # Prowler - the handy cloud security tool (copyright 2020) 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. addHtmlHeader() { if [[ $PROFILE == "" ]];then PROFILE="ENV" fi if [[ -z $HTML_REPORT_INIT ]]; then cat < Prowler - AWS Security Assessments
Report Information:
  • Version: $PROWLER_VERSION
  • Parameters used: $PROWLER_PARAMETERS
  • Date: $TIMESTAMP
  • prowler-logo
Assessment Summary:
  • AWS Account: $ACCOUNT_NUM
  • AWS-CLI Profile: $PROFILE
  • API Region: $REGION
  • User Id: $USER_ID
  • Caller Identity ARN: $CALLER_ARN
Scoring Information:
  • Prowler Score: PROWLER_SCORE%
  • Total Resources: TOTAL_RESOURCES
  • Passed: PASS_COUNTER
  • Failed: FAIL_COUNTER
  • Total Checks Executed: CHECKS_COUNTER
EOF fi } addHtmlFooter() { cat <
Result Severity AccountID Region Compliance Service CheckID Check Title Check Output CAF Epic Risk Remediation Docs Resource ID
EOF unset HTML_REPORT_INIT }