From aa0bf9581993ef74a636cd92d561a8f956afa9bd Mon Sep 17 00:00:00 2001 From: Philippe Ombredanne Date: Fri, 27 Jan 2023 17:48:09 +0100 Subject: [PATCH] Add fireeye/mandiant notice #487 See #487 Signed-off-by: Philippe Ombredanne --- vulnerabilities/importers/fireeye.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vulnerabilities/importers/fireeye.py b/vulnerabilities/importers/fireeye.py index 4aea62c74..7b4e3f3cb 100644 --- a/vulnerabilities/importers/fireeye.py +++ b/vulnerabilities/importers/fireeye.py @@ -23,7 +23,12 @@ class FireyeImporter(GitImporter): spdx_license_expression = "CC-BY-SA-4.0 AND MIT" license_url = "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/README.md" - + notice = """ + Copyright (c) Mandiant + The following licenses/licensing apply to this Mandiant repository: + 1. CC BY-SA 4.0 - For CVE related information not including source code (such as PoCs) + 2. MIT - For source code contained within provided CVE information + """ def __init__(self): super().__init__(repo_url="git+https://github.com/mandiant/Vulnerability-Disclosures")