Detecting Vulnerabilities and Sharing Results via Email
This guide outlines how to utilize the Safety CLI tool for detecting vulnerabilities within your project dependencies and automatically sending an email notification when vulnerabilities are detected.
This process involves configuring a policy file to define the behavior of the scan and crafting a command to execute the scan and send the email based on the scan results.
Configuring the Policy FileTo begin, generate a policy file that will dictate how the Safety CLI scanner operates. This policy file allows for customization of the scanning process, including setting parameters that prevent the scan from failing with an exit code when vulnerabilities are detected.
Follow these steps:
Generate a new policy file by running:
safety generate policy_file
Open the generated .safety_policy.yml file and modify it as follows to prevent the scanner from exiting with a failure code due to detected vulnerabilities:
Place this .safety_policy.yml at the root of your project directory. For more detailed information on Safety CLI's policy file and its configurations, refer to the official documentation.
Running the Scan and Emailing Results
This command performs a vulnerability scan using the Safety CLI tool, checks for any detected vulnerabilities, and sends an email notification if any vulnerabilities are found. It is designed to be executed in Unix and macOS environments.
Scan Execution: The Safety CLI tool is executed with a specified API key and stage. The results are saved in both JSON and human-readable text formats.
Vulnerability Detection: The jq tool is used to parse the JSON output to check for any known vulnerabilities.
Email Notification: If vulnerabilities are detected, an email is sent with the contents of the text report.
The --save-as json report.json > text_report part saves Safety CLI results in a JSON format to report.json, while redirecting the standard output to be saved as human-readable text_report.
The jq command checks for the presence of any vulnerabilities by examining the id fields within the scan results. If any vulnerabilities are found (true), the subsequent command is triggered.
xargs -I {} test {} = "true" uses the result from jq to conditionally proceed with sending an email if vulnerabilities are detected.
The mail command constructs an email with the subject "Vulnerabilities found" and the content of text_report, sending it to the specified email address.
The || true ensures that, regardless of the exit codes in the pipe, the command sequence exits with a status code of 0 to prevent interrupting any automated pipelines due to a failure status.
This command performs a vulnerability scan using the Safety CLI tool, checks for any detected vulnerabilities, and sends an email notification if any vulnerabilities are found. It is designed to be executed in a Windows PowerShell environment.
Scan Execution: The Safety CLI tool is executed with a specified API key and stage. The results are saved in both JSON and human-readable text formats.
Vulnerability Detection: The vulnerability detection process involves the script first checking if the report.json file exists. Upon confirming its presence, the script then parses the JSON output to identify any known vulnerabilities.
Email Notification: If vulnerabilities are detected, an email is sent with the contents of the text report. The email configuration is specified using SMTP server details.
To send an email notification about detected vulnerabilities, you need to configure an SMTP (Simple Mail Transfer Protocol) server. An SMTP server is a critical component for email communication, acting as the mail delivery agent that sends outgoing emails from your system to the recipient’s email server. Configuring the SMTP server involves specifying the server address (e.g., smtp.sendgrid.net), the port number (typically 587 for TLS or 465 for SSL), and authentication credentials, which include the SMTP username and password, usually corresponding to an API key and its value. These credentials ensure secure and authenticated communication between your system and the SMTP server.
Command Variables
Before executing the command, you need to set the following variables:
API_KEY: The API key for the Safety CLI scan.
SMTP_SERVER: The SMTP server address (e.g., smtp.sendgrid.net).
SMTP_PORT: The SMTP server port (e.g., 587).
SMTP_USER: The SMTP username, typically an API key identifier.
SMTP_PASSWORD: The SMTP password, typically the API key value.
RECIPIENT_EMAIL: The email address to which the report will be sent.
SENDER_EMAIL: The email address from which the report will be sent.
While the above command provides a quick and integrated solution for scanning and alerting, it's possible to incorporate this logic into a script for more complex workflows or to enhance readability and maintainability. This guide aims to facilitate a seamless integration of vulnerability scanning and notification within your CI/CD pipeline, ensuring that your team is promptly informed of any security issues detected in your project dependencies.