#!/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 Assesments
Report Information
  • Version: $PROWLER_VERSION
  • Parameters used: $PROWLER_PARAMETERS
  • Date: $TIMESTAMP
  • prowler-logo
Assesment Summary
  • AWS Account: $ACCOUNT_NUM
  • AWS-CLI Profile: $PROFILE
  • API Region: $REGION
  • User Id: $USER_ID
  • Caller Identity ARN: $CALLER_ARN
* Sortable columns are CheckID (default) and Result
EOF fi } addHtmlFooter() { cat <
Status Result Severity AccountID Region Compliance Service CheckID Check Title Check Output
EOF unset HTML_REPORT_INIT }