diff --git a/docs/content/en/connecting_your_tools/parsers/file/reversinglabs_spectraassure.md b/docs/content/en/connecting_your_tools/parsers/file/reversinglabs_spectraassure.md new file mode 100644 index 00000000000..1d9bb9bb5f7 --- /dev/null +++ b/docs/content/en/connecting_your_tools/parsers/file/reversinglabs_spectraassure.md @@ -0,0 +1,109 @@ +# ReversingLabs SpectraAssure Parser + +## File Types + +The parser accepts only `report.rl.json` files. +You can find instructions how to export the `rl-json` report from the cli and portal scanners. + +- [Spectra Assure Cli](https://docs.secure.software/cli/). +- [Spectra Assure Portal](https://docs.secure.software/portal/). +- [docker:rl-scanner](https://hub.docker.com/r/reversinglabs/rl-scanner). +- [docker:rl-scanner-cloud](https://hub.docker.com/r/reversinglabs/rl-scanner-cloud). + + +## Relevant Fields in report.rl.json + +The format of the `rl-json` report is shown in: + +- [analysis-reports:rl-json](https://docs.secure.software/concepts/analysis-reports#rl-json). + +The RlJsonInfo module is the principal parser vor the `report.rl.json` data. +The primary focus is on extracting vulnerabilities (CVE) that occur on rl-json `components` and rl-json `dependencies`. All items without vulnerabilities are currently ignored. + +All data is stored only once in the rl-json file and it uses references to map relevant related data: + + Component -> Vulnerabilities + Component -> Dependencies -> Vulnerabilities + +During the parsing we follow the references and add each item to a individual `CveInfoNode` record that has the vulnerablity and the component and the dependency data. + +The `CveInfoNode` basically maps almost directly to the `DefectDojo Finding`. + +The `title` and `description` are build using the collected data. + +### Title + +#### Component + +For a Components, the title shows: + +- the CVE. +- the type: `Component`. +- the `purl` of the `Component` if present, otherwise name and version. +- the component-name. +- the component-sha256. + +The sha256 is added as sometimes a file scan my have multiple items with the same name and version but with a different hash. +Typically this happens with multi language windows installeres. + +#### Dependency + +The title shows the: + +- the CVE. +- the type: `Dependecy`. +- the `purl` of the `Dependency` if present, otherwise name and version. + +### Description + +#### Component + +For a component we repeat the title. + +#### Dependency + +For a dependency we repeat the title and then add the component_name and component_hash. +For duplicates we add one additional line to the description for each duplicate, showing its title and component. + +### Vulnerabilities + +From the vulnerability we fetch: + +- the CVE unique id +- cvss version +- cvss.basescore + +From the cvss.basescore we map the severity into: + +- Info +- Low +- Medium +- High +- Critical + +### Other + +We extract the scan date and the scanner version and set a static scanner-name. + +## Field Mapping Details + + +- Currently no endpoints are created + +- On detecting a duplicate `dependency` we increment the number of occurrences. +`Components` have no duplicates so the nr of occurrences is always 1. + +- Deduplication is done only on Dependencies and we use the title (cve + dependency_name and version) + the `component-path` as the hash_key to detect duplicates. + +- The default severity if no mapping is matched is `Info`. + +## Sample Scan Data or Unit Tests + +- [Sample Scan Data Folder](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/reversinglabs_spectraassure) + +## Link To Tools + +- [Spectra Assure Cli](https://docs.secure.software/cli/) +- [Spectra Assure Portal](https://docs.secure.software/portal/) +- [docker:rl-scanner](https://docs.secure.software/cli/integrations/docker-image) +- [docker:rl-scanner-cloud](https://docs.secure.software/portal/docker-image) diff --git a/dojo/tools/reversinglabs_spectraassure/__init__.py b/dojo/tools/reversinglabs_spectraassure/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/dojo/tools/reversinglabs_spectraassure/parser.py b/dojo/tools/reversinglabs_spectraassure/parser.py new file mode 100644 index 00000000000..9abd198dbb7 --- /dev/null +++ b/dojo/tools/reversinglabs_spectraassure/parser.py @@ -0,0 +1,117 @@ +# noqa: RUF100 +import hashlib +import logging +from typing import Any + +from dojo.models import Finding +from dojo.tools.reversinglabs_spectraassure.rlJsonInfo import RlJsonInfo +from dojo.tools.reversinglabs_spectraassure.rlJsonInfo.cve_info_node import CveInfoNode + +logger = logging.getLogger(__name__) + +WHAT = "ReversingLabs Spectra Assure" + + +class ReversinglabsSpectraassureParser: + + # -------------------------------------------- + # This class MUST have an empty constructor or no constructor + + def _find_duplicate(self, key: str) -> Finding | None: + logger.debug("") + + if key in self._duplicates: + return self._duplicates + + return None + + def _make_hash( + self, + data: str, + ) -> str: + # Calculate SHA-256 hash + d = data.encode() + return hashlib.sha256(d).hexdigest() + + def _one_finding( + self, + *, + node: CveInfoNode, + test: Any, + ) -> Finding: + logger.debug("%s", node) + + key = self._make_hash(node.title + " " + node.component_file_path) + cve = node.cve + finding = Finding( + date=node.scan_date, + title=node.title, + description=node.title + " " + node.description + "\n", + cve=cve, + cvssv3_score=node.score, + severity=node.score_severity, + vuln_id_from_tool=node.vuln_id_from_tool, + unique_id_from_tool=node.unique_id_from_tool, # purl if we have one ? + file_path=node.component_file_path, + component_name=node.component_name, + component_version=node.component_version, + nb_occurences=1, + hash_code=key, # sha256 on title + references=None, # future urls + active=True, # this is the DefectDojo active field, nothing to do with node.active field + test=test, + static_finding=True, + dynamic_finding=False, + ) + finding.unsaved_vulnerability_ids = [cve] + finding.unsaved_tags = node.tags + finding.impact = node.impact + + return finding + + # -------------------------------------------- + # PUBLIC + def get_scan_types(self) -> list[str]: + return [WHAT] + + def get_label_for_scan_types(self, scan_type: str) -> str: + return scan_type + + def get_description_for_scan_types(self, scan_type: str) -> str: + if scan_type == WHAT: + return "Import the SpectraAssure report.rl.json file." + return f"Unknown Scan Type; {scan_type}" + + def get_findings( + self, + file: Any, + test: Any, + ) -> list[Finding]: + # ------------------------------------ + rji = RlJsonInfo(file_handle=file) + rji.get_cve_active_all() + + self._findings: list[Finding] = [] + self._duplicates: dict[str, Finding] = {} + + for cin in rji.get_results_list(): + finding = self._one_finding( + node=cin, + test=test, + ) + if finding is None: + continue + + key = finding.hash_code + if key not in self._duplicates: + self._findings.append(finding) + self._duplicates[key] = finding + continue + + dup = self._duplicates[key] # but that may be on a different component file, name, version + if dup: + dup.description += finding.description + dup.nb_occurences += 1 + + # ------------------------------------ + return self._findings diff --git a/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/__init__.py b/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/__init__.py new file mode 100644 index 00000000000..d52e796d99a --- /dev/null +++ b/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/__init__.py @@ -0,0 +1,575 @@ +import copy +import datetime +import gc +import json +import logging +import os +import sys +from typing import Any + +from .cve_info_node import CveInfoNode + +logger = logging.getLogger(__name__) + +""" +The info of the rl.json reports but cut up in usable parts +""" + + +class RlJsonInfo: + + SCAN_TOOL_NAME: str = "ReversingLabs SpectraAssure" + + info: dict[str, Any] + assessments: dict[str, Any] + components: dict[str, Any] + cryptography: dict[str, Any] + dependencies: dict[str, Any] + indicators: dict[str, Any] + licenses: dict[str, Any] + ml_models: dict[str, Any] + services: dict[str, Any] + secrets: dict[str, Any] + violations: dict[str, Any] + vulnerabilities: dict[str, Any] + _rest: dict[str, Any] + + _metadata: list[str] = [ + "assessments", + "components", + "cryptography", + "dependencies", + "indicators", + "licenses", + "ml_models", + "services", + "secrets", + "violations", + "vulnerabilities", + ] + + sMap: dict[int, str] = { + 1: "Info", + 2: "Low", + 3: "Medium", + 4: "High", + 5: "Critical", + } + + tags: dict[str, str] = { + "FIXABLE": "Fix Available", + "EXISTS": "Exploit Exists", + "MALWARE": "Exploited by Malware", + "MANDATE": "Patching Mandated", + "UNPROVEN": "CVE Discovered", + } + + # sort order, to align wit Spectra Assure Portal + # 1: Fix Available + # 2: Exploit exists + # 3: Exploited my malware + # 4: Patch mandated + + impact_sort_order: list[str] = [ + "Fix Available", + "Exploit Exists", + "Exploited by Malware", + "Patching Mandated", + "CVE Discovered", + ] + + # cve, comp_uuid, dep_uuid | None -> CveInfoNode + _results: dict[str, dict[str, dict[str | None, CveInfoNode]]] + + def __init__( + self, + file_handle: Any, + ) -> None: + self.file_name: str = file_handle.name + logger.debug("file: %s", self.file_name) + + self.data: dict[str, Any] = json.load(file_handle) + self._results = {} + + self.RL_JSON_WITH_CG_COLLECT: bool = False + if os.getenv("RL_JSON_WITH_CG_COLLECT"): + self.RL_JSON_WITH_CG_COLLECT = True + + self._get_info() + self._get_meta() + self._get_rest() + + if self.RL_JSON_WITH_CG_COLLECT is True: + gc.collect() + + def _get_info( + self, + ) -> None: + logger.debug("") + r = self.data.get("report", {}) + k = "info" + if k in r: + self.info = copy.deepcopy(r.get(k, {})) + del r[k] + + def _get_meta( + self, + ) -> None: + logger.debug("") + r = self.data.get("report", {}) + m = r.get("metadata", {}) + + for name in self._metadata: + if name in m: + setattr( + self, + name, + copy.deepcopy(m.get(name, {})), + ) + del m[name] + + if len(m) == 0: + del r["metadata"] + + if len(r) == 0: + del self.data["report"] + + def _get_rest( + self, + ) -> None: + logger.debug("") + + self._rest = copy.deepcopy(self.data) + self.data = {} + + def _find_sha256_in_components( + self, + sha256: str, + ) -> bool: + logger.debug("") + + for component in self.components.values(): + comp_sha256 = self._get_sha256(data=component) + if comp_sha256 == sha256: + return True + + return False + + def _add_to_results( + self, + cve: str, + comp_uuid: str, + dep_uuid: str | None, + cin: CveInfoNode | None, + ) -> None: + logger.debug("") + + if cin is None: + return + + rr = self._results + if cve not in rr: + rr[cve] = {} + + if comp_uuid not in rr[cve]: + rr[cve][comp_uuid] = {} + + if dep_uuid not in rr[cve][comp_uuid]: + rr[cve][comp_uuid][dep_uuid] = cin + + def _get_sha256( + self, + data: dict[str, Any], + ) -> str: + logger.debug("") + k = "sha256" + + h = data.get("hashes", []) + for item in h: + if item[0] == k: + return str(item[1]) + + logger.error("no '%s' found for this item %s", k, data) + + return "" + + def _verify_file_is_also_component( + self, + ) -> bool: + logger.debug("") + + rr: bool = False + + f_info: dict[str, Any] = self.info.get("file", {}) + file_sha256 = self._get_sha256(f_info) + + rr = self._find_sha256_in_components(file_sha256) + if rr is False: + logger.error("file cannot be found as component: %s", f_info) + + return rr + + def _score_to_severity( + self, + score: float, + ) -> str: + logger.debug("") + + if score >= 9: + return self.sMap[5] + + if score >= 7: + return self.sMap[4] + + if score >= 4: + return self.sMap[3] + + if score > 0: + return self.sMap[2] + + return self.sMap[1] + + def _use_path_or_name( + self, + *, + data: dict[str, Any], + purl: str, + name_first: bool = False, + prefer_path: bool = True, + ) -> str: + logger.debug("") + + path = data.get("path", "") + name = data.get("name", "") + + if name_first and len(name) > 0: + return str(name) + + if prefer_path and len(path) > 0: + return str(path) + + # if we have a valid purl + # prefer to derive the name from the purl + if purl and len(purl) > 0 and "@" in purl: + s = purl + if "/" in s: + ii = purl.index("/") + s = purl[ii + 1 :] + aa = s.split("@") + name = aa[0] + # version = aa[1] + return str(name) + + k = "" + + if name_first is False: + if path != "": + return str(path) + if name != "": + return str(name) + + return k + + if name != "": + return str(name) + + if path != "": + return str(path) + + return k + + def _get_tags_from_cve(self, this_cve: dict[str, Any]) -> list[str]: + tags: list[str] = [] + exploit = this_cve.get("exploit", []) + if len(exploit) == 0: + return tags + + for key in exploit: + tag = self.tags.get(key) + if tag is None: + logger.warning("missing tag for key: %s", key) + continue + + tags.append(tag) + + return tags + + def _make_impact_from_tags( + self, + tags: list[str], + impact: str | None, + ) -> str: + if impact is None: + impact = "" + + for tag in self.impact_sort_order: + if tag in tags: + impact += tag + "\n" + + return impact + + def _make_new_cin( + self, + cve: str, + comp_uuid: str, + dep_uuid: str | None, + active: Any, + ) -> CveInfoNode | None: + """Collect all info we can extract from the cve""" + logger.debug("") + + this_cve = self.vulnerabilities.get(cve) + if this_cve is None: + logger.error("missing cve info for: %s", cve) + return None + + cin = CveInfoNode() + cin.cve = cve + cin.comp_uuid = comp_uuid + cin.dep_uuid = dep_uuid + cin.active = bool(active) + f_info: dict[str, Any] = self.info.get("file", {}) + cin.original_file = str(f_info.get("name", "")) + cin.original_file_sha256 = self._get_sha256(f_info) + + cin.scan_date = datetime.datetime.fromisoformat(self._rest["timestamp"]).date() + cin.scan_tool = self.SCAN_TOOL_NAME + cin.scan_tool_version = self._rest.get("version", "no_scan_tool_version_specified") + cin.cvss_version = int(this_cve.get("cvss", {}).get("version", "0")) + score = float(this_cve.get("cvss", {}).get("baseScore", "0.0")) + cin.score = score + cin.score_severity = self._score_to_severity(score=score) + + # TODO: tags + cin.tags = self._get_tags_from_cve(this_cve) + cin.impact = self._make_impact_from_tags(cin.tags, cin.impact) + + return cin + + def _get_component_purl( + self, + component: dict[str, Any], + ) -> str: + return str(component.get("identity", {}).get("purl", "")) + + def _get_dependency_purl( + self, + dependency: dict[str, Any], + ) -> str: + return str(dependency.get("purl", "")) + + def _do_one_cve_component_dependency( + self, + comp_uuid: str, + component: dict[str, Any], + dep_uuid: str, + dependency: dict[str, Any], + cve: str, + active: Any, + ) -> CveInfoNode | None: + logger.debug("comp: %s; dep: %s; cve: %s", comp_uuid, dep_uuid, cve) + + cin = self._make_new_cin( + cve=cve, + active=active, + comp_uuid=comp_uuid, + dep_uuid=dep_uuid, + ) + if cin is None: + return None + + ident = component.get("identity", {}) + c_purl = self._get_component_purl(component=component) + + cin.component_file_path = self._use_path_or_name(data=component, purl=c_purl) + cin.component_file_sha256 = self._get_sha256(data=component) + cin.component_file_purl = c_purl + cin.component_file_version = ident.get("version", "") + cin.component_file_name = component.get("name", "") + cin.component_type = "dependency" + cin.component_name = dependency.get("product", f"no_{cin.component_type}_product_provided") + cin.component_version = dependency.get("version", f"no_{cin.component_type}_version_provided") + d_purl = self._get_dependency_purl(dependency=dependency) + cin.component_purl = d_purl + cin.unique_id_from_tool = "dependency: " + dep_uuid + cin.vuln_id_from_tool = cve + cin.make_title_cin(cve=cve) + cin.make_description_cin(cve=cve, purl=d_purl) + + logger.debug("%s", cin) + + return cin + + def _do_one_cve_component_without_dependencies( + self, + comp_uuid: str, + component: dict[str, Any], + cve: str, + active: Any, + ) -> CveInfoNode | None: + logger.debug("comp: %s; cve: %s", comp_uuid, cve) + + cin = self._make_new_cin(cve=cve, active=active, comp_uuid=comp_uuid, dep_uuid=None) + if cin is None: + return None + + ident = component.get("identity", {}) + + c_purl = self._get_component_purl(component=component) + cin.component_file_path = self._use_path_or_name(data=component, purl=c_purl) + cin.component_file_sha256 = self._get_sha256(data=component) + cin.component_file_purl = c_purl + cin.component_file_version = ident.get("version", "") + cin.component_file_name = component.get("name", "") + cin.component_type = "component" + cin.component_name = self._use_path_or_name(data=component, purl=c_purl, name_first=True) + cin.component_version = ident.get("version", "") + cin.component_purl = c_purl + cin.unique_id_from_tool = "component: " + comp_uuid + cin.vuln_id_from_tool = cve + cin.active = bool(active) + + cin.make_title_cin(cve=cve) + cin.make_description_cin(cve=cve, purl=c_purl) + + logger.debug("%s", cin) + + return cin + + def _get_one_active_cve_component_dependency( + self, + comp_uuid: str, + component: dict[str, Any], + dep_uuid: str, + ) -> None: + logger.debug("") + + dependency = self.dependencies.get(dep_uuid) + if dependency is None: + logger.error("missing dependency: %s", dep_uuid) + return + + # ------------------------------- + v = dependency.get("vulnerabilities") + if v is None: + logger.info("no vulnerabilities for dependency: %s", dep_uuid) + return + + # ------------------------------- + for cve in v.get("active"): + cin = self._do_one_cve_component_dependency( + comp_uuid=comp_uuid, + component=component, + dep_uuid=dep_uuid, + dependency=dependency, + cve=cve, + active=True, + ) + self._add_to_results( + cve=cve, + comp_uuid=comp_uuid, + dep_uuid=dep_uuid, + cin=cin, + ) + + def _get_all_active_cve_on_components_without_dependencies( + self, + ) -> None: + logger.debug("") + + for comp_uuid, component in self.components.items(): + v = component.get("identity", {}).get("vulnerabilities", None) + if v is None: + logger.info("no vulnerabilities for component: %s", comp_uuid) + continue + + for cve in v.get("active", []): + cin = self._do_one_cve_component_without_dependencies( + comp_uuid=comp_uuid, + component=component, + cve=cve, + active=True, + ) + self._add_to_results( + cve=cve, + comp_uuid=comp_uuid, + dep_uuid=None, + cin=cin, + ) + + def _get_all_active_cve_on_components_with_dependencies( + self, + ) -> None: + logger.debug("") + + for comp_uuid, component in self.components.items(): + d = component.get("identity", {}).get("dependencies", None) + if d is None: + logger.info("no dependencies for component: %s", comp_uuid) + continue + + for dep_uuid in d: + # returns one dep_uuid, multiple cve (if any cve) + self._get_one_active_cve_component_dependency( + comp_uuid=comp_uuid, + component=component, + dep_uuid=dep_uuid, + ) + + # ==== PUBLIC ====== + def get_results_list(self) -> list[CveInfoNode]: + rr: list[CveInfoNode] = [] + + for compo in self._results.values(): + for component in compo.values(): + for cin in component.values(): + rr.append(cin) + return rr + + def print_results_to_file_or_stdout( + self, + file_handle: Any = sys.stdout, + ) -> None: + def default(o: Any) -> Any: + if type(o) is CveInfoNode: + return o.__dict__ + + if type(o) is datetime.date: + return o.isoformat() # YYYY-MM-DD + + if type(o) is datetime.datetime: + return o.isoformat() # YYYY-MM-DD T hh:mm:ss + + msg: str = f"unsupported type: {type(o)}" + raise Exception(msg) + + rr: list[Any] = self.get_results_list() + + print( + json.dumps( + rr, + indent=4, + sort_keys=True, + default=default, + ), + file=file_handle, + ) + + def get_cve_active_all(self) -> None: + """ + Find get all cve's and add componenet path, sha and version like in `report.cve.csv` + + 0: + verify that the info -> file sha256 comes back as a component + + A: + walk over components with active vulnerabilities + + B: + walk over components -> dependencies with active vulnerabilities + """ + logger.debug("") + + self.file_is_component = self._verify_file_is_also_component() + self._get_all_active_cve_on_components_without_dependencies() + self._get_all_active_cve_on_components_with_dependencies() diff --git a/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/cve_info_node.py b/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/cve_info_node.py new file mode 100644 index 00000000000..d15ebf47eae --- /dev/null +++ b/dojo/tools/reversinglabs_spectraassure/rlJsonInfo/cve_info_node.py @@ -0,0 +1,127 @@ +import datetime +import logging + +logger = logging.getLogger(__name__) + +""" +Here we collect info that can be easily mapped to a DefectDojo Finding +""" + + +class CveInfoNode: + + cve: str + comp_uuid: str + dep_uuid: str | None + scan_date: datetime.date + scan_tool: str + scan_tool_version: str + original_file: str + original_file_sha256: str + + title: str + description: str + cvss_version: int + score: float + score_severity: str # score mapped to severity + # + # this is always the component + component_file_path: str # this is always the component + component_file_sha256: str + component_file_purl: str + component_file_name: str + component_file_version: str + + # this can be the component or the dependency name -> see component_type + component_type: str # component or dependency + component_name: str + component_version: str + component_purl: str + str | None + unique_id_from_tool: str | None + vuln_id_from_tool: str | None + active: bool + tags: list[str] + impact: str | None + + def __init__(self) -> None: + self.tags = [] + self.impact = None + + def __str__(self) -> str: + return f"{self.__dict__}" + + def make_title_cin( + self, + cve: str, + ) -> str: + logger.debug("") + with_sha256: bool = False + + purl = self.component_purl + if self.component_type == "component": + purl = self.component_file_purl + + if purl != "": + self.title = " ".join( + [ + f"{cve}", + f"on {self.component_type}", + f"purl: {purl}", + ], + ) + else: + self.title = " ".join( + [ + f"{cve}", + f"on {self.component_type}", + f"name: {self.component_name}", + f"version: {self.component_version}", + ], + ) + if self.component_type == "component": + if with_sha256: + self.title += f" (sha256: {self.component_file_sha256})" + + return self.title + + def make_description_cin( + self, + cve: str, + purl: str, + ) -> str: + def bold(s: str) -> str: + return f"**{s}**" + + def italic(s: str) -> str: + return f"*{s}*" + + def item(s: str) -> str: + return f"* {s}" + + if self.component_type == "component": + + self.description = " ".join( + [ + f"On {self.component_type}", + f"purl: {purl}", + f"version: {self.component_version}", + f"path: {self.component_file_path}", + f"(sha256: {self.component_file_sha256})", + ], + ) + return self.description + + purl = self.component_file_purl + if purl == "": + purl = self.component_file_name + "@" + self.component_file_version + + self.description = " ".join( + [ + "On component", + f"purl: {purl}", + f"path: {self.component_file_path}", + f"(sha256: {self.component_file_sha256})", + ], + ) + return self.description diff --git a/unittests/scans/reversinglabs_spectraassure/FD13-FullUSB.zip-report.rl.json b/unittests/scans/reversinglabs_spectraassure/FD13-FullUSB.zip-report.rl.json new file mode 100644 index 00000000000..9a05e248b64 --- /dev/null +++ b/unittests/scans/reversinglabs_spectraassure/FD13-FullUSB.zip-report.rl.json @@ -0,0 +1,74211 @@ +{ + "catalogue": 2, + "duration": "00:01:42.118", + "report": { + "info": { + "detections": { + "Goodware": { + "Format": 65, + "No Threats Detected": 49060 + }, + "Unknown": { + "No Threats Detected": 26332 + } + }, + "disabled": [ + "SQ14120", + "SQ14126", + "SQ14129", + "SQ14130", + "SQ14131", + "SQ14132", + "SQ14133", + "SQ14136", + "SQ18114", + "SQ20105", + "SQ30101" + ], + "file": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "ZIP", + "hashes": [ + [ + "md5", + "873f5bb50f5007b7cd08c3e0b37cfb34" + ], + [ + "sha1", + "9682cba3dbedd3a745dfbb2802e72c940b53c2cf" + ], + [ + "sha256", + "73eefe93ec0a50ac82e5367abcb0d256deccc0bb79eb6719c918d493b359edb2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FD13-FullUSB.zip", + "path": "", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": false, + "size": 373667381, + "subtype": "Archive", + "type": "Binary", + "version": "Generic" + }, + "inhibitors": { + "customized": false, + "exclusions": {}, + "next_level": 5, + "scan_level": 5 + }, + "properties": [], + "statistics": { + "bad_checksum": 2, + "bad_format": 11, + "bad_password": 1, + "components": 866, + "extracted": 75457, + "licenses": { + "copyleft": 0, + "freemium": 0, + "freeware": 0, + "non_commercial": 0, + "permissive": 1, + "proprietary": 1, + "public_domain": 0, + "shareware": 0, + "undeclared": 0, + "weak_copyleft": 1 + }, + "quality": { + "issues": { + "fail": 5, + "high": 16, + "low": 6, + "medium": 21, + "pass": 38, + "total": 43, + "warning": 0 + }, + "metrics": { + "fail": 15, + "high": 175, + "low": 222, + "medium": 357, + "pass": 739, + "total": 754, + "warning": 0 + }, + "priority": 0, + "status": "fail" + }, + "unsupported": 0, + "vulnerabilities": { + "critical": 0, + "exploit": 0, + "fixable": 0, + "high": 0, + "low": 0, + "malware": 0, + "mandate": 0, + "medium": 0, + "named": 0, + "total": 0, + "triaged": 0 + } + }, + "unpacking": { + "errors": { + "path": { + "FD13FULL.img/packages\\base\\fdisk.zip/SOURCE/FDISK/SOURCES.ZIP/FDISK/SMARTMBR": [ + "Disk image is broken: Seek operation failed", + "File is broken in partition [1]: bad offset.", + "File is broken in partition [2]: bad offset." + ], + "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/HTTP2.md": [ + "can't determine http type" + ], + "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test565/1": [ + "can't determine http type" + ], + "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test579/1": [ + "can't determine http type" + ], + "FD13FULL.img/packages\\util\\unrtf.zip/SOURCE/UNRTF/SOURCES.ZIP/tests/chars.rtf": [ + "RTF file is not formed properly!" + ] + }, + "uuid": { + "8ae54b3d-5688-5b43-b309-0556c26d5c45": [ + "bad offset" + ], + "d52e042a-4aaa-589c-9cbb-a8dd537436e7": [ + "bad xxe sequence: iostream error" + ], + "d6a680da-50d9-502a-8d12-278efdf3b622": [ + "bad xxe sequence: iostream error" + ], + "eacbf275-729a-5469-b142-1f3bbf453ba5": [ + "bad xxe sequence: iostream error" + ], + "ecc51086-5dbe-5615-8929-e27d302b3d43": [ + "bad offset" + ], + "fb64ddb1-d34d-5145-99b6-463cce8375a1": [ + "bad xxe sequence: iostream error" + ] + } + }, + "warnings": {} + }, + "warnings": [] + }, + "metadata": { + "assessments": { + "hardening": { + "count": 8, + "evaluations": [ + { + "count": 4, + "label": "mitigation incompatible packers", + "priority": 0, + "status": "fail", + "violations": [ + "SQ14101" + ] + }, + { + "count": 111, + "label": "baseline mitigations missing", + "priority": 1, + "status": "warning", + "violations": [ + "SQ14102", + "SQ14105", + "SQ18101", + "SQ18104", + "SQ18111" + ] + }, + { + "count": 50, + "label": "execution hijacking concerns", + "priority": 1, + "status": "warning", + "violations": [ + "SQ14156", + "SQ14158", + "SQ18112" + ] + }, + { + "count": 3, + "label": "ineffective mitigations detected", + "priority": 1, + "status": "warning", + "violations": [ + "SQ18102" + ] + }, + { + "count": 16, + "label": "misconfigured toolchains detected", + "priority": 2, + "status": "warning", + "violations": [ + "SQ18105", + "SQ18106", + "SQ18107" + ] + }, + { + "count": 210, + "label": "modern mitigations missing", + "priority": 3, + "status": "warning", + "violations": [ + "SQ14122" + ] + }, + { + "count": 17, + "label": "outdated toolchains detected", + "priority": 1, + "status": "warning", + "violations": [ + "SQ14113", + "SQ14143" + ] + }, + { + "count": 45, + "label": "reduced effectiveness mitigations", + "priority": 3, + "status": "warning", + "violations": [ + "SQ14108" + ] + } + ], + "final": false, + "label": "unsafe code linking practices", + "priority": 0, + "status": "fail", + "violations": [ + "SQ14142", + "SQ14147" + ] + }, + "licenses": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No license compliance issues", + "priority": null, + "status": "pass", + "violations": [] + }, + "malware": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No evidence of malware inclusion", + "priority": null, + "status": "pass", + "violations": [] + }, + "secrets": { + "count": 1, + "evaluations": [ + { + "count": 6, + "label": "debugging symbols found", + "priority": 2, + "status": "warning", + "violations": [ + "SQ34202", + "SQ34203", + "SQ34204" + ] + } + ], + "final": false, + "label": "source control artifacts found", + "priority": 0, + "status": "fail", + "violations": [ + "SQ34201" + ] + }, + "tampering": { + "count": 2, + "evaluations": [], + "final": true, + "label": "checksum validation errors", + "priority": 0, + "status": "fail", + "violations": [ + "SQ25104" + ] + }, + "vulnerabilities": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No known vulnerabilities detected", + "priority": null, + "status": "pass", + "violations": [] + } + }, + "components": { + "00d6c74b-5bce-5054-a2ea-b564b180762f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e940dd27802df09c5c4ded65e79c7409" + ], + [ + "sha1", + "571a305eca33a90f3523f2b2ae33740a866cefec" + ], + [ + "sha256", + "ce933a6d9a5f310d4106b32e51bd176d22bb0b00d3b31231aabe2497c21ad25b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gpxelinux.0", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/gpxelinux.0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 89418, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "015f33a7-d5af-57fa-96bd-dd8ee538891f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "05ea7a0cfbf4904e7f68e012255b6696" + ], + [ + "sha1", + "861b883f5c35b14ecdaed5c7047f4c1d10aff3ad" + ], + [ + "sha256", + "d0319229d8c8a4f08f3963867087d04f82d827d53c3f7e8ff1a9d2d46c50caf5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0037r0.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0037r0.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 41525, + "subtype": "None", + "type": "Text", + "version": "" + }, + "023fe8d8-c8c3-573f-9440-e1c4103fa6cc": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "d384888e5fb605b0df10452a19fb5def" + ], + [ + "sha1", + "fff0f0df8a82edd151e645dbfacdcad5adc9f869" + ], + [ + "sha256", + "da9cdf2a390ab439ac38e3dcc2fa26257f9f245dae982c745c30003d07ac4d40" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_CRLFILE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_CRLFILE.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3175, + "subtype": "None", + "type": "Text", + "version": "" + }, + "024440bd-ea73-519c-91e2-6099a1011c29": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7431d79bf39ec18b2fad570758216aac" + ], + [ + "sha1", + "e8428544c2447886735979d81aaafe1ff3cbf647" + ], + [ + "sha256", + "e58ea1f3a521bf05b8df6af549b7c405c6604ffc54ba06081e27ba44864a7c09" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CVPACK.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/CVPACK.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 267098, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "030895c0-c267-5f50-a24d-b1dd1f732568": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3cc919fff2921a8ea3e475362bf74c1f" + ], + [ + "sha1", + "db096b8432ff11ca7ddf0d4d9edb11ee45b09050" + ], + [ + "sha256", + "f593f99d4f0045eed537e5ebd0604202de2b84ddf739bbfe23979565f10b3247" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Test-ftp.px", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/tests/Test-ftp.px", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 894, + "subtype": "Perl", + "type": "Text", + "version": "" + }, + "0323632a-1b50-5e23-a86d-520ff8c006f8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "6078be3d3db8d65a0243a3247475d629" + ], + [ + "sha1", + "b66018e342381a3bb494096407838e0709156441" + ], + [ + "sha256", + "de152ff4512c488d5860ad9f2e2a9e8889e92511cc6cee7b7511a3c327d5238c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-sv.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-sv.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1679, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "0352f508-4ad1-544f-9886-f5e5a082d220": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fca26218c5c3fca12600b8186c15f664" + ], + [ + "sha1", + "1416a4162bfec6d12df24ac8dafa21eb35c45b1e" + ], + [ + "sha256", + "b7d315f5e2fe73b11f28eff8fa48d264a64bcbddd4b800748f4806bef2f5f309" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/src/ChangeLog", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 329394, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0383d62d-4265-5624-a4d9-b53817839f93": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "89e1e1107d7d28025a9b771aaae650f7" + ], + [ + "sha1", + "c0ed4a2892fbcc6a7330f471cfbc855b5ed83fad" + ], + [ + "sha256", + "4970c5c7ee993a7fc2df33edd77e986c2531f22cd8994cdf95cf0dfd48a8e8be" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "readasf.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/readasf.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5872, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "0394bac0-72f6-5ae5-91c3-800bef670ee3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e1527a80780d28bb0c36f3b3b147b3ec" + ], + [ + "sha1", + "bb3de032ab41334d28788ce1a6169d6021866638" + ], + [ + "sha256", + "a953c6d6c82d44c07d032f5f40e112e96ee0b86c71a049b491719c9eec3e646d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/it/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5606, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0434eac0-5af6-5d9e-8104-87a8deecbd7a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e396717b525ff9d2969a98098c86e665" + ], + [ + "sha1", + "f9d596e67326485ad630d1ad91d1815f709c6732" + ], + [ + "sha256", + "f65ab723740bfe8cd68690716b92561a927e3758b5b5cb2d1b3f2a924c8b64ae" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpwss.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpwss.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6413, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "05134bd9-8f15-5ea9-a5f8-8f4cb32c173c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "18294cd6449ef684afd59efad009e236" + ], + [ + "sha1", + "64d0005fffbd28a9adb33eee5e1d2f7daed5467a" + ], + [ + "sha256", + "0cd8c61f7e3a269e933e128258230a9fd9c94a7223e89792896f958fc9b1bc77" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "history.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/history.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27192, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "052a18c3-ca4b-5981-9e62-e204ecb7a236": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "42a61e77fa65f8c68b002efd6321f5ff" + ], + [ + "sha1", + "ccf0c7601f976da7341401937b570f8533120ce1" + ], + [ + "sha256", + "c40e5fa88bcba3cd47d8efaa86d627c5edd48537bfb55d167dd05e6cf8bef799" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BPATCH.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/BPATCH.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 74091, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "0572b0ca-3484-5efc-ad2f-16ee9e024150": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a1e51918a7473c7b43064f4c70949001" + ], + [ + "sha1", + "279169beb32ac517bfb6cb83a50af52b34b5759a" + ], + [ + "sha256", + "3f3f862397b2f636b063e591064205d011388d5657ce1ee0d0dc427ee060c783" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WIPFC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WIPFC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1042446, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "06fdd564-c35d-56cb-aca1-53b832021e15": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bcefc395125575cbf39a3fbae8710d44" + ], + [ + "sha1", + "caae07e95203f832da8b9216117f18733cbc3afe" + ], + [ + "sha256", + "c09ba3b248aafba5eecbebed63e37c437be7489eb6aa77fe60f94029452d5c67" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cernrules.txt", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/samples/cernrules.txt", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 34563, + "subtype": "None", + "type": "Text", + "version": "" + }, + "07a18202-c534-554e-a72b-a372c46ca7c7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "LNK", + "hashes": [ + [ + "md5", + "2696f40079b93cd90290cb1715eecba0" + ], + [ + "sha1", + "7aafa82c8ee4a4ad57455d8c7ce8e91002879983" + ], + [ + "sha256", + "c604cfeb473e9da752ae96c5e33bc3e735ee4a7fed3d19b15d3d53b37059614a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MinEd-AD.lnk", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/setup_install/win/MinEd-AD.lnk", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2102, + "subtype": "None", + "type": "Binary", + "version": "Generic" + }, + "07c85c94-585f-5bd2-a016-4f5ae9fc5415": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "71880539ab40d28c63245a2b115f5b0c" + ], + [ + "sha1", + "a359c5fd6afaac098b35e50dcce36a07f42dc311" + ], + [ + "sha256", + "322adb7305ca28134f5ca3908306c45fa24e48f6bfbfbe4100881c73cb512535" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ZIPNOTE.EXE", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/BIN/ZIPNOTE.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 51272, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "080d7aed-8b1a-5ee8-80a7-c96bdd348732": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "00fcc8dab6401801209a554d353deedb" + ], + [ + "sha1", + "821cc29cd1d6b6f7edca634380adb3601428debc" + ], + [ + "sha256", + "6fd3c1a5b53c4f7e5c2904c95c5f4bc20365664f94a60ff5e74b1d13c311add9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadptm.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadptm.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9791, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "0832c458-4817-585d-8661-58a48673fcf4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2a27c410a65912c3b467968be01c6eb9" + ], + [ + "sha1", + "69acb659d67f0cd693006bbfe03332d4bfc5c979" + ], + [ + "sha256", + "9d6ae9ae09c21f8ca3c4e441cf218614b20d3ee2a461c3cdc1a9a54540b8a7c8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ZIPSPLIT.EXE", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/BIN/ZIPSPLIT.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 52373, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "08341c32-ab30-567d-81c2-fe7405351ec2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "cf3e7453c0ba79f2048ac97823877c97" + ], + [ + "sha1", + "59ae9fcce280a20ec49c4f32ae0b688fcce2820f" + ], + [ + "sha256", + "5d4e736912c55cd4983b14f98db4faa7ef8cc2a8481537bfe0d96ec770e3d654" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/fr/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5622, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "08a48153-9a76-5f6c-bffc-7b810c50c8b7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8f70808ec28a60480a1aad891cd05268" + ], + [ + "sha1", + "cea7348bad41511c328545a388e5d3d04008ad91" + ], + [ + "sha256", + "4497620ddde438dc510b4afee6c5563b005907fdca1a8c4ebd26b5aa4a465d35" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devices.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/es/devices.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 149729, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "08d22ebd-ff67-54f5-8062-7f87da54d841": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1c46976178e4359bdedb6a172e7345f5" + ], + [ + "sha1", + "9c23a1ac9e8879365acbece716fe3005abd67142" + ], + [ + "sha256", + "1c0acabf881e01cc1ef4225a571647d8f1d8c70c9867ed4b07a9bfc4b21f1386" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLCERT_BLOB.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT_BLOB.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3064, + "subtype": "None", + "type": "Text", + "version": "" + }, + "09189597-9f2f-50b0-bc35-0dc81a4f5d46": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "10539e5f79263db83847b03a88fbdc9a" + ], + [ + "sha1", + "db8a42a865f6ddb7edd5a4b663b73bc937dbe297" + ], + [ + "sha256", + "9c55cf6c5d18c66a240f89d6fb0f9c799b930bde4e2cb243744a68372b7190cc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "6561b124-ade5-488c-bcb5-2207a1115d3c", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "PLBR19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/PLBR19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 128512, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "091b7996-9a05-58dc-b858-871fd3b7665b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bacf0f65bda7646396d2a87882eee6f5" + ], + [ + "sha1", + "e5b6eb73ad0fd42225b22ad4b75084b978cfc237" + ], + [ + "sha256", + "e884d7a18dde1b74aff10ecac73e3032d134719dda795a5bc3ee0e3e46acc912" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "QX4232.SCR", + "path": "FD13FULL.img/packages\\net\\mskermit.zip/NET/MSKERMIT/MODEMS/QX4232.SCR", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8039, + "subtype": "None", + "type": "Text", + "version": "" + }, + "098428cd-4ee0-5758-8db3-a3376e4cff92": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "377c1f100e14320a36259bb822b69a97" + ], + [ + "sha1", + "7658533c7f9520531ba280d71c81ed169807cad2" + ], + [ + "sha256", + "d410caa88e0c97424ca8fcefd412ce2a286000850feb96c91b383da067445cf7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/cs/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 93724, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "09971ebf-170c-5633-8dfb-29136f243821": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "906eef065fff35f657dbee60ecb43151" + ], + [ + "sha1", + "0b3b4601d96c4a11e18ad4ed4ce488b571f1c1be" + ], + [ + "sha256", + "b229fea56babcb86753d865a84b885af4843ceb0396bfdb3c876776387d2364b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "pl.txt", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/GUI/Lang/pl.txt", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 12268, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0a7594ef-bdab-5eb1-b33e-de39221cc01c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c9dc7391b8e0489ee9ee2a1b9c6cac11" + ], + [ + "sha1", + "e87daee4816ed0c3b3563b7573255109f03c2945" + ], + [ + "sha256", + "2ad6bf7ef8987ae2c676949ae70cfe1b5e3d3662dc8a4f63b06b0e5c23c8c56f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "POSTPROC.C", + "path": "FD13FULL.img/packages\\archiver\\arj.zip/SOURCE/ARJ/SOURCES.ZIP/POSTPROC.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7516, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0ae735e6-999d-5c28-90fa-08eeba5f1c17": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "955f1853052a1d46340813854d109ee9" + ], + [ + "sha1", + "267d8cc8a5e53b5d8af197c2e1fe7f51c33cd975" + ], + [ + "sha256", + "8d5ed6b10f05e55f9cd40fc541453364f4c65dcb6f615cfbd4fa32547c5b91ea" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0675.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0675.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9017, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0aedb3d1-789a-5e48-813f-0155e18b313d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c6aa938bc571c7e318163a752203e412" + ], + [ + "sha1", + "a3fd0beff72eaa426f5b073ec2c5ae1b24a21d1a" + ], + [ + "sha256", + "e5685626572746689fd4834b53778cc326d5b24b48c04a4987b45eb561247509" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FIZ.EXE", + "path": "FD13FULL.img/packages\\archiver\\zoo.zip/BIN/FIZ.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 28637, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "0b24bd53-d8ac-5709-a5bf-57ebdaa444bf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "58141500248238ea348902b6ed0ec244" + ], + [ + "sha1", + "f40ea8c251ccb97304a27490784cce497424459e" + ], + [ + "sha256", + "395a11660d997493592669346bca5ef5a5891a20eb8ee5bc063a88c28ce440b4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "stunnel.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/stunnel.pem", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8988, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "0b4e4c20-c391-5b8d-9813-807156e4eded": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f80de645fecaad16f6c57f772cbbd154" + ], + [ + "sha1", + "d4140235abc2b48f05b2e932434392edba8373f3" + ], + [ + "sha256", + "4d1c0be6d5f9fbe6c4913c48474639e7edec4c388eff1304bb66741c34e7f855" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "libcurl-tutorial.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/libcurl-tutorial.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 62164, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0b823e2a-e832-559a-b3b9-e2ff26e82d55": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "ba4eeeb31b16d5fa548f6f547b203963" + ], + [ + "sha1", + "703a4a1e0cd3180f5287971e5fec5ed5a7daa5a9" + ], + [ + "sha256", + "01abf95ab15def56ed6f4ec2865986548e4764f0b737a961c0932ab3b22a91f8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "demux_pva.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpdemux/demux_pva.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14448, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0b8af797-8d51-5a06-8323-4b5baaf5f599": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a743d0d99c248b72e317a000ccd03e65" + ], + [ + "sha1", + "00560826ebf5293333a4a1707a5e57e9f8073e5d" + ], + [ + "sha256", + "8136f104f1a8818e13935f5e20f0283a437df5f6f6b63a18f257b2c867f0347a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "syslinux", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/linux/syslinux", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 51800, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "0bd5f4cb-2fef-54c3-ab4a-d8489b3473d3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c22d0f24087863de9a8c53090dab041c" + ], + [ + "sha1", + "90af312749e27750b193bd9545f507d867f39aa5" + ], + [ + "sha256", + "f8279105fd0f6f9aa5a88ebc3dad5e4d40502127f8b558bf3062a6ae5367af19" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ansiesc.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/include/gpxe/ansiesc.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3115, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0c2729df-7268-5050-9072-5f9ada08143a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e0852441db14faccb4918e8a7206f991" + ], + [ + "sha1", + "302c7686d8f2d7ec90519c9462398e8a886c26b4" + ], + [ + "sha256", + "9fe2515e01575c2176459cef4b6f59f27a8e56d4b06dda9b9fbfad898c3266a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WGET.INF", + "path": "FD13FULL.img/packages\\net\\wget.zip/DOC/WGET/WGET.INF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 186763, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0c28c316-2489-5992-9a06-df7d8f0cb03d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "07161a97c8beaf9733fe391bad2c454a" + ], + [ + "sha1", + "89899fe78ee66d420fed612fd83fcdb60cc49313" + ], + [ + "sha256", + "8de63917306256ac7f1fb501eb2fc4625addf9bc8f4831dc146f95bda2f62c13" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "prism2.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/prism2.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28131, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0c47a7c2-da57-5765-a5b8-cc2340a7374f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e87adb6f87024ca090f4739dca917bd2" + ], + [ + "sha1", + "87107153ee52f09b118b1053713756cf8668dbcf" + ], + [ + "sha256", + "6a3c33765390799357e226e08406d6d9cab6ba3da25d495e2e7e12c7ebed11c7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "unit1621.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/unit/unit1621.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2554, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0c490ebc-9231-565e-80da-418ea4a51514": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a743d0d99c248b72e317a000ccd03e65" + ], + [ + "sha1", + "00560826ebf5293333a4a1707a5e57e9f8073e5d" + ], + [ + "sha256", + "8136f104f1a8818e13935f5e20f0283a437df5f6f6b63a18f257b2c867f0347a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "syslinux-nomtools", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/linux/syslinux-nomtools", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 51800, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "0c4cbf89-a2b9-5b49-ae77-48cda5038615": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8ba71d665ee38c74ea5114ee014723f7" + ], + [ + "sha1", + "3b46dc436533a43c53094a75b3b2b638bce9d854" + ], + [ + "sha256", + "5d2982e4c119aba87fb9ab6cb0ccb48c21a625c3a83342c2fd0537c255781d4b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "win-386.announce", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/win-386.announce", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1916, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0c85aaf7-fab3-554b-8ec8-0419283be35b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "247381b7de73f4aefe994a60f0ebf002" + ], + [ + "sha1", + "edac82568e9d60d3340daeed0b6dbfd678728e0c" + ], + [ + "sha256", + "b2e8e894566439b96897bb32124ace1410ae1f7072479c64ba60e78d35f484b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/cs/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16254, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0c9bda2a-c3dc-5c5e-a0a1-e90e65f22e0e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "e92c35165dc24dd62111a7ac09de869d" + ], + [ + "sha1", + "14d968fc351f59acc5194b30ba2d136a473174f4" + ], + [ + "sha256", + "abc86a0c45775b2866f7bf98b96c61a44cff6859e7b60f949f8bb5f00626cad9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_57_content", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/page_57_content", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 1006, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0caa50a2-4855-5346-92fa-a9f01cfce62e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "6a831f2fcbcae6a10358d1af67b06f93" + ], + [ + "sha1", + "14de5cb57c225c981ce8d6089dba4a37c72ae40c" + ], + [ + "sha256", + "f3a9902dd8b54e9d427f48de8c6ce8f4d954d4d4a3be2cf4331e52f91d709531" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vcd.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/es/vcd.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6644, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0cbb6847-701d-51c7-b952-c305ee815a1a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4edfc66be5da3df39c25a223b756c435" + ], + [ + "sha1", + "fd3196f3f3f35fa223f35857641e96002d239f07" + ], + [ + "sha256", + "23e4e0a0d4e37475f647bdfdae3a3250b7feff6cca88f70738637adbda612e1a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WBRG.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WBRG.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 172194, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "0cd80854-e094-5344-a386-8612730a2d8b": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f658eb8fa48f283e847ce7f6e2d0bdca" + ], + [ + "sha1", + "d259aa5520c40655ea1bc78899ee99c184a31d32" + ], + [ + "sha256", + "f6b6f873f47fb73341ad9264964f7418ea57eb7f88e0741e1ef00847aba8cd40" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mencoder.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/es/mencoder.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 52583, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "0ce19945-b0fa-5319-a599-d5924bb006cc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "ea9ede180acd50e83f2598999551ac03" + ], + [ + "sha1", + "111b9cb8c8a2268f916621fdfab4d2512c915a68" + ], + [ + "sha256", + "a41c2f6ba2a4c0cb5d358b3077628198c4914249e30084c2d8a8000e6d7665e9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "novell.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/novell.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2681, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0cfd3b17-2192-51eb-8a3e-09e5b352b68c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "dfd8badbe3c737d8fc04c7c017f267da" + ], + [ + "sha1", + "facd8a3f49c6493e42925f4014389b507cf4ea66" + ], + [ + "sha256", + "6618d22f0431ceab5dc481eec8a30e5f1662002f1f52d1350803a67b26f1d55c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3com.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/3com.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2326, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0ddb3281-b7fe-5f79-ac69-118c51326b81": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5437942b769ad92197012f578e1af07b" + ], + [ + "sha1", + "4cd672e4278bfbbd74a5b9742d33933f60452c95" + ], + [ + "sha256", + "5ff3b7d5121a1cded37cc0f677ffbf03fbf75cd1eec01ee82e256c7e1c210bba" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLMOPT_PIPELINING_SITE_BL.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLMOPT_PIPELINING_SITE_BL.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2191, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0e31a92f-58ab-5d14-a75d-a8f1db188b55": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8865a93f5a95636602ddb18f578d5982" + ], + [ + "sha1", + "bb516d6c6cfd387daecc53d9e84a69d47a71c7ea" + ], + [ + "sha256", + "bcebabe5013b35396b97c2c327ca24aee5ec6429742a2c87bbcf47857880eca9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_TLSAUTH_PASSWORD.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_PASSWORD.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2569, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0e3bd64e-1b9b-5fe0-93fa-128bcc32126e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "53339b661b3bebcef662ccedefff304b" + ], + [ + "sha1", + "5665f255b2979ce0acf752a439e9ba15e5b6545e" + ], + [ + "sha256", + "595502c3b286774d40d0abec8952c03ffb07ae94b4786ca4cb54edbc40eb862b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/en/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15882, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "0e71103f-d0bd-5baa-9ba3-e89ec3fb0617": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ac993e3f523c653cf9c8ead7b7697b6a" + ], + [ + "sha1", + "14eb43e027d61c0dd6f432c50bbcad68a1a2ed0f" + ], + [ + "sha256", + "b57f27134056b025877298951a5823ff1062fa468001979257d9039dc3f30032" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ADVAPI32.LIB", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/LIB386/NT/ADVAPI32.LIB", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 95232, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "0f335c17-0bb2-5ed2-9831-28ecde84a65c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a3313e45ec284009f9a14423d427b741" + ], + [ + "sha1", + "9553d82c2bae30a099fc2ea4d8cfc93079312dbf" + ], + [ + "sha256", + "f0d1e6f55e5f9cf5670d097b727afe56db1c34b5df165c47bb592befb6aa9a16" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test84", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test84", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 847, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0f51ea84-c372-540c-8ae7-cb87129a4030": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "ZIP", + "hashes": [ + [ + "md5", + "873f5bb50f5007b7cd08c3e0b37cfb34" + ], + [ + "sha1", + "9682cba3dbedd3a745dfbb2802e72c940b53c2cf" + ], + [ + "sha256", + "73eefe93ec0a50ac82e5367abcb0d256deccc0bb79eb6719c918d493b359edb2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FD13-FullUSB.zip", + "path": "", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 373667381, + "subtype": "Archive", + "type": "Binary", + "version": "Generic" + }, + "0fcd2a40-83ea-5651-bf44-64fe11a72132": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "4429bfbb52a084bb9f50e1955e1bb044" + ], + [ + "sha1", + "79ca29180c427bbe97b799bd6a4036a93e49a931" + ], + [ + "sha256", + "ef0d62e05340fa66319a9c1005b98791247f8bc811ba98f6f7e7d2af4cb9e755" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dmi.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/dmi.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6295, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "0fe1bf60-292b-5697-b951-9fd93ad808ff": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "eae2527728ca2f2e75b01118c207e092" + ], + [ + "sha1", + "13a878da37163cf27028b625d6ad0f5e37ba9cf5" + ], + [ + "sha256", + "345995f3746e20565c1060533ecc8fb96951ae88a4b445f1138661d01131b2c1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-hu.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-hu.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 143151, + "subtype": "None", + "type": "Text", + "version": "" + }, + "0ff1b0e3-c74b-5c0c-99aa-6040d47b63ba": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "4921838bc99f14fcdeeb6651071b6b44" + ], + [ + "sha1", + "308b822a491e0ee1e17f10d99baa5bc213e6892e" + ], + [ + "sha256", + "a80e6f498f96e1fa517228ba1975f74be0ad125be7242a9b386ac60178d71b07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BBSPPP.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/BBSPPP.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4593, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "10823eb2-527e-5b50-9c6e-d6cf3c9ab1cd": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "be31db5c30626695878614bfb3ae5544" + ], + [ + "sha1", + "93fb9e7d4416ba84c88c90b21ca14126cc6fc90b" + ], + [ + "sha256", + "8af75a6fbed037a0ae39a8e672fd6e2f7c77a433d3f75e70d3a963833fce2a12" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "486PC.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/486PC.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4622, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "10d094ff-1c11-542d-8d4a-b1af606d7415": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "11fbdb3ad0aa68ad2a572da34f78752b" + ], + [ + "sha1", + "b6b1ed8cb7296ae33e631ee91e21a789c6c56122" + ], + [ + "sha256", + "eec7d7fcbaed3a96cd0b41732d43dca2c26cf6d5f0fca04c7ea646d09d4ac3be" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "std", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "STD.TRP", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINL/STD.TRP", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 28160, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "11127114-0dce-5c59-a8ae-ff1ee1510bbf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "08e8228e6c9feb33ac5061879c1ee2c5" + ], + [ + "sha1", + "7deabeaa8c98c42069085c886b0d4a8f32b8ab69" + ], + [ + "sha256", + "ee4069b6bf02a6d68fb8bfb979b0eb92cfff48b399b8026f8050b199ec69737f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WGET.1", + "path": "FD13FULL.img/packages\\net\\wget.zip/DOC/WGET/WGET.1", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 80039, + "subtype": "None", + "type": "Text", + "version": "" + }, + "11f5e718-9341-5a8b-b7fb-a2f26ebad365": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cc23556d05ca7380f50687ce9dc3e487" + ], + [ + "sha1", + "df9c98bc980a76ea3291b8d26f2fa93ce1339afb" + ], + [ + "sha256", + "dbad4d9147a9ae8bf9289d9d5500aca4a5e0a1aa857b58a9e0f036fe8d881460" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2029", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2029", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6034, + "subtype": "None", + "type": "Text", + "version": "" + }, + "12463df7-f61a-5867-bf29-c01eb3fde2ac": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "33e954f738fbc1cce37e5c93b295fc18" + ], + [ + "sha1", + "a909318de8e5ee3692cc6603022995bdaede78f7" + ], + [ + "sha256", + "6d1ea682adc84ed47b1323975cd393d408620fd89b7ab94347a5d942f0267fbd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vorbis_enc_data.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavcodec/vorbis_enc_data.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24547, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "12da0ef2-9a49-5603-a10c-71e4abee0c44": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c524440ffd05c58f4bb8524713e4da67" + ], + [ + "sha1", + "42c23e0febdaa01d454a5a7b7d71136e5fdb9203" + ], + [ + "sha256", + "c263b870ce8d23ccf19d947186db13a1ae93b95aebc9f8378ea2e31b7d77860e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WLIB.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WLIB.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 191078, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "139efd73-cdf2-5302-b586-5a3813e7426a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f488c0f23f4a10d18f823a866743042a" + ], + [ + "sha1", + "15e1b4dbdeffd2640684622151be23b7fe801cb6" + ], + [ + "sha256", + "ed330473ba0ac47ace59b8c3577eb23ba0a9387acda67a268b298c84bc796cbb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "4e0f25b6-d614-4b09-8c8b-20d292aa2a14", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "MT7S19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MT7S19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 32256, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "13af18e9-6844-590e-92d0-20b5f6fa2d6b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d50701267c2983492fac541249b1c912" + ], + [ + "sha1", + "beea8637aaec9201f5c7b0f6b87ced9f377ecb1e" + ], + [ + "sha256", + "6b0d36bd9518a21158029c44dc8246179d654b507d422676036e8bb46acb5d42" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpsb.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpsb.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12425, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "13ff53e0-e6a6-518f-bee9-a57deb62c38f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ce99aa1cad60e130126b812f1b064b85" + ], + [ + "sha1", + "519bc0ce3a1d57d272b1d67be3f9435e740c814b" + ], + [ + "sha256", + "2999b34dcecea8b9989c034899a59e4c238e615797609419011bfcc051d1b459" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1212", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1212", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 753, + "subtype": "None", + "type": "Text", + "version": "" + }, + "14886854-078f-502e-8689-2c39bb597229": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "72a09912ef4aace8975e670a50aeb076" + ], + [ + "sha1", + "4ca91d17b59ecd4b34302d78adcbe7501e6605e6" + ], + [ + "sha256", + "8481061847f9b336fb5a27dbd7c99009ad4f8574e6bcaa398374bb4fb90b383c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "userdefs.h", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/userdefs.h", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 78004, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "14fd40b3-cab2-52ae-8344-839ef6ab8447": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "95242eddcbb43b2266bfcbd54fefb1fa" + ], + [ + "sha1", + "23b7fdc4f38966479f0e05947afa1e7d98c94bb1" + ], + [ + "sha256", + "2492bb263f98c02021e208e90b1f7473e7190af0bb50e2c8ccbf8d494a33ca77" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-lastSAN-sv.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1191, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "157fb13e-c099-5ea2-9423-8ddcc250e166": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "6bf8d755350ce0f39ba4f92f4cd0cdfb" + ], + [ + "sha1", + "d221915b83f530b87386e040124df30ffc5b8249" + ], + [ + "sha256", + "d1b83e7eebf5ffffa8363cc989cf036ebfb7d0e657f7ce86234493bbe6f6570d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.dll", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/lib/x64/user32.lib/USER32.dll", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 58, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "159831d6-8269-5834-af22-745129d3ad6d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0e8f6b56a4c66c2aaef9e2ade4319c5b" + ], + [ + "sha1", + "5962a2da31c2aa859766571733374f450273ad38" + ], + [ + "sha256", + "17959c868b7f0e21041e0b42b13eb7c316840896130c837e1a0b3148d18975ff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loads3m.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loads3m.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9807, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "15ab0bb7-6c67-51a0-be91-009e7a4dd744": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d476d6fd0204924364dfdc03d81da986" + ], + [ + "sha1", + "8fe8fb939cb4f7969ea823f64622561c0565dd64" + ], + [ + "sha256", + "ad0c9c3003cd8eff2ff6e38b04e9a377622c5c37c6043cea49b2a8b3a81ac823" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "4e0f25b6-d614-4b09-8c8b-20d292aa2a14", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "PLBS19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/PLBS19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 136192, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "15c7c189-a1b6-52e8-ba1d-23dbdd2f5ffa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b87273e0f0e70fb20cf13de1a71fdb94" + ], + [ + "sha1", + "a51f24908ada22d99680059a3f112bbc6dba79f5" + ], + [ + "sha256", + "1182547865e3c7910e4c1acf85a3dd6419979e885098fe8fa04a9c71b04e8fcc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "RCSDLL.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/RCSDLL.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 23454, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "1614e005-2069-5a47-8896-7d7a8a4e30c5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2af5ded9218d78f6e5eab2d40fed4bc2" + ], + [ + "sha1", + "e68e341d7b9ce997f053efa59e7bd76e3ff79f34" + ], + [ + "sha256", + "8475885770e60815284daf32e7501d8e6329572f15bbf07a6bb25d7fdafaf50f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test356", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test356", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1190, + "subtype": "None", + "type": "Text", + "version": "" + }, + "162fb3d2-26cc-519b-96f7-c9332532ff39": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "d2a262bebd609c350de4a7398d2529d4" + ], + [ + "sha1", + "0a79e70e9877b6c169566d76955a46ce1b8a4213" + ], + [ + "sha256", + "be0e8406065c9412ec3b31d019b4c338406585af2938c9331b338bf68c09ebbf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_14_content", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/page_14_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1806, + "subtype": "None", + "type": "Text", + "version": "" + }, + "167221f1-748e-59d2-a3bf-c5b3f626c39e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e1527a80780d28bb0c36f3b3b147b3ec" + ], + [ + "sha1", + "bb3de032ab41334d28788ce1a6169d6021866638" + ], + [ + "sha256", + "a953c6d6c82d44c07d032f5f40e112e96ee0b86c71a049b491719c9eec3e646d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/it/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5606, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "168659ef-79f2-5ca7-a671-fcbaf0e8f111": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ae9610932ad165241069f6d913664778" + ], + [ + "sha1", + "9888c950847a7e22902e42045445aa58fb12b859" + ], + [ + "sha256", + "3b3ebbc238a20b1bf50a1f9e385073092e2798ca656ececff455940eab39cf48" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playcda.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playcda.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12841, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "16bf513c-bfd3-5fe4-9dd4-a67a600b36d4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "65842b9c8315430590405b7c856ed135" + ], + [ + "sha1", + "fd8c1734bc09714c8b36615f10aff0578d4bb1e0" + ], + [ + "sha256", + "a65d3abe7f7baec3230c551bfcb96efc817f031032551cf4f51c7ff8b23c604f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\archiver\\unzip.zip/DOC/UNZIP/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18337, + "subtype": "None", + "type": "Text", + "version": "" + }, + "174149b6-a2e4-5618-afd2-d65ecc4cd806": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b4078d8d3c98772e7f444e986150171e" + ], + [ + "sha1", + "b1ac7a03f6127563c20ad75ad10414199c7ec174" + ], + [ + "sha256", + "5325cf3f783eaa265457a1f54425c6fa93b880113ae15cf12fe20c8cb9dfada1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PPPVOLNY.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/PPPVOLNY.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4562, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "17636e07-12aa-5af9-8a2c-666afc05b1fb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d42de974b26974a4db9a9b4470523b55" + ], + [ + "sha1", + "68a9501b2515a0c7aeb5ae20ae653a82ab0b0b71" + ], + [ + "sha256", + "aa11b8edaeb01f930b66cd4a84cb2dd1cb0618620fd6fe8912d11d34e03abbd9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CTAGS.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/CTAGS.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 54596, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "17e47687-3514-5c75-b33e-fce7179c3fd3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "17d33fc4fc255ab0c81d8815f0489b34" + ], + [ + "sha1", + "6a05bbfae50d571f3f71fff5bac594a26a2bfd20" + ], + [ + "sha256", + "8a53a9c47a37344f222858adc7195c99df5164e764d2565124590af53d1f0e6b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "CLBS19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/CLBS19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 271360, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "1843d3d3-ae3e-5b5f-b065-c5d7c1e6a194": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e67ca101cb7da702e82f12e23322f5fa" + ], + [ + "sha1", + "542d529ae4ea6055d995e087515e8b82b314a6c6" + ], + [ + "sha256", + "3bbf30b39f7940b742eaa3d91b5cb968b0676f852dc571bd459c50c0443fedf7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "freverb.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/freverb.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12001, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "189710b2-9975-5446-915a-86db52ec7561": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "49f3abfecda51397b97727c230b00871" + ], + [ + "sha1", + "aeb360492b6f8b7f628073e8ab1bee52e82ac89b" + ], + [ + "sha256", + "ce63dc2899afc6edefed513c541aa2eb7b13d68a9370358c50b41edaf51b2471" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/it/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16896, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "19001d84-602a-5b03-a553-595e75f461a0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9b918cd1688bc8679cb54ae236cbec25" + ], + [ + "sha1", + "fcb10b5b630d7212521fff93ef7f8b6bf1e24737" + ], + [ + "sha256", + "cf92e16190c43bd67ed6f0c21e42a38629fe8a540f97e6ff46c01f3141c2e533" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpdisk.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpdisk.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6388, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "1901a3b9-61d5-5e4a-97e4-9c18ac45acc3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "02704a7b41cce3fd383512c26f857439" + ], + [ + "sha1", + "a03ad18d4c59cd9f09dc48f5b16e56cb1ba6ae9b" + ], + [ + "sha256", + "10719836edd196d8a9c8eda6424369836049fdaece41a0652e051891a63448a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETHERWZN.AH", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/SYSTEM/GUI/ETHERWZN.AH", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1148, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "19e39ec4-22e0-5794-a64e-5755ca0ca185": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "808d87213405a7c1f061bd3fc7799f3d" + ], + [ + "sha1", + "13763587b45211fa42523925c82c8a65f2461739" + ], + [ + "sha256", + "319cbd9be36f7d27e76ea758ff7878185d6f1e37431b7c94d334e5d0532e2b3a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "HELP.C", + "path": "FD13FULL.img/packages\\edit\\tde.zip/SOURCE/TDE/SOURCES.ZIP/HELP.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28817, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1ae33424-1ab9-5f88-a3bc-052bac82333e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a4e5d0d541a8e64bc0c6804c5eeae647" + ], + [ + "sha1", + "70ddb458668b25cb91624256b1063baef3ddf12c" + ], + [ + "sha256", + "772cca1d00e252567b19bf15947d791ac8f504cfb0e4d1f1f3a848a91b9cb68c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "formats.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/es/formats.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24081, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1ae780c5-df74-5226-b8fe-880a45f58fc1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2fb142080f3c2609ade3c40e9a90ec49" + ], + [ + "sha1", + "771028a19358ecee83593eb08796f2923920d191" + ], + [ + "sha256", + "dcf3d60b5d4e68f3e995dc54d5bfadbe1a94de6bddc88d92cae57939d247301e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.6", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/changes2.6", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 41847, + "subtype": "None", + "type": "Text", + "version": "" + }, + "1af1a5b7-b6ba-5c3f-a0f3-fd75dc42c48b": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "425c6273976515d7a15c03c51bd1d73d" + ], + [ + "sha1", + "05f81b67ce1299f5bea507b3b3d56b71672de3e4" + ], + [ + "sha256", + "1e329541a506e9c77010682c4a6264d94a177a839b529e58b9212ffde45ff013" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "url.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/stream/url.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 10756, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1b045606-c94c-5918-858b-34a0fd71abec": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "771590da9b42fc624e899a6225d6c507" + ], + [ + "sha1", + "43ae134d58932d76df84aad52ddf5932c9b147e1" + ], + [ + "sha256", + "c69bc3229d6f220310d46a7159880245e92bca0f5534b5d5b826ebc42d7982fe" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "faq.htm", + "path": "FD13FULL.img/packages\\devel\\fpc.zip/DEVEL/FPC/doc/fpc/faq.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 85484, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1b35abce-006d-5aff-a402-7d4066748806": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b83d6128ba856ed6b8cd0f2ca8d072ca" + ], + [ + "sha1", + "14b8a33278718be4d8030a274a6ce0c240ac5169" + ], + [ + "sha256", + "6a284b20221c1f482fd8a91a9c1683951570f023d1e43bf211c016a63e8cfeff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/SOURCE/ZIP/SOURCES.ZIP/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 12748, + "subtype": "None", + "type": "Text", + "version": "" + }, + "1b487db3-00b4-5987-aa70-ef64f04baa9e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9903ff59764bdeb65d6ab04b377f036f" + ], + [ + "sha1", + "cda35325c5a2edae1515e222cdeea34f1232e7c8" + ], + [ + "sha256", + "c791eea29b652b94cecb33def5a6af7a081a5948218d08617ecaff92c10be4d7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "spell.c", + "path": "FD13FULL.img/packages\\edit\\vim.zip/SOURCE/VIM/SOURCES.ZIP/src/spell.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 437987, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1b97d5e1-31bf-5700-8841-146f93eb59d7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "44dde6cc1646f6689612fd1b5f1cf4b9" + ], + [ + "sha1", + "87db8810e2a04005631805ea5ff07c2048c6e035" + ], + [ + "sha256", + "6571b58c7c16964263e2aec0d7185ed500391016db2e81485996ae7adefb85fb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WRE.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WRE.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 203008, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "34aa53558b2870c10ff9b82a78f6112b" + ], + [ + "sha1", + "dbaca2b03fe534065554334e81b66ed62905a11b" + ], + [ + "sha256", + "bbfc684c6094ea171239a473f9b92abfd1d675530e23f6083d848afb545c8345" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "URL-SYNTAX.md", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/URL-SYNTAX.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13268, + "subtype": "None", + "type": "Text", + "version": "" + }, + "1cbd124d-4027-5285-ba11-47d1e69373d5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "23053e71ebd0ee0de5ca56319434d777" + ], + [ + "sha1", + "dad61a3a93c5431a25b3cf0c9f6bf47aa0023e81" + ], + [ + "sha256", + "ecb4d6b7129db975177be9f8677d7cf625cc0db02957630886f71f1d7f64aa4d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/hu/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16681, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1cd3a5d0-6160-5185-a39c-946203f0015b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "880359f1fdc689c7aab42dba21cf5ad9" + ], + [ + "sha1", + "72aa18c3d5c24bca225e654dbad6754c25cc323d" + ], + [ + "sha256", + "b818f560fec2561502f0e5494abb2d98173679ef95ed99621a918590889b4376" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADX86.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/MADX86.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 135974, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "1d50e9c4-0f16-559f-a09d-67029aaaccd7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "256bf094abc25149881b147e16e48817" + ], + [ + "sha1", + "aeb3a5266996bff2d5f6be43d0fd7a208077ccb1" + ], + [ + "sha256", + "b43c86f7b930b5c5373e81ae410bab81396cc3189a1c8cb11629705adb8294c5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BIN2INC.EXE", + "path": "FD13FULL.img/packages\\base\\jemm.zip/SOURCE/JEMM/SOURCES.ZIP/TOOLS/BIN2INC.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 9216, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "1d5d7ca8-083d-5bb7-bfa0-386a3fc0c1f3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a0aa6f9a1535e2e92b4d65253079d7a0" + ], + [ + "sha1", + "c4d4e3fba1029d2d18c23d5db88ce928d73166cf" + ], + [ + "sha256", + "8b3ff320f5bec09a13ec8f18d325eb0c72d6cf2f948ca14937d276b611d4f58e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/it/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 96688, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "7za.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za433_7zip_bzip2.7z/7za433_7zip_bzip2/bin/7za.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "1da28165-f0d1-5e07-8528-0b100f14ce6c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "11db5bac00fb940cf3b1f56c6756619c" + ], + [ + "sha1", + "a968e8fbbaa146a97d3c930117c4698b4f0f4448" + ], + [ + "sha256", + "b653330c1db3a50279b13e049e4da5410cf16db4c6341618ab1a56a3bc43f46d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cphelper.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/cphelper.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12270, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "1e36cc1f-b063-5c86-acbf-81b6fb67e367": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "08d68a4a861d82584c36ed529ddc97ba" + ], + [ + "sha1", + "4dec6da650d9c7bda3a1ef19b5fad4db67c4a6e0" + ], + [ + "sha256", + "f389035a20d91b89e33355c1d7610266d63a6ef63436afa4515fe7896c1b698e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3c595.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/3c595.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14025, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1e8e9597-a7d8-50c9-b142-6f60bffbaf49": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4968a5feba904dc1bc689584b53c208b" + ], + [ + "sha1", + "742b53817d5b4a2aa7f1b2116816e714df927843" + ], + [ + "sha256", + "1b4d1e03562ee37c4a8d26c7f14169ee19bf8c8f37079cae01becaa983fbcebd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "decode_i586.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/mp3lib/decode_i586.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9238, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1eb14a2f-d97f-5566-966d-e3418f722569": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e1e8f408b8f6fd16ee401936dfec198b" + ], + [ + "sha1", + "fb9d8062947e7e7b6274a377034e32cf5bdfc0ae" + ], + [ + "sha256", + "576a8cc7b62bfcec39d7fb2676f9ae511d7c3cf78deff773097ced0f21f127e1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TCL.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/TCL.VIM", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 17696, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "1ef817e9-27ce-55eb-8b07-ecdbeff6b3f1": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9b35f0350ed1a5c70d261001e1a5a54a" + ], + [ + "sha1", + "5851178507676c917828a6aca35e04f3aed54a5f" + ], + [ + "sha256", + "bcc429008de98365fa6b56ae905f90f5d55b0126be443b58b0347902700b37eb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_OPENSOCKETFUNCTION.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_OPENSOCKETFUNCTION.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4825, + "subtype": "None", + "type": "Text", + "version": "" + }, + "1f0f827e-87ee-5cc8-83e5-c7e77ae18cc1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3d5cc0f9711df4ef53b7430f5db8f3a9" + ], + [ + "sha1", + "1724db4699eda5a8a495cc7a15d082e8512a9b4e" + ], + [ + "sha256", + "57a6ee97663bb38bb0751df788369ac085edefc727d4ae0978363c324026d543" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "reg.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/ath5k/reg.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 96686, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "1f2dc7a6-9d67-5449-afa1-e55d841564fe": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8a95d15159c0be484163a8dac0845fa3" + ], + [ + "sha1", + "9d358c1a2e76bbb34e9ef21dcf81a84c8a5e6224" + ], + [ + "sha256", + "da897a237d6363db5b161119639086d4a3ccbe54e07ea94bc05620a1a3b28a00" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WDEBUG.386", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WDEBUG.386", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 31036, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "1f3217a2-ec73-5ed1-bdc8-41438c9f22d4": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "f9f6c19ebad8060868dfc694cdbab558" + ], + [ + "sha1", + "d4f7095a9d11e7f2b75034e8b7844df6f880f9c1" + ], + [ + "sha256", + "ddab16172f6fdd694ac3e1bee15102e881615763732719b9fe9ea6450162613c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "index.html", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/setedit/www-site/index.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 41204, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1f410d41-1a8b-5ad1-961c-5c328471b307": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9097efe0a841d0b1a51cb61d1556520c" + ], + [ + "sha1", + "4d0a5b202223848deeb02c99ffa3013e8c39a94e" + ], + [ + "sha256", + "ac1c01539f1cc26348562c0c2d3f757a7eb277814692c4bb5d24d0d4b7437c7d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "sock.vxd", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/SOURCE/FREEDOOM/SOURCES.ZIP/SMMU-SRC/sock.vxd", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 17198, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "1f494078-0b93-5ff5-a715-74abaaa0f778": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "9b17a1bca9c86dc2a0ab12b435b94613" + ], + [ + "sha1", + "72f6fffc89744b73eafe49f08f0a5585ec470964" + ], + [ + "sha256", + "c4b9ba6543fc50c2803b0f35ea6861d77f03d1c891c66a9c004e3bca672b2067" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TestComment.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/test/TestComment.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2032, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1f9c3df2-e83f-50b6-bb01-abca3357f9b4": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a0905a3b42916017b3e89961b7c68481" + ], + [ + "sha1", + "356248a399750fe84d522913dab6ac655007179e" + ], + [ + "sha256", + "a96082e104ef4aba2646f8c5cc3dd510e82872026096498d42aaef08accb2010" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "index.html", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/gh-pages/index.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15665, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "1fce6644-49c5-50e9-a17a-90869010875c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9f2cae9e665afa913144167abc3924a3" + ], + [ + "sha1", + "722f70e51bb70d4c23b9e515d904c2f4e6ad4a54" + ], + [ + "sha256", + "3cd8a356e4060b690426eddfe362a49c4547e47c35595351c50b07e7c670cab1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETERNITY.THM", + "path": "FD13FULL.img/packages\\apps\\pgme.zip/PROGS/PGME/DEFAULTS/ETERNITY.THM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 71104, + "subtype": "None", + "type": "Text", + "version": "" + }, + "1fd25b5e-9da7-58d1-a411-26a36b8a118f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a3f112d16c53dbeadc457aaf93e92287" + ], + [ + "sha1", + "716a29d5fd5757569ad1351126c8b9fbe195c1af" + ], + [ + "sha256", + "0e4c1e00b12bb1cb13fd06fd0924e4a9398f3bcc5cec7a9816c5435bd7bc3d15" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MINE201.DAT", + "path": "FD13FULL.img/packages\\games\\fmines.zip/GAMES/FMINES/ANIMALS/MINE201.DAT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 773500, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "200e288b-1344-5f29-9b6f-a292f940f127": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "678bda15966f889572f1ef55fc709865" + ], + [ + "sha1", + "093530a496aecf1d01890dafa75836f4e2d245d0" + ], + [ + "sha256", + "aa8f9b3f2b2c23ea9ccb235b21f67030db48d66a787019cf627ac9ea22003490" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MINE305.DAT", + "path": "FD13FULL.img/packages\\games\\fmines.zip/GAMES/FMINES/ANIMALS/MINE305.DAT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 710252, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "20856f05-9220-5ada-89d4-d7dcced57a8c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f1a537dd2a4739704a7693c82e8ec74a" + ], + [ + "sha1", + "595c102d5c6cf7ba0c6f863c5fc32a8b0fc55e6d" + ], + [ + "sha256", + "da6588c787b61b2f7dbb7db0ed703bf67395b753cd329593766d8ed20edd8537" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1251", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1251", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 813, + "subtype": "None", + "type": "Text", + "version": "" + }, + "20a085ef-a1c1-5b7a-94b3-2a6dbd7a939d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e8565d89d65185b5260592b607329a39" + ], + [ + "sha1", + "69c154128324d797ee55f5204b93eb43829e6362" + ], + [ + "sha256", + "7490d00f6689729f2227852b7ecaba6d1c44185dc57736ebb1a5e8acb0e6d403" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGES", + "path": "FD13FULL.img/packages\\net\\links.zip/DOC/LINKS/CHANGES", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 129236, + "subtype": "None", + "type": "Text", + "version": "" + }, + "20b028e9-7597-5d4f-8059-5fd95a660569": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "3eab4d4c25ec0024411b5d658a3d2c26" + ], + [ + "sha1", + "11f1b6690ec67c91a64b2ed063fc72a4d83098dd" + ], + [ + "sha256", + "a25353f9d377521ad3d0de9ff1233b005ecc43cb00dc5331f98b83a6da4452de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost.nn-sv.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost.nn-sv.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1679, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "2103d7e8-25ec-5ed6-a542-62e8c40cdc8d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "6dc33e36a0279d7ced72010b9613050d" + ], + [ + "sha1", + "062346ed94bbac08d85b1e008558fd7bd36911ee" + ], + [ + "sha256", + "eceecee15a22879b871fdec6b65c1fb08de288a1191a8344b044f2103930b36f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dynip.o", + "path": "FD13FULL.img/packages\\net\\gopherus.zip/SOURCE/GOPHERUS/SOURCES.ZIP/WATT32/LIB/LIBWATT.A/dynip.o", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 22405, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "21deea41-207f-5c20-aa4b-bbdc93fe113f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bdbf6849c8985c97c969704f3eb6e306" + ], + [ + "sha1", + "eaa5d3df856e17ede4e6a6eca2c55584d17c59b5" + ], + [ + "sha256", + "8d6dddd1e3cbef72fdeb83d332203a7c75e4af39da9219797428e81e99e3e967" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "pcsarp.c", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/src/pcsarp.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6804, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "21fa9cf8-0efe-5133-8f7e-4c720253fef0": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5ef1fdd6b3f1b8900e33abbfc41cdaa3" + ], + [ + "sha1", + "40164060f5a5c9219dcfc253f6b2b673d6f547fa" + ], + [ + "sha256", + "9898e6b837ee52c45af5cd1dced1bed29af0341a07193f111e26e91ccfd4f10b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvision.po", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/tvision/intl/tvision.po", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 10880, + "subtype": "None", + "type": "Text", + "version": "" + }, + "225ceffa-c659-5b3c-8efa-e818a1e6cd68": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5877b18c01d5240a55c0784d48527d0b" + ], + [ + "sha1", + "5be1e3fe1d81729434b31bdf28814193a9e5876d" + ], + [ + "sha256", + "ce36561509785a62ae4361390bf0cdc3b67bb37b7429f1ff5abed798cd8a59bc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpvxd.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpvxd.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 7220, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2277d9c2-3882-53b8-a34b-4c03b21b1391": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1370cd606730581edfc2771fc1286936" + ], + [ + "sha1", + "bbcbabf3fbd3fc00d79b5e9384df7504bb8d2ee1" + ], + [ + "sha256", + "e72fd25f08f319eecba71749d1f5a4e96e1d62e02bbbbe96b65bd382cb1f02e7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da", + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "iddc.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/iddc.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 9728, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "227dbcc3-8e12-5309-8bf8-87583686ad49": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "6a0ecfaba4e8ce700e6168b58d8b0ec9" + ], + [ + "sha1", + "9064ee5f7d7dae22bb265dea91ce1e41fb19008f" + ], + [ + "sha256", + "3f9a3b0889d1f4093505d827c44ae7f9515c665ef4c750e5c9b812209f59bedb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NTOOL.C", + "path": "FD13FULL.img/packages\\net\\ntool.zip/SOURCE/NTOOL/SOURCES.ZIP/NTOOL.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 20874, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "2316fd4c-c184-5561-af74-72400429c78a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "2973e716e0f57cdaa9d8e2a74b233fef" + ], + [ + "sha1", + "35bb7b13078ea213b47ae6ecb81eae870326bcd9" + ], + [ + "sha256", + "6565817a4adb1666bb953ac499b90e190440aa722a4973600d0f34408e0f31a2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/cs/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25504, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "2319a6d1-bd60-5eab-b915-0a62bce1e49d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "66567b7ae6a1e71d5eb2f1a0080b922c" + ], + [ + "sha1", + "3a202c95101b4efc70596b26a04e1e080a45278b" + ], + [ + "sha256", + "5aac7fcefb716a6be5aafdbd499e53f697d58dc186aee8285135a1b5151867d2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETHERWZY.AH", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/SYSTEM/GUI/ETHERWZY.AH", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1181, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "23309a77-8077-565a-9e10-3f4be48fef47": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a94884faf75e492e7c211f6a64de77c6" + ], + [ + "sha1", + "de1de8f35c7b08e045be29b2f44351425bccdd01" + ], + [ + "sha256", + "4c2a9360584164843987fd95bc4048faa4a4ce84090fb0ed98da19d91ff4dcdc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/ru/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6627, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "233d7db6-032e-59d4-9b8f-bbb93d1fa1a3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "801e6849da5de02ab8180ec2967b56f9" + ], + [ + "sha1", + "d1b01d4c0f8d388ded4b976fd28633a7104af06e" + ], + [ + "sha256", + "da6ec304270d44afc979b126b2e748b7f60ae2f0c26ea667efd28b821cac38e1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "smpbase.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/smpbase.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 13408, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "23b427a6-d4bf-5e63-a560-359fa4921c1f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "eedef4294408d39f3d9c55db3715b9f5" + ], + [ + "sha1", + "37c1be5a17deeb265c1cb5b7da2c5b7a0452b6b4" + ], + [ + "sha256", + "14da6d5514a5640e8d207ff253cd9dc50bff4b3b77c96c5f7b4813502dd5d93d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-firstSAN-sv.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-firstSAN-sv.pem", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7475, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "24470852-693e-525e-9240-3d4c6292f7f7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0539bcca477c6a61b1a77ea4fc3bc10d" + ], + [ + "sha1", + "0bf697171adb7023b017bb19b4ec30f5122bb068" + ], + [ + "sha256", + "8ea1992893c0ed9505ed892fddd5935e4e4e80979b3bbe0021ab01015fa930f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGES", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/CHANGES", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 597653, + "subtype": "None", + "type": "Text", + "version": "" + }, + "252cc47f-4bd3-53b7-8fb1-da844b1a542f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1bb9250f67b30319badbe9dd859dce3a" + ], + [ + "sha1", + "61c8a546c56825e508c5a9b1b51d1b4b6d439828" + ], + [ + "sha256", + "fc72bc0fddda56dd1e32277179e1fe3a587be9084a0b894ce4cbc2056dc0c308" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0037r2.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0037r2.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 44035, + "subtype": "None", + "type": "Text", + "version": "" + }, + "25953d72-af91-5304-a799-5b76e1ab7ea2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e554c56562558ed743b3ff1724fd8afc" + ], + [ + "sha1", + "f4c4528bb994f72030cd1fb75ce19cfc1abb87ee" + ], + [ + "sha256", + "0f101c56d9428652a458c83f66d95e15667b35976cd76e37e30c05c736f84789" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadokt.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadokt.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9835, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "25efeb1a-c5f7-591f-b307-70f81e549c43": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f7832504674a577637f63ba0b3262a4a" + ], + [ + "sha1", + "b3e3ab1702b3ccaefa67bade13b70a0c506140e3" + ], + [ + "sha256", + "5594a38e49a0b5f4123ac2a927bcace8a9ebb1b8d5dbc457f9259f0d1c9cfb2d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLKEY_BLOB.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY_BLOB.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2906, + "subtype": "None", + "type": "Text", + "version": "" + }, + "262f2172-b284-5a46-ae60-b98b3b0103ea": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "4b6ec322211694141946750edc33ba20" + ], + [ + "sha1", + "00be2847643c9f87d581bfbb8d6111891f618220" + ], + [ + "sha256", + "39a44831ccbcbd3f8e200e1bc390c5194c45556cb3ec484f70a25913bc24a4c1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-sv.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1193, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "26334207-750f-5340-a035-ddea203e03ae": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bcefc395125575cbf39a3fbae8710d44" + ], + [ + "sha1", + "caae07e95203f832da8b9216117f18733cbc3afe" + ], + [ + "sha256", + "c09ba3b248aafba5eecbebed63e37c437be7489eb6aa77fe60f94029452d5c67" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cernrules.txt", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/samples/cernrules.txt", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 34563, + "subtype": "None", + "type": "Text", + "version": "" + }, + "26397016-8b78-567f-afa1-17209b3e06a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "406309ceb9ecccc9e61883d558be8e76" + ], + [ + "sha1", + "02b9ba71c19983d6afc5aaae2d62d15d75806ab8" + ], + [ + "sha256", + "6ed3d322f4d67afa13fa9b186be371078f70bb5d2dcd238348c634e388270a15" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MBEDIT.SYN", + "path": "FD13FULL.img/packages\\edit\\mbedit.zip/EDIT/MBEDIT/MBEDIT.SYN", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 53809, + "subtype": "VBA", + "type": "Text", + "version": "" + }, + "2651a810-6e54-5fd8-bf8a-b09821462b17": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "444756a4e6959600c4c6b1cd0b7e0b9f" + ], + [ + "sha1", + "42d33d28edd875589d1b810af0dd051f53d6bcba" + ], + [ + "sha256", + "14bc9274cb17bf6841b32c1fa9d6992197b7558b0638f446c9f206b04bf5f008" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "uk.po", + "path": "FD13FULL.img/packages\\unix\\gnused.zip/SOURCE/GNUSED/SOURCES.ZIP/gnu/sed-4.2.2/po/uk.po", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17742, + "subtype": "None", + "type": "Text", + "version": "" + }, + "268e0dfe-ae13-5732-aa9f-167e56026bc1": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "52fcf64fb494ea48d175ecd7694254a3" + ], + [ + "sha1", + "bc70a41512add0ed06dcd9ec45eaf6a2c9f3cf78" + ], + [ + "sha256", + "3cdbe32948773ca33564ab6772c02b75a344a72cf2ee6f3d97c956522008cdb9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0554.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0554.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 36613, + "subtype": "None", + "type": "Text", + "version": "" + }, + "26f4be51-931b-5d84-b689-d644f669879b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9d44367191f1a9c1b67350c5d5670d72" + ], + [ + "sha1", + "49ff570410af2b777aee1f30ff87c69a9185ceaf" + ], + [ + "sha256", + "423f70558489dddc1657f757bdea5fa73a63ac8785707195ab8b6b77097e5223" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TDEDIST.SHL", + "path": "FD13FULL.img/packages\\edit\\tde.zip/SOURCE/TDE/SOURCES.ZIP/TDEDIST.SHL", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 85591, + "subtype": "VBA", + "type": "Text", + "version": "" + }, + "27d5f6e6-37db-59ff-8fbf-9ab75ec052d5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d80b947148f804a7c83a05bfe5251828" + ], + [ + "sha1", + "b2a38caa34bbc73d5fc157d3b4f12c0aeff7e62a" + ], + [ + "sha256", + "a03b957c3c15292267ef0e8193be99a7149c773013e8b6b62810e819057d1e92" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.defines", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/README.defines", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6176, + "subtype": "None", + "type": "Text", + "version": "" + }, + "28466dba-8e65-5fda-a05f-a4d015f05da4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f287408ca87427866a0966a5b7b21a44" + ], + [ + "sha1", + "a52b64b07ebf27ad8baac04650b254eb1a9c01c9" + ], + [ + "sha256", + "5a0d6543173570e44f849ceeb0abda904226da99083c083968884edb38536a54" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devi.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devi.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6421, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "29884c05-6a72-5625-996c-40bc5b0dbc21": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "14df9a1abd3d353f774ba3d7c7b8cb2f" + ], + [ + "sha1", + "9bf1be4f4b0a8eb934181b9e27e7ccb9fcb708f8" + ], + [ + "sha256", + "44b8cb460a6129c101b2607c01947ad55f618188bf0b9e3debcba8c215ee1d4b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcace.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcace.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12538, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "29e88192-4fdb-5199-8202-3738c019c496": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "714738f284657c74b760b528b90fb258" + ], + [ + "sha1", + "5add90750d0d2a1ce02e2a9d34a7935ec625690b" + ], + [ + "sha256", + "168fd4675f6b6231bf7980910e8c0ad7e84e1602b52a3953fd0c1f98fcd36064" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devsgus.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devsgus.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6363, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2a271e0f-b8ab-5a15-b13d-162086740759": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9f3491ba4b928b32a18ea04f11878b22" + ], + [ + "sha1", + "db9389fca9bd738f7c22e039c0c84e8ee55eec97" + ], + [ + "sha256", + "ed089132c870c3b8ece5bd9f684225ee899d8c7f76d06fc5db26682e35e3f989" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcpaq.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcpaq.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5875, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2a5c20d3-95fa-5e32-980a-f581f427edd9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "85da81fe4849f6c2211001c151f83073" + ], + [ + "sha1", + "863ad295c1c882bac74c9fd384180301c7d0aea7" + ], + [ + "sha256", + "e923372633a5c6d5442b4a4e0016161799eef79bb3241b619163c162b03c23a3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "nt_3d", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NT_3D.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/SAMPLES/IDE/WIN32/NT_3D.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 101888, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "2a9fe9f5-4965-5b97-b08d-b926756a27a6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "c42d44f6b13a98d82a01b229aec59e54" + ], + [ + "sha1", + "9baf5cc7a4750f7b6b540bfc3d8c453defc67147" + ], + [ + "sha256", + "d5638368dd10c1fd08a830ca168e36d542deb4ed1d613110f22abce884f9f1a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "novell.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/novell.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3125, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "2aacd19b-4594-571c-8842-d4a46cf33909": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7f576cfe3e758b5b7a9af0e25a6d78cb" + ], + [ + "sha1", + "c9cd75f978655542a511e312223d23034d12fb1b" + ], + [ + "sha256", + "e94d8db268db701409d0d801bdfd8da66f2774ff281763d7b9018a49f44d87f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1204", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1204", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1625, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2af3d09f-0e52-55c2-9b1c-e084776f7a46": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2c86225f1a0cf3508b10772314fd83de" + ], + [ + "sha1", + "501493a3ee40ff39132bea8059d48a837418f013" + ], + [ + "sha256", + "652bb6bfe82705ca48309a407874b2bb5946c821e6d86bfa5d1784256aed4e72" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CRAWL.announce", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/CRAWL.announce", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5980, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2b0f391d-a9d3-57f9-9cf8-5bd48feabcf0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "17c4352df80251590105719b28196c31" + ], + [ + "sha1", + "18baf4e9274804b6f3874d8341f1130ff29d7d22" + ], + [ + "sha256", + "16594df23c5f7339bbd341517b2ae0a2f0a716b2b6dda85158186c5cf367266d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tcpip_ap.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/tcpip_ap.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8064, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "2b36e24d-0335-5fbd-a743-504f0273b167": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b8d978753921c88b55a5b862158b2ca0" + ], + [ + "sha1", + "7dcb94965b564ccb3351d7478e7002169e8e0e9d" + ], + [ + "sha256", + "12e7e9279a49e65ceeb02799d99f9c07d7618199eb9db890e6d26746338e2005" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "HTGET.CPP", + "path": "FD13FULL.img/packages\\net\\fdnet.zip/SOURCE/FDNET/SOURCES.ZIP/MTCP/APPS/HTGET/HTGET.CPP", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 37246, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "2b83554a-6961-5617-9fe6-bd7ee79da147": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "676b468ad4c8b2ab4747f968ddd80a53" + ], + [ + "sha1", + "12fbbf246d362e9d5c5b9435ac167b16b7a0d01a" + ], + [ + "sha256", + "9fd61811b35aaf076e6386e2a1a2fbcbb077c25de96078becf46ba9d55a4ae36" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpews.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpews.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6390, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2b88192c-069a-51a1-9067-9063aa8e60f1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f98a2725ce26f3bf7da8fa977b5aa210" + ], + [ + "sha1", + "f43dc0dd6c93ff2c9ee7cd7878529b318a6f50ef" + ], + [ + "sha256", + "d202e61863362313928faea72a453d195000e6da7defea011458f769b73db235" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3c595.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/3c595.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13904, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "2bb7193a-0a7a-5aa9-b92d-56ef74df1836": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "da2dc78bd948df4b34597de41c375862" + ], + [ + "sha1", + "4bbdb80b8b3a638ba2600aa6b877618728db0eac" + ], + [ + "sha256", + "be59ecfb924932cec66e160affdb8f5023b5dd70445354b055c2bf4a2df41d42" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "makedoc.py", + "path": "FD13FULL.img/packages\\games\\liquiwar.zip/SOURCE/LIQUIWAR/SOURCES.ZIP/doc/makedoc.py", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17628, + "subtype": "Python", + "type": "Text", + "version": "" + }, + "2bd63654-ecd9-54dc-9b7a-bcbcfd1a88c0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2b525f780a22786b831c234e6820d782" + ], + [ + "sha1", + "7fa3df2e9e567cb4460232fc181e741bc3adc6b7" + ], + [ + "sha256", + "d47427858e34cd7af7f7c72801a376f671e6036b74e4afcd9e3779f4c9fdf3b5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "freverb2.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/freverb2.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5811, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2c3aa320-cc85-55e5-8d1d-1ff6c8772c8e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e432387fba49e0070af49ab92ca0f0e9" + ], + [ + "sha1", + "670437714a9c83803fc34f891a1af2a1ff4f796a" + ], + [ + "sha256", + "00a38ec3621f315681091e216573b7e12466cf97b2d6d76c05d5496c1ac9cd55" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wget.pod", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/doc/wget.pod", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 64351, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2c672f3e-e325-5554-b483-763996d3497a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "3b562b6672a5c7cece7d683c0c1eac75" + ], + [ + "sha1", + "31e08da23e8c6e4258dde4352cad56a7603f16ae" + ], + [ + "sha256", + "9cef7ebabe6dbc282b3479b3ca3ab0f773bc60988103a4781825350b537142ad" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost0h-sv.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1192, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "2c975f34-42d7-5e1f-abc0-221aadd20f12": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "66567b7ae6a1e71d5eb2f1a0080b922c" + ], + [ + "sha1", + "3a202c95101b4efc70596b26a04e1e080a45278b" + ], + [ + "sha256", + "5aac7fcefb716a6be5aafdbd499e53f697d58dc186aee8285135a1b5151867d2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETHERWZY.AH", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/SYSTEM/GUI/ETHERWZY.AH", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1181, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "2d3b0594-c4b9-560c-a38e-36bed3971b95": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "44723fc05b8a397fbd97f207b7c8a532" + ], + [ + "sha1", + "98f0f8ed7a17b7994544d8eed99db5aa61a450ea" + ], + [ + "sha256", + "167c8c578c3aebe8d0a758bae638a5e8156cb462890266964be398410c11504c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "url.c", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/src/url.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 63682, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "2da8d368-0aab-5f92-b922-8ae58ef3815c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5baa8eec1fa52406402db59edfe1b314" + ], + [ + "sha1", + "c28555b33265f3091fa40745c5c9f7e752a5d041" + ], + [ + "sha256", + "513126a039074f3381040f71f7d6008c1a48a3ea385ead3ea933f7ba032b2f46" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "peachpuff.vim", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/LFNFILES.ZIP/COLORS/peachpuff.vim", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2733, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "2da93905-1154-56fc-a5c4-f9d94e7d3692": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "53339b661b3bebcef662ccedefff304b" + ], + [ + "sha1", + "5665f255b2979ce0acf752a439e9ba15e5b6545e" + ], + [ + "sha256", + "595502c3b286774d40d0abec8952c03ffb07ae94b4786ca4cb54edbc40eb862b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/en/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15882, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "2e2fd965-d74f-536a-8f7f-62d0d7f9fbf6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8837a20e4966d681e5aeb5cf5bfb402f" + ], + [ + "sha1", + "d6c19ebf9738d7c258a5b3e2ce5cd80e94520f11" + ], + [ + "sha256", + "3a7572e3a5d8189f946282cda1f96b618e3db4b773d09f6af5bf0632c764b977" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_12_content", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/page_12_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1331, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2ecc04c3-3276-5624-9cb3-d8516661b39e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1f48effdd014755d4345eac5667e92f8" + ], + [ + "sha1", + "7c3481e761253c4c43b550c05d70ff50ce459548" + ], + [ + "sha256", + "930368eb6c3347fcecf52a0061d321531eb77a8196a174b3f063eec8e81c6f35" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "faq._tx", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/SOURCE/FREEDOOM/SOURCES.ZIP/allegro/docs/faq._tx", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 21973, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2ed5ff38-e385-51d8-a72f-bbfaf9cd0885": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "d570557fd9473eaeecd036989010ba04" + ], + [ + "sha1", + "b936d45dc0d67f4642163e1f7dafdf6845dabb4f" + ], + [ + "sha256", + "4e56911f5805e6b0c6c5a4a22576c63643d1a989ef35312d31d0d27f05ca0b9f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/en/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15760, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "2f069edb-7610-51bb-9c46-269e9b21fcb1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "551b2eda59b529894fb56c37e262189c" + ], + [ + "sha1", + "a67bd12d8ff23b53a9b1f411d4e8487d02843c11" + ], + [ + "sha256", + "e1f925b37c26510ec0160cc7b3f3ef4bc04f8eab3ed64f679090cd5785334e07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1101", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1101", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 779, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2f44fa03-58bb-58ec-aedb-acf542af0668": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "98913aa2c2867cbb07870576631158fb" + ], + [ + "sha1", + "6c57ffeb0abda230ad289f5c0c9e50cfd60c2ddd" + ], + [ + "sha256", + "73ca51e0166630c9144f701c62f8b5c998a3fdc9fa27a5cce563560eef0c1a68" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WD.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WD.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 676036, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2f585e6c-3d84-59fe-9d84-bb6bf6e6878f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2add36bd2fe79f40ccd6eb1b4aa6ea1b" + ], + [ + "sha1", + "10f650065383232b115718ba7e27c4d7805d62fb" + ], + [ + "sha256", + "f1c26f1d0e49dd327382985b1815119453585ec1b90892787bed0b97bb6c5f7d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadult.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadult.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9834, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2f7b8e68-fd9e-5280-bf51-14f51114d07d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fa7459f2de08e810b6d9b5388082e39a" + ], + [ + "sha1", + "658efafdb486f65b6a89d334ef1c97e47845c614" + ], + [ + "sha256", + "64bff404ce4efbd572280398a131ed94aa4af848b11a7c591adf3a6a92f2f36b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "4e0f25b6-d614-4b09-8c8b-20d292aa2a14", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "MTHS19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MTHS19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 39936, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "2f830cf3-70ef-5a7b-afcf-4c6c09234852": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e67ca101cb7da702e82f12e23322f5fa" + ], + [ + "sha1", + "542d529ae4ea6055d995e087515e8b82b314a6c6" + ], + [ + "sha256", + "3bbf30b39f7940b742eaa3d91b5cb968b0676f852dc571bd459c50c0443fedf7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "freverb.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/freverb.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12001, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "2fb4a58b-5c47-5ee7-aaa7-8748cffe031a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3f3d4ba986a62f9b75dcfc3a7850353c" + ], + [ + "sha1", + "c2738cfc57cff8ca06eeba3f05c76859462522da" + ], + [ + "sha256", + "ebb7f2478749f5bb2adbcca99fd692c38644699982412fe37c7305bcd63052a7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "AUTHORS", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/AUTHORS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 32557, + "subtype": "None", + "type": "Text", + "version": "" + }, + "2fda8235-a1fd-501d-8e31-57063a06b9e7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "92a437158495839fca8d9899ebdbdf26" + ], + [ + "sha1", + "f0356f24438366d3af86590a0cd266924c023932" + ], + [ + "sha256", + "98b434c19ced6674703b18a58cc0491a7e17a2ff72ef2137845d2882f5793279" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PI_NETRW.TXT", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/DOC/PI_NETRW.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 158412, + "subtype": "None", + "type": "Text", + "version": "" + }, + "305c8851-4ddd-514f-a61f-16ed026a6cc6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8f939403d1c81e0e060fa37eb40df4f1" + ], + [ + "sha1", + "46ebc47889268a2727916981124fa723a5b549e1" + ], + [ + "sha256", + "c20ef40690e6d53fb8176c7100fb6847212cb5f828092ad034dc9eea89a7a118" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/cmenu/test2.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16627, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "3064e682-e64b-5c46-b750-079e58535b06": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "99d28a0de8b25dd49f0da12e43503578" + ], + [ + "sha1", + "a84f057767f5938400a1aca4c1c4967d8d163e45" + ], + [ + "sha256", + "4aead75dadaeae2549d21848b15b7a1b2e8fc5c753abe987b63cbbbd4c1fabf9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CABINFO.EXE", + "path": "FD13FULL.img/packages\\archiver\\cabext.zip/BIN/CABINFO.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 29257, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "3093f7e4-4265-5ca6-8ccb-05381ac75b2f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "3c5dffe8b00b7bcae05c5b9d1f8b5dee" + ], + [ + "sha1", + "4bf9547c14f2f39dee61ac6b7a4b774ea4e29e0d" + ], + [ + "sha256", + "94bf4826c8f077462f9d95612bafef1b87724fcb9177935c65647b53dc12a504" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SLIP.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/SLIP.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4547, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "30b0ecb6-8618-5b10-b56f-7b3594030ed2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "LNK", + "hashes": [ + [ + "md5", + "15cd5c7a34195dc916e5cff30e34ffcc" + ], + [ + "sha1", + "aa7a5e4bacce75e7797a794c3e2ecf0b4b367a75" + ], + [ + "sha256", + "3a6904090f135fd579935f75ad5e56bb033b7d8d8a87d2e36f056817e8a4fc76" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Uninst-PF.lnk", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/setup_install/win/Uninst-PF.lnk", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1525, + "subtype": "None", + "type": "Binary", + "version": "Generic" + }, + "30b36d91-7a54-5c69-99ac-185f69b3273e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0b46b2354970b1d71190e2df7b41fd78" + ], + [ + "sha1", + "91eee0542a6992ac0dd3f528f49500d4f0fb22c6" + ], + [ + "sha256", + "5ae6136f5ef392d6066f848c9e5a350d6c5fb259767ee9fea0936676810e0379" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ru.po", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/tvision/intl/ru.po", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14659, + "subtype": "None", + "type": "Text", + "version": "" + }, + "30bb9199-c373-53b7-9281-89144077831f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "187805b7f8bedd96e552f60bc946aa28" + ], + [ + "sha1", + "0970e8847a074f06041e4b4dcd3b10200956a1f4" + ], + [ + "sha256", + "1689506fcecd05189a0ec8ab1266fa1cc07aa85cca6d584849edb7a5ee641faa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/hu/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25806, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "31537a63-452f-593a-a44b-0f8a2a1ada94": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "28919bd268ae20cf8639642b5f1844ad" + ], + [ + "sha1", + "070234167c7e72164932d72de6b0dd602f282cfd" + ], + [ + "sha256", + "f16fd88bedfdeff5474efea76110d1b335553976a8fdf988052a6467775f9049" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.dll", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/lib/x64/user32.lib/USER32.dll", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 57, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "3176c0e3-0153-54b6-ac4e-429165ff46c2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "22f15767c976bb77427c5a026a17f6bd" + ], + [ + "sha1", + "73786b523ad58cf1e284c08667201b835ac68d46" + ], + [ + "sha256", + "82d16c55e5d3ac826f38c3f5458af3fac01ab9e70151db6a239f23e7b5ad8342" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "scpd386.exe", + "path": "FD13FULL.img/packages\\net\\sshdos.zip/NET/SSH/scpd386.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 158758, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "324d2c24-5cc0-52c3-9d48-44404a291c53": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "27154d35f4180a45bb7e3b32d314dedf" + ], + [ + "sha1", + "d71779ffc5e6a46834aec09796de88f013962e66" + ], + [ + "sha256", + "6a3e265e4dcdbbcb2954e374a57305134600aafba99f325e14d0856177d21a52" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "novell.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/novell.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2947, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "324de340-d9c3-509f-b77c-9f05d63f7581": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bb08f75e2dbcedec541d0015786a902a" + ], + [ + "sha1", + "79ef3ac979c55273890f903cd3735e318f9c107b" + ], + [ + "sha256", + "940fd56302cc2f88bf255464c3d2b3e9306d9fdbae7f6ff64e4a984e4dfd0d5e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "jpeg_enc.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libvo/jpeg_enc.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16622, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "32971431-b504-5230-9bce-54c14a0ff397": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "01d4c730293a0621a26c5e5b0ed005f6" + ], + [ + "sha1", + "046faafa49370b310c8238422ad13f6de4fd44d5" + ], + [ + "sha256", + "5b3a1e9a4aa05be2a6589ffaafdf3e5068f70e78d7735fcfa9d691203be84955" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "load669.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/load669.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5696, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "32a688ec-e03b-56b3-87dd-b6b1db246632": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f8632ea068a98ea4efb3053fb4e9e648" + ], + [ + "sha1", + "927ac68196eebb12cd0e7d2852caa2d11a261f2b" + ], + [ + "sha256", + "4ba3d483c044bac44228e7bc46c992248b4b1d3f4d235847cd0a7dbadbceae3b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXYTYPE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXYTYPE.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2622, + "subtype": "None", + "type": "Text", + "version": "" + }, + "330f8066-58d2-5768-8fea-504c16261726": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e735630fc0536e9fdb8813534714eb73" + ], + [ + "sha1", + "6847b7655931c64f25f90cd44cdcaac92cbe677d" + ], + [ + "sha256", + "2e1e2a96469890c6a67df74fb1250f673c7c10ae1631171e4cf6a495edb1001c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mk-ca-bundle.pl", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/lib/mk-ca-bundle.pl", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 20942, + "subtype": "Perl", + "type": "Text", + "version": "" + }, + "3317d396-446f-57e4-845b-49a5f7e67b53": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f23227f7af30b9ae98acd800e292e375" + ], + [ + "sha1", + "10435c469c349be14bc5e33852b55b18cc11045e" + ], + [ + "sha256", + "31131dd08f084102b35aa38a00c3151fcf2eb88e845045fb94359b55a1a2da0b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1237", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1237", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5289, + "subtype": "None", + "type": "Text", + "version": "" + }, + "332231a3-2944-5f47-b195-7ce95c4a26c7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b248479c96de0615a48ef60db9acdf89" + ], + [ + "sha1", + "b4aa1c0d77e3946c1bd128b24c4be5a4d344d90c" + ], + [ + "sha256", + "81849ca194258c4dbca9beb4cc77351942384c3cd85b152ba2d1b40a757e074c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "82802ab.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/82802ab.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5420, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "333d3c03-fc5f-56af-b743-cfad3321fbf9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PNG", + "hashes": [ + [ + "md5", + "0a51def0a6165e78caf8733e48c32f84" + ], + [ + "sha1", + "7ec1a77c72d842fe6ceace20b36ef80649260095" + ], + [ + "sha256", + "00b53c3bbd0641454521b982bc6f6bcfda7c91f1874cefb3a9bac37d80a1a269" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "xd3n2c08.png", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/stb/tests/pngsuite/corrupt/xd3n2c08.png", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 145, + "subtype": "None", + "type": "Image", + "version": "Generic" + }, + "339be60f-146f-5305-a376-0ffa0d6cc85f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2dc7264e244d066a569970a6f7b3d193" + ], + [ + "sha1", + "7e0d158f26eb5898615a1c39fad8de9c04089ebc" + ], + [ + "sha256", + "2da09626cb4d24ad45d89286c2ff0875cbdccbcdc2865db3243cbec4ae7da8f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/ru/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 21434, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "33ce70e6-9fef-5dee-aa9b-d6d68e7e250c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "f45be400dea1a92dc4758818b3225e6b" + ], + [ + "sha1", + "9af819505df1b07b5df130a99b4592e3cadcd751" + ], + [ + "sha256", + "e113e62d19b05c0a9fe5199c227dd5b67d452ef8954cbe21382e2388f2153a54" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost0h-sv.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1678, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "3443017c-63a1-516f-a644-6d9d3a53f7c3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b2395dab96aca3defdb7a4d8fae3f342" + ], + [ + "sha1", + "a52ffc630f7be22875839fdea5f8d62b84a79174" + ], + [ + "sha256", + "d21447d23e95e78b6382028655780b7f454a2015cf7562518d10975c352e2ab2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "menc-feat-dvd-mpeg4.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/es/menc-feat-dvd-mpeg4.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13622, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "348dc476-7821-5424-bcac-ff917ec88960": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "192b6349e46f23284bd543196b8b45bf" + ], + [ + "sha1", + "2d9bb46ba8b851ff6aef73792e9d987fe7e77be7" + ], + [ + "sha256", + "a147cd6b854ff4bfef8014587abb9c69f9952ba15b9bce346c5d1dca7b56e666" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "complex.c32", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/cmenu/complex.c32", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 37980, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "34e8658f-b93c-501b-a4ab-88f18ca146fd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "46b910e3c60f0af2b08e91ea21eda67b" + ], + [ + "sha1", + "df7d08f89ccd6fc9614668ece293e7eeea4c76eb" + ], + [ + "sha256", + "7398234a8a55d7a9698d20f2c291a2fd463a48cf85027d89870d91e57f656e3c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "uri_test.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/tests/uri_test.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3519, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "34ea9303-40bc-5aef-98db-9cfa28694df8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "43e0586bafc4668c5bcbfdfbf0adc5ff" + ], + [ + "sha1", + "ec2c312b6e518fdeb255ba1a45942e9e0ac9a44b" + ], + [ + "sha256", + "1f6eff15ff2c41908403bbea4341c4bfeaaaf1db8cf76d8d3f09a2b38a64bee3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devswss.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devswss.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 12046, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "35045020-b2b2-5c93-8c0d-3f21c29c9f1d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "dbea2e78c9c7a56e0b5b42d5b4f2d9f9" + ], + [ + "sha1", + "63d7c3b9212d6b5d69e231105ed84092f3889fc4" + ], + [ + "sha256", + "02f341f4eae13b35262d9969893ca361ee3d61773e6c45ea3301896153b6e36a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/en/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 39247, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "3539a030-8140-59e1-b877-a2fceebcce4d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a3e627eea32a635483b0e5ebbff6a7c2" + ], + [ + "sha1", + "ca76a52a56083069ea98f6a3ad0d7f8df8dc4291" + ], + [ + "sha256", + "5634b99bc2bff06236e99f419180130b2191f47b878f34c6c6227f8957d950be" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/pl/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16318, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "35a0def9-bd78-5683-9f50-88909f69ff9c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "f0ff9104daa783e93a9268ff9def55bb" + ], + [ + "sha1", + "392af16479bc44a45fd09cdfac99e7e6751ec8a1" + ], + [ + "sha256", + "dc737eca0f2fd1b615d27878b1eda1f01af50b203fab88482d8a7de158b6631b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "pack_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/pack_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6042, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "368c783a-5eb0-5937-b7ef-cbc0f57880b6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3c62a2de395638898bcaf3d741890873" + ], + [ + "sha1", + "249f82bbc65707269ed4e67ce61c459fb4ada41c" + ], + [ + "sha256", + "1506683fa8b730471ed88b0f7bfcb24fb11d57d3a1261843b2914b23c7d8f7d9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "nsvdec.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavformat/nsvdec.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24683, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "36c11fb4-504b-509f-a889-2bb8d5a8d07f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "381ad01003ea9378f459c7420e0a88c2" + ], + [ + "sha1", + "b3d237b48aa251a3c3c5f2484d8203fa086cba32" + ], + [ + "sha256", + "48198fd24fb2a156927d4d760fd3efb9fcaf4ec44a01a741c6385cf9975eeae5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "shsurdrv.exe", + "path": "FD13FULL.img/freedos\\bin\\shsurdrv.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24933, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "36d04f53-cb20-5c6e-8efb-d76830a52d24": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "38ef48cba76d0ab69b675099767d12d8" + ], + [ + "sha1", + "e11c905cce811b79abea08aeb3bf343ca88169c7" + ], + [ + "sha256", + "2831c79dc3aaebcb8877de8aa5e849295c4850847e747cd2a9459f2c46415bf3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/pl/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5653, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "36dd316d-823e-5d05-9672-9c70cdb52b0f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "3bcd8f5285cee2e349c35e5c5a79de97" + ], + [ + "sha1", + "f8a67b9f0600f11ab8fc05d42afdfe97bb1035a7" + ], + [ + "sha256", + "6f2181029d4a9bbf1f8f219d9830a6dc65b77daa2b6133feff66de242d40e20d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "initdisk.c", + "path": "FD13FULL.img/packages\\base\\kernel.zip/SOURCE/KERNEL/SOURCES.ZIP/kernel/initdisk.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 47495, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "3701ecb3-1e79-5999-8c81-66a7dbf9378b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "52c83fc2004486be4ded0c0f5016d65b" + ], + [ + "sha1", + "cde0b4fb06a44e9d5d34a828c52ec446a7e585df" + ], + [ + "sha256", + "4fd00e8631fb96399f3e8045ad24e770a512dfb83d4ca52f1292aed341488d75" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mipsel.r3000-linux.elf-fold.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/mipsel.r3000-linux.elf-fold.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7458, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "3767d012-f2f7-59b6-b81a-6f658bbca7ff": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d14f7c6a7aa07d5eb2c77de77dda9b30" + ], + [ + "sha1", + "bd6fa3b3c9d97df096dcd750017b9072a654075b" + ], + [ + "sha256", + "5ee460ac2c34f836dabe8c08e1fea9d14cb34f877954795815634578bac377ff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "keytest.lnx", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/samples/keytest.lnx", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 24521, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "377a47b1-86ef-5a46-91a0-a3562e0fd2bc": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b8d978753921c88b55a5b862158b2ca0" + ], + [ + "sha1", + "7dcb94965b564ccb3351d7478e7002169e8e0e9d" + ], + [ + "sha256", + "12e7e9279a49e65ceeb02799d99f9c07d7618199eb9db890e6d26746338e2005" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "HTGET.CPP", + "path": "FD13FULL.img/packages\\net\\mtcp.zip/SOURCE/MTCP/SOURCES.ZIP/APPS/HTGET/HTGET.CPP", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 37246, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "3790deda-0ead-5bbb-8c91-38819b2f5b9d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b2a20b10fe856abd628cee872b599fc7" + ], + [ + "sha1", + "c76cf9b4d4e0d675d7f94edc1a1db58c0438927d" + ], + [ + "sha256", + "5baf9e07488ed6a1f3cc9f3d7511b3634ee7e1502add50e573c101186daef0e9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gtest.cc", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googletest/src/gtest.cc", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 223305, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "37c38e92-8827-5139-9178-0eb1a413c6ae": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "f2e0ed6292b8f528041dac6b7f0fdd6a" + ], + [ + "sha1", + "21ab181dbd91cc23ce6b45a35dec5ba6342d5cf0" + ], + [ + "sha256", + "74ce1a52a8e946740220a7b5b27c92e856f137c2ea1b6f04d6b2c8ebdb19f097" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-firstSAN-sv.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1674, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "380d94f0-8beb-56a3-9605-a74f43ad35d0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "dfcac4114aa67b4c762515823d0174a3" + ], + [ + "sha1", + "3494c2b48c63580f58d79baf60a9fb4470a2a7a1" + ], + [ + "sha256", + "7dfdf954fd87e01ea09dc2e929ac66a8d7d7df9948a0a17040783a89fc9ea876" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "doc.htm", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/doc.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 504, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "3848f33d-4f37-54b7-8fb0-41df20102cda": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "7za.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za433_7zip_lzma.7z/7za433_7zip_lzma/bin/7za.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "384dd51e-f883-532e-8535-c4a61dff7549": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "7cc9230746e1bd895732aaef62d691cc" + ], + [ + "sha1", + "acd235e8aeeb60964f37d1819c6a579f67ef5b0d" + ], + [ + "sha256", + "49dcd06f4a455b336ae1789dee06d29cc61f24a0d6f42d973cdf0755f0ab9304" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ndis_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/ndis_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16746, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "38726006-a8db-591d-b707-5b1057284d02": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "97a7a167033caaf7a7db021967f2bfd2" + ], + [ + "sha1", + "7091550572b916e6689a94346b5f1d10596021b4" + ], + [ + "sha256", + "5326359e0cdab82072dd4ad0c964ec71ea702e318417b4a4153d714dfe4563d9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "XKB.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/XKB.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3554, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "38855c21-cec0-547f-82d2-1765f3e1f85f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PDF", + "hashes": [ + [ + "md5", + "2675842f2e717df4582be54fde1473b9" + ], + [ + "sha1", + "e46f6fde7f179d85a7c5aeb60a368128e1410a9e" + ], + [ + "sha256", + "7044652dd951fdbd8d283d33e08de295cbc7a08e4b524a983011981324edabd3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "manual.pdf", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/GAMES/FREEDOOM/DOCS/manual.pdf", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1749523, + "subtype": "None", + "type": "Document", + "version": "Generic" + }, + "38dc7c23-8a72-52f1-ae7f-833d4bfdb8cf": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5f976eeff499332002160cef45c6d003" + ], + [ + "sha1", + "00f5db0571298f33ed9429e8e87096e69290d980" + ], + [ + "sha256", + "49925cba0b1a3c955c043e318a63e36ef36fd5a5afd6cc4d402c7f2f6e0c5943" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "print.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/print.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 51259, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "38ef623f-bc2b-54b4-9b15-089897bd117e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d9e45d918ac97f19e8e29e567ebcfce2" + ], + [ + "sha1", + "107128d2dde9c0a3bb3459bff72db3488d30fcab" + ], + [ + "sha256", + "8c159a30e5aa0a97c33da2e2a28ca7f08d6d0b76f6a438819cbd1daf1802c1f8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "madppc", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADPPC.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MADPPC.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 50176, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "39123f51-d8a8-5ca8-9bcd-f3f06d861a62": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8dd32471b8bb61497df59a63c364c26d" + ], + [ + "sha1", + "4c6816d17fc3aa3dd77c65781e6ff54c7bc25ece" + ], + [ + "sha256", + "bbe843c5d6ff98de5bfb5e2ebc44be91ff69bd91ede0deaaf9eece062add1a39" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-zh_CN.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-zh_CN.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 128915, + "subtype": "None", + "type": "Text", + "version": "" + }, + "391fd219-eb0b-5787-8674-7f8d0f15ec19": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "02704a7b41cce3fd383512c26f857439" + ], + [ + "sha1", + "a03ad18d4c59cd9f09dc48f5b16e56cb1ba6ae9b" + ], + [ + "sha256", + "10719836edd196d8a9c8eda6424369836049fdaece41a0652e051891a63448a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETHERWZN.AH", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/SYSTEM/GUI/ETHERWZN.AH", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1148, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "39d99d6e-f48b-52b5-9033-da247bca071e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e13376f3e6a5fbc517c7fa42871f63cd" + ], + [ + "sha1", + "48d4f5f6d708ce084129410fe7e846e07fe66350" + ], + [ + "sha256", + "561b3c35318928fe6003f084eef081e4476f8c230f673e1453119607800a6fd5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "msclient.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/msclient.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7942, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "39ff4183-15f3-5a74-aa93-25d1d3133182": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0e3cd5f7cb8e52310f2072e0259cc68f" + ], + [ + "sha1", + "c6bf50350e0afaf6627d8a72440a6fa487e021cb" + ], + [ + "sha256", + "683d87373aeaf5b4eb6ddc62ecc4fed7b5826ce6f66190ad5f5a0d5d6fe4ecc9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "uri.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/include/gpxe/uri.h", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5000, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "3ae8e855-2c2f-5576-bb46-935d4a9bbc4e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "c4df34644518818346ec52c421d7d6b7" + ], + [ + "sha1", + "49ed4d87089cd0380a8c4894ad06cbeccf72ec24" + ], + [ + "sha256", + "fad43b17e990de83fa2b8e9414ec9689dbdf0711ca01f8963bb74960379b9256" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.HTM", + "path": "FD13FULL.img/packages\\edit\\elvis.zip/EDIT/ELVIS/README.HTM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18837, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "3b123b0c-c041-5f07-9e88-e0c576e98a6b": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "91088f71cefba7e0ad4bba69612834b4" + ], + [ + "sha1", + "e555c65703f51fb58cd7996755e298479d5ee7ce" + ], + [ + "sha256", + "b406a3935f913c92c70e9ac88cdc2057788e658b7beede5f694caa1ad28b3fb5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "stream_3", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/stream_3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8922, + "subtype": "None", + "type": "Text", + "version": "" + }, + "3b375a00-99c7-588d-b32a-09e3e6743741": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8a6ae8389c00022e4184a0daa842894b" + ], + [ + "sha1", + "bfee675dbd0bc867ca1963150f88859098b2a0a3" + ], + [ + "sha256", + "12215042acb5f3b55deb4848d1a68f121aa0cf89a367bf6edccc164e763492e7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ot_tcpip.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/ot_tcpip.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3352, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "3b45694e-cbd0-5e01-89e7-8783dc65e881": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "51e9ab44457ceaec56f048b4f282021c" + ], + [ + "sha1", + "da089336e39642fef7883184a1a5fab3bb347367" + ], + [ + "sha256", + "a395855d4b9047fb6d707ee5670f111604d14c19e508b4babf367fc2105da595" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cook_book.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googlemock/docs/cook_book.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 143537, + "subtype": "None", + "type": "Text", + "version": "" + }, + "3bbbd236-85e2-5a7a-94f2-13b336c31cde": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "0d97b20a0481f3e83e3df6cdeff82749" + ], + [ + "sha1", + "20513d8b3eb2d26d2e9487d756519163c17ab70c" + ], + [ + "sha256", + "9f396b512edb9f2e3bb306978b2541015e46a7a85df0144e3b48590c8ec45725" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost.nn-sv.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1192, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "3d860369-4045-5a1a-91d1-9558243893ca": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bd9d92e234a4f836d17c4a97246e5c67" + ], + [ + "sha1", + "9b9debbbf1cb78b78f30e68ee310d29a675c6c9e" + ], + [ + "sha256", + "c0eeaff4c230fcc43a4710f8898a994c37169c04017b1e7f23a7a1acc047eb17" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "IDE2MAKE.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/IDE2MAKE.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 138912, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "3df0ed67-28be-58bc-adc0-b1ef029f0154": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4aa5a83645dd6827cd51f3374d85fd83" + ], + [ + "sha1", + "9c096f74e151097fd7dee84fdc0068c091b3dce2" + ], + [ + "sha256", + "075d21ee4c5728918e5dce88aef6998431f4a385806f261d8c84611a8b0cee8e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "copi.funcs", + "path": "FD13FULL.img/packages\\util\\dialog.zip/SOURCE/DIALOG/SOURCES.ZIP/samples/copifuncs/copi.funcs", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 36564, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "3e29104d-824a-5371-a1ad-112560079a48": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3b936cb86e3044cf14759ea175b0d7ba" + ], + [ + "sha1", + "ec86d58a75a351d513b3aee1190a19389775dc13" + ], + [ + "sha256", + "933553040430fd0239df50264ad6f8318d54e90472438f574bee483b4d7d6514" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/DOC/SSH2DOS/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7993, + "subtype": "None", + "type": "Text", + "version": "" + }, + "3e536c0f-107c-5929-b3c4-c085b27142f9": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1e92c262c7588520e0c4a16c596d3280" + ], + [ + "sha1", + "77d4ae149496d9aeb5e97a9bc554a2fd2bf71c38" + ], + [ + "sha256", + "e1d97ed3efd3ff175b7feb4ca245ef5f4f50423f9db99591d84232fedaf2cbc0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vo_zr.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libvo/vo_zr.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25175, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "3fabd6a6-1887-58cc-9de0-41662fe7c907": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "65cd5d8ca96326455bf38bb7d1542c0f" + ], + [ + "sha1", + "f32b8bf8738c16ca2bb4d30564981756ceb44a66" + ], + [ + "sha256", + "bc8ffd6a863a5b5b97077bfde985d116b8f38faeca25851c4302599b4fbf0f9d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "bigint.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/crypto/axtls/bigint.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 37287, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "405c5f39-2cae-53a5-adf1-4ba0af7e979d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "044513860bd42c4a1feba44d685e9c45" + ], + [ + "sha1", + "474c366233f2029b66c7b24e8d0669446ad0ba0a" + ], + [ + "sha256", + "5534e4d739dcf8b0f904c8bdd49d0245bd50153daf4aaf776921681d6a9345d7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "codeview", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CODEVIEW.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/CODEVIEW.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 49152, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "405fb8b9-75c7-5068-9785-f1b0eb8b2208": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a1902769b6f31014e29eb29b3931baf2" + ], + [ + "sha1", + "e06f02355de9090dad692089bfd934fd859053fb" + ], + [ + "sha256", + "a90bf222fb4d551da26e40f67cad0b19a2ada4b8d461e33845db49f557e6de34" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "linkw.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/linkw.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 308224, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "40fc1e81-e2d0-5cb7-b5fc-5a9b5e04ae1c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0f0214e3b2c7b08e21634b32cfab0747" + ], + [ + "sha1", + "7316a08afcb1e46ac3642c8edae2b3574bbd1a5c" + ], + [ + "sha256", + "87aa4d7f29756828d85f4ac4f2905c8c0cf158cd08dbd28f74077abae2a5f386" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/de/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 45884, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "41f03102-e286-5eee-bcbd-e220023a3202": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "508d404b8b2cd724052a7b566989bc7d" + ], + [ + "sha1", + "7e949e0098f783a4d7056ca85692c1c2a0a13828" + ], + [ + "sha256", + "1cf43cf299acbef5a045e5ddcd49819a470ae00b11d19802137906c256e327ab" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/fr/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 94845, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "41f30b86-3d40-59b8-b8d3-d697ffe470eb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c26f2e34d22ef39ea0df87f8c2cbac80" + ], + [ + "sha1", + "5699607357841f4b35cc416d356e641b7c55c33e" + ], + [ + "sha256", + "d5b0b550fd1f20cb348071f79ff6896a5c5f9fa2d7ba4c67a25df238acbb4c23" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "par", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PAR.TRP", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINL/PAR.TRP", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 14848, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "4203d92d-8485-574c-9c0c-af648d8698c8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7664286738c170f184065b96e896b7f5" + ], + [ + "sha1", + "16969bc3847e6735cd23377db19dc843a4dc5694" + ], + [ + "sha256", + "fd3bb54592453e70c986df42a9c66b6c9419983856e9c1905767df037b328484" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "New_subdir", + "path": "FD13FULL.img/packages\\devel\\bcc.zip/SOURCE/BCC/SOURCES.ZIP/libc/New_subdir", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1578, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "42463d49-5f20-579d-90cf-6bff60d7b6d1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cfb7caa9002bd213430d03b97a4acc60" + ], + [ + "sha1", + "623e79a5a6b297445e7aa6a18eb6c5c6b7a3af58" + ], + [ + "sha256", + "c2fa7da9635eb4ff663c94193d410d300760d4f5deffae1dc894ada7b21e3295" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.5", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/changes2.5", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 93252, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4246f9bd-8aec-55bc-9786-ec931ae3976a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "677a0b8e9b956520649f9dedaec51eaf" + ], + [ + "sha1", + "835cab8cde699bcbb7265d08045d35d0e0df3b5c" + ], + [ + "sha256", + "a84f833cf4d644cab565add9f8846d2c9fdb92b21c5f67903bff72d7c0795979" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "zip.exe", + "path": "FD13FULL.img/freedos\\bin\\zip.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 93048, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "42480e2c-5cad-5f1e-b85e-9c123201335d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "5ed7b4e8c94337a4728d445c20a45f42" + ], + [ + "sha1", + "941b34005edc30e4bac94127c9d6f6f53e2ccf19" + ], + [ + "sha256", + "7bcb606215c3d8149362d63d464b41a768f1dfcc281efd23ee865f1da85862cc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ndis_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/ndis_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16906, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "426f192b-6c63-5e31-a451-28fc0a41f679": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "88179fdbbc2538c008f134de58e49a45" + ], + [ + "sha1", + "ad02b44f0fdcc2a4aab779bdf4300270871c00f5" + ], + [ + "sha256", + "9396f4a757c76fcc873a0c4a186c1cdeb02d3cd3c33a1202f5bb2e31142e5c06" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0037.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0037.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 45090, + "subtype": "None", + "type": "Text", + "version": "" + }, + "43d66f8c-5f57-50b6-9524-26c4e7236bd2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "613eb48e636d0d034509559380b356bc" + ], + [ + "sha1", + "861a523d5346f4664c10d540bdaa5b29868d075d" + ], + [ + "sha256", + "e40c83b0b207ed041a5cf84672bdb1517ae08fd3abf0162cf66c94706fd8225b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "readme", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/readme", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6915, + "subtype": "None", + "type": "Text", + "version": "" + }, + "440519fe-9927-5101-8909-0d0576b92e76": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2ca8eae289e5c2a149eb7b41ddb4071b" + ], + [ + "sha1", + "3bcd3025a76d4209964084c17fa77ba411f3987d" + ], + [ + "sha256", + "f55f76c0177d916e6145ead65f47c8cb7ddf862bce25d7a72d31a7d963369dd7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpnone.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpnone.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5261, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "441f9d31-61e7-556f-97f9-a6d0586bf1be": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "74e53ba0f0513d7697cc9814fc58b384" + ], + [ + "sha1", + "6c5b4a2d8bfd4772b4ed7a43dbec0b0f015c416a" + ], + [ + "sha256", + "2dd19803d3d3873d5537070a3174b75190a36e1624bc425a865157681e471466" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3com.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/3com.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2355, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "451ead08-b57c-5889-982c-e778a3a3ae22": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7c01a800bae7347373be8e34b78d179a" + ], + [ + "sha1", + "c84ebdab5e9e42e37da83390111d71f916821d76" + ], + [ + "sha256", + "7a3d28de759f673e9dfb30360fb48613e44b2c46f9f0b4ca2264aeacd4864def" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WCC386.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WCC386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 870724, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "45aa0d9a-37fe-5744-aec8-122f6550a704": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "290a16cccdb12a7145bc36ab763ccc8e" + ], + [ + "sha1", + "9a2a20c80d225723c6317db883e9fa3295066357" + ], + [ + "sha256", + "003e639fb70d16c69fc20ba11c9c6c090a3c5066fccb31136a9fa9b07d916e66" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "15e5e5da-4ee2-4d2c-b85c-a9f5f563d705", + "23ae9655-e2c7-4ac8-8466-c260ece0a3ce", + "4060af51-2f85-4992-a730-4f21d71de7a8", + "5d159cd0-d20e-4e13-bc23-4fd631685f6f", + "790e169e-e6d9-4134-a0fc-a7b5c65798b8", + "a8ff1e7a-366a-48a1-9ec8-f971e9a4ca21", + "b1a13169-30fe-4ed1-a1fd-c660501084ee", + "b7bc22b1-3361-46c2-87b7-080809ea27e5" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FONT2BI", + "path": "FD13FULL.img/packages\\util\\ansimat.zip/SOURCE/ANSIMAT/SOURCES.ZIP/FONT-EDI/FONT2BI", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 32108, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "460d96ce-2efb-5875-b069-337eb5bf3931": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a7def61b0b10d4e77a756197b35c73b7" + ], + [ + "sha1", + "39f14c27b5fdec715960b0a4c530a3115c404c05" + ], + [ + "sha256", + "ea9e4be05549cab12b80ed468e4a4d15b839b182e03bd6c003aac085ca2ea032" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "sample.wgetrc", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/doc/sample.wgetrc", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4224, + "subtype": "None", + "type": "Text", + "version": "" + }, + "463f8c73-e2ea-5a89-8012-8ad3577a4366": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "26f50d89e059e2db22de534b321fbe9c" + ], + [ + "sha1", + "76248e7f9f7d4888b8c3c1a51797aa1f3d8969e6" + ], + [ + "sha256", + "5fdccc165c8bc1fd49fa68cc6781f525ca4d1ec9611edda7c67f8084eb3325f8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "msclient.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/msclient.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8545, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "46f8f483-03ca-5b60-82a0-0c299ae0552a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "29ebcc95f5980368cb4e0a379ea4501a" + ], + [ + "sha1", + "8a49a9c3578b1d1c7c155e5bcc8b34c9fbc617a9" + ], + [ + "sha256", + "d3db702172902f5c17bf16b2d90c8b2f11cc737f42b98fe771be1400648e8692" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0037r3.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0037r3.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 45921, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4803a412-a723-570e-be2b-2391069df634": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ba944dd7cfd4336637cb6fd9c1e6e147" + ], + [ + "sha1", + "5452841e1e617aef43faf2a866a70be8ffdf9a73" + ], + [ + "sha256", + "d9ee8114ab81ec53adfcb028bea7708df4759b324ba74be83420b6c3de826c7e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "madaxp", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADAXP.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MADAXP.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 25600, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "48a8e193-1f69-5c3f-ad3b-db435ce73caf": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b61138841ea88ab4c30ec5c370e4bab4" + ], + [ + "sha1", + "395d79f887ba998068bcd5c0ba10a4b8764c53ce" + ], + [ + "sha256", + "b551c14fdf65e656a477e5770d7ff31913fb4287c64f940c064938df2b56202f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLINFO_PROXYAUTH_AVAIL.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2666, + "subtype": "None", + "type": "Text", + "version": "" + }, + "493b9274-6bf0-5182-b6d8-bec45d8bf736": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2c86225f1a0cf3508b10772314fd83de" + ], + [ + "sha1", + "501493a3ee40ff39132bea8059d48a837418f013" + ], + [ + "sha256", + "652bb6bfe82705ca48309a407874b2bb5946c821e6d86bfa5d1784256aed4e72" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CRAWL.announce", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/docs/CRAWL.announce", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5980, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4953d14a-ce2a-5bdb-b705-cbc1bd665e6b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "356bef5cf5c8cb19f4204050ec43ae6f" + ], + [ + "sha1", + "bf1b0886928a24a638e8b1429c26ae9c20f26a8a" + ], + [ + "sha256", + "daf546ce72787a2c82a2825d551478f180a04262a303c184fb0200c9f2abcfc3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "APACHE.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/APACHE.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15351, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "499273bb-fb5d-5a61-837c-71a432ac0884": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cee62504136d04d1e14a0cc5e5b7334f" + ], + [ + "sha1", + "cac482a09b8fa9bcc416ca6c1b94aeb512f81457" + ], + [ + "sha256", + "7310370d91451ba42d18696f9ee08102db5c6a2eba151454bfdd184a5aa341ec" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1134", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1134", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1005, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4a1a0ccf-a640-5bbb-8914-f9b265642a62": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c27eeccd6551d66437076311fd9161d5" + ], + [ + "sha1", + "4af0100ee30ce7776ce218c168c5b90078b1b229" + ], + [ + "sha256", + "5125c87e5c39a079b738d55683af3a1f5a76b2a6a71868971f924744a0e5134b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_KEYPASSWD.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_KEYPASSWD.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2434, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4a367766-5323-5bb0-a343-819d511c0a32": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2faebe6098c51db50fb44503ef22606b" + ], + [ + "sha1", + "47b90c6158ab81b66cff0381f5bbe4eae422ab57" + ], + [ + "sha256", + "7612d44fd499778c695ce52bb9f0ee7a0f1260d7b2a29048947bf53e05d56739" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/en/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5326, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "4abd38ef-7e8b-59a5-a7c1-c479cf70d678": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "070bbe2cf456841c601cf9d3576b46d5" + ], + [ + "sha1", + "6b3df9940d10bc3000e5da1dd8dd3de14e0254dc" + ], + [ + "sha256", + "b41a72b05ab3c79f94353f863f7f95bd6bc6967fb9277d73be868fe016179799" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/zh_CN/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15908, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "4b24d125-a66f-5947-a7e1-2a9ecdffed81": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b7a05c0dc63dba11e263f7e2a5c60b99" + ], + [ + "sha1", + "9743f7d67a46623431d8ee2c1f171bbeda32a1ff" + ], + [ + "sha256", + "7df59fa65a535d04c2299d04f9ce89f7a61823bf86bd18f2a96ff7b5eaca6a1e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WDIO.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINP/DLL/WDIO.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6360, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "4b457731-3785-541d-b350-e6daee9c6156": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bff9065e679d3a0ca9081ccd3b1d6693" + ], + [ + "sha1", + "7fa57127b2e24986c2e3f678f5eb7015ecc34110" + ], + [ + "sha256", + "d937202cba8ed4f6323680f6707cf3e2c643c22154e51775db5c6b096b82425c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcrar.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcrar.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5894, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "4b4ca1db-fc01-5b24-aa54-d2cfefa2801a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "b6cd5897b0d73e0c0bb69a440b7a1407" + ], + [ + "sha1", + "79bfb73286c947d347b92cf86212c5a4943c04bc" + ], + [ + "sha256", + "131d0ac12305d623d1582481521833974f4e508c929cfeebbdfd5460f08f520e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-firstSAN-sv.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-firstSAN-sv.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1675, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "4b62b8f0-f017-560c-b46d-8f13545be45c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3b936cb86e3044cf14759ea175b0d7ba" + ], + [ + "sha1", + "ec86d58a75a351d513b3aee1190a19389775dc13" + ], + [ + "sha256", + "933553040430fd0239df50264ad6f8318d54e90472438f574bee483b4d7d6514" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/SOURCE/SSH2DOS/SOURCES.ZIP/DOCS/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7993, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4b6a51bb-f817-5e4a-94c1-8bbf0ccfc95a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0558798090e1db127dae5c9233e3e4eb" + ], + [ + "sha1", + "cc2c9177dc350f887ca42554f103ef4bd9aa631c" + ], + [ + "sha256", + "6ab8e29842673b0dd9a35e523fd3698079c971bf97d92ff01c3173f2cff2141f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "index.cpp", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/src/test/index.cpp", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6546, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "4bae3168-c9f6-54b4-837d-a66d77742f78": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c2b916ca89b11bc683e1dcac8391f327" + ], + [ + "sha1", + "1bfbb159453223e790f3d937a69b58c68b4ebd02" + ], + [ + "sha256", + "d632da13a1e0165ef6a90b7fb7d5540a4a9778b09a329300ec763abd20a6d4d8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "complex.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/cmenu/complex.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13613, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "4bc03b31-d21a-5f4d-a402-af69e42adeac": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2dc7264e244d066a569970a6f7b3d193" + ], + [ + "sha1", + "7e0d158f26eb5898615a1c39fad8de9c04089ebc" + ], + [ + "sha256", + "2da09626cb4d24ad45d89286c2ff0875cbdccbcdc2865db3243cbec4ae7da8f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/ru/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 21434, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "4c1c5a1e-0cd4-53ba-8987-658317893741": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7bf3c5b52a333deabe9eee22fc1de0a4" + ], + [ + "sha1", + "085642951a6db6397b936dcfb4d402cc8b3b7252" + ], + [ + "sha256", + "0377077dbdc6c50a344d662915bb9b6e1930bd320c228893dc678569c6d1c7aa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2081", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2081", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1346, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4c98daa7-ccfd-5f3c-9441-1b025b9da333": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "3b4aa523d0870b3cb1ba5b12555f1e42" + ], + [ + "sha1", + "71d6ec53406840b227b0d9966dcd85d55359dcbb" + ], + [ + "sha256", + "2250b474adac945b1820a449147145897f6ee1a1157bc51653f03d5328060639" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Lynx_users_guide.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/help/Lynx_users_guide.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 211285, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "4c9ba405-d484-5b80-bfec-1527e93df2bc": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "3672065504c507c02d6ef0e0765eb5b0" + ], + [ + "sha1", + "ec6f048d93fd50f0088a60f9b05165271b6ef748" + ], + [ + "sha256", + "c81433d92cde72d0344b71346b0b9d40379a900c3da850f298c9143571967585" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGES.TXT", + "path": "FD13FULL.img/packages\\util\\pdtree.zip/SOURCE/PDTREE/SOURCES.ZIP/CHANGES.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9258, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4cb69424-cb07-5748-8c1a-0139252081a4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9062c07e758fed74eb3b9d845e31d621" + ], + [ + "sha1", + "c56dd3a4c171dc111220eb0b871a40ff110f5967" + ], + [ + "sha256", + "cde1d6e61c414519c681cb59f84222f10ea1d63a070df67b3b3cadc5081c7253" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "madx86", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADX86.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MADX86.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 116736, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "4ccb0d14-2554-5dbb-8a1a-9378adbb8652": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c6ce8fdfbc21ce6d339a12f393989f1c" + ], + [ + "sha1", + "74cce7886f18a61958817c2792e061a9486d42f1" + ], + [ + "sha256", + "085e3c2add7eff4b9c8ad4a909a0247ad4427f644abc6a878d14b10c6dc7dfd3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "config.h", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/src/config.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8422, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "4ce31491-1dac-524a-ae9e-5243f7a87509": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9062324f2f8fdfbde072660964084fca" + ], + [ + "sha1", + "5c12ec38f3c6cb135e6858cae4ed4e199279c92e" + ], + [ + "sha256", + "11e268b2c60f2ec041c1e56f16c181355c67f7283eef6a9d53ad963894585c7e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arclha.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arclha.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5907, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "4cee786d-56d4-58c4-b02f-6901b1a3acf4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4fa968cd44679c3b49852ff8178d66f2" + ], + [ + "sha1", + "ca7b34767238fe046206de0c22e9df58cb71fda7" + ], + [ + "sha256", + "eccbc5923bcf6e0db8b6bbe256843ffae80d7260680812d96bba015094b15af2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/cs/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16291, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "4d8c80ae-ada8-5c20-8286-96ef4728c1cc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "254cd3509eac10cadd562cc091489589" + ], + [ + "sha1", + "33e1939ee6411d052680e96ac969f8dab8a9d1b7" + ], + [ + "sha256", + "c20f60a692f1543f7770cc5741d3ed5370fbee6f9ddc242b930be1a4fe365eae" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ibft.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/arch/i386/interface/pcbios/ibft.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 12863, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UPX", + "hashes": [ + [ + "md5", + "d049fe57b2ca5a7f4821457d42d5db6b" + ], + [ + "sha1", + "bdc22f95dc6e96b43b482a462de9738d3303661e" + ], + [ + "sha256", + "a55cdf173dcd5ee273ed230eaa6109be795859628636c5705ee63488dff32d62" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PDTREE.EXE", + "path": "FD13FULL.img/packages\\util\\pdtree.zip/BIN/PDTREE.EXE", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 39936, + "subtype": "Exe", + "type": "PE", + "version": "0.60-4.x" + }, + "4e621b62-5591-5ea6-971f-a97a4f0aad01": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "69aa19f54122c05448d14090f1779054" + ], + [ + "sha1", + "f5ad58b3b9c69e37c4a720c195eb4c97f553c751" + ], + [ + "sha256", + "c22e12d1b8ae679c76c46afd8fc529f8eb9880f165ea57b7c7401fcaf1b19039" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TODO.TXT", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/DOC/TODO.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 257052, + "subtype": "None", + "type": "Text", + "version": "" + }, + "4e69af91-f75f-5c49-89d1-fabef7841db2": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1caadabbc98a4b474e8655685fdc3c20" + ], + [ + "sha1", + "0900d71c29983259f1420e689e86a007c3633702" + ], + [ + "sha256", + "fd4e1b8c372643f131ad82a5637c7052a07865e3aeae9c654557c4a6e1f5525f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.dll", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/lib/x64/user32.lib/USER32.dll", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 56, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "4e747d30-e523-5c42-833d-c10c641633e7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b2007564c1d98c91ad4989f0a093492b" + ], + [ + "sha1", + "3bba94c455210273cc0d9ebe1f6a1fdb9e2c9cf9" + ], + [ + "sha256", + "8af887cd2b20722e56d5a856637f46f48504e33aed1a596dc5a78bdeb0023b58" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "persian-iranian_utf-8.vim", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/LFNFILES.ZIP/KEYMAP/persian-iranian_utf-8.vim", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 865, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "4e8fe2f3-da54-5127-b8d4-fa082637513a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "559c70637338e74fce86514d4b4bf7e3" + ], + [ + "sha1", + "4a87b5bf7b04e23d2376544b9adabbc7f013d9c7" + ], + [ + "sha256", + "ac0cba51c351ba33af15c8b8baba00838d460bfc3ad27d2c4c8a5cd3a78afa82" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "madx86", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADX86.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/RDOS/MADX86.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 116736, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "4f11dd68-09d3-5f18-8bbc-e59627e69c6e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "764410844e108b3559380c27bfdbab2b" + ], + [ + "sha1", + "94371948fa712064ccb27c38d23035c44c011ca6" + ], + [ + "sha256", + "201af94ef6d32ac451036fae97ac41f3b97269b56e3ceb55c75030c34a5ef4de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/es/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 96864, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "4f1fdc31-b378-5d6e-8021-9350d8dc822e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "350984d8df067be2a0d9d81de3109d29" + ], + [ + "sha1", + "63d498e46011fad67fef5c605e2ab5a3b09bf1db" + ], + [ + "sha256", + "fbe8adbd27e20ba853eab558c56e2719bc5c796edf7df1708cb6e3e1281c082e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fdhelpfr.amb", + "path": "FD13FULL.img/packages\\base\\ambhelp.zip/DOC/AMBHELP/fdhelpfr.amb", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 997907, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "4f5f7784-f63b-518b-9929-5240a9043089": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "26310a0d269922c247bf9d07888a96c5" + ], + [ + "sha1", + "c42b117303af875d6a9154d66e8a1187c3794823" + ], + [ + "sha256", + "55c91a22b4ad035c556a118967f19e123dab101c8be0def16a11f8dbbca1e228" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "madmips", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADMIPS.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MADMIPS.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 25600, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "4fc5d5f1-1142-52a3-ad23-d720e7c1673e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4a2add0cc88d6dc9db99fe01fc33d3fc" + ], + [ + "sha1", + "2b8d11f4bb648eeff5e5bd17bfc914ee5e30dd83" + ], + [ + "sha256", + "94603f4ff360dd9f7300319d61e58ef3239caef812efe5268f01c2c6522e510f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "6561b124-ade5-488c-bcb5-2207a1115d3c", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "MTHR19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MTHR19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 38912, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "4fd180d6-084d-5299-8513-b1ce8336e5d5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8b102f926a637c64b9107232c7199ca7" + ], + [ + "sha1", + "2d4d743f911f0ba56dd93ff44906bdd9d3e0a1c8" + ], + [ + "sha256", + "c0a8727250c259037c86b6235833bbbaccb91e378b9186a48d6a254a40ce6e2f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-tr.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-tr.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 119611, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5062bb70-19c1-5992-a121-452daa77f2b2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1029d1e8648e348b2484dc4d6001d2d1" + ], + [ + "sha1", + "889cd878958fc4abe9e8608c826d5cbfbcc4c719" + ], + [ + "sha256", + "a324c3c99fefda13c63680697c6c19d7f926348a6e53bfb70dc2ab963cd4f173" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "ec3f93c4-5adb-47d1-9611-ceb1eae4bd60", + "f9118619-2a61-46d6-a336-b091a84ac8da" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DBGPORT.SYS", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/DBGPORT.SYS", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9664, + "subtype": "Sys", + "type": "PE", + "version": "" + }, + "5177bef0-0800-5c2b-a5b7-d9ff593af6d3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c2e37c0a4d162150a6cf936a8b62a0c6" + ], + [ + "sha1", + "6aadbd8488e346e4b0b26322fc95ba02ff50b116" + ], + [ + "sha256", + "9d850562a7fc172d2f155292c5989c82b5c2c5156cdffe5bde851575f070e24c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cheat_sheet.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googlemock/docs/cheat_sheet.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 43671, + "subtype": "None", + "type": "Text", + "version": "" + }, + "51fd1b9a-8771-5e95-b559-93c5c05e735e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b1fa844105efe2e3da3f314e2d172177" + ], + [ + "sha1", + "f4db7d12210c226195ebcba6744a197fe2da4cca" + ], + [ + "sha256", + "4f6931969b1516eb3ca694f34d4de8c44aed38bc9d609a8be990bd5f9ead19fd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ndis_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/ndis_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17248, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "5217018d-382a-540e-a295-cce56ef1d807": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "5828825a772d2f5e62d070abc6eb022f" + ], + [ + "sha1", + "37547736d61c965300572764f066673c2c5532c0" + ], + [ + "sha256", + "27d556b6f6b3ba144660396ab1781980525f3a0cacd4be7ca3ac4b13a5bbc083" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-sv.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-sv.pem", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7376, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "53928cb3-12a5-5ddd-b57d-1714b4572a86": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c7cc0f8f7de152ed052c605806121c11" + ], + [ + "sha1", + "9be7c93cf6f78d7ed8d5e6697325e542f550e78b" + ], + [ + "sha256", + "5cf558872fd6b8c35012d25966ac20e89a74f526d5c6bbe93cb34166ad503117" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_TLSAUTH_USERNAME.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_USERNAME.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2583, + "subtype": "None", + "type": "Text", + "version": "" + }, + "53c5c8e4-4b59-5e94-9a2f-c0595ebb8309": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "65842b9c8315430590405b7c856ed135" + ], + [ + "sha1", + "fd8c1734bc09714c8b36615f10aff0578d4bb1e0" + ], + [ + "sha256", + "a65d3abe7f7baec3230c551bfcb96efc817f031032551cf4f51c7ff8b23c604f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\archiver\\unzip.zip/SOURCE/UNZIP/SOURCES.ZIP/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18337, + "subtype": "None", + "type": "Text", + "version": "" + }, + "544f6baf-a42a-5be0-971c-3711a6f5d3c0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "69ebadb5cab4929bc7b4830872e85fd4" + ], + [ + "sha1", + "ee6bdf91c3ea90b9806f115c7360dbad1981ac5a" + ], + [ + "sha256", + "42074f6417641ef28bd8986d6401a0e2b3ab2fa6ea9f6f15bcd186add66c960b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "thashmapproject.lpr", + "path": "FD13FULL.img/packages\\devel\\fpc.zip/DEVEL/FPC/LFNFILES.ZIP/examples/rtl-generics/thashmapproject.lpr", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8155, + "subtype": "Pascal", + "type": "Text", + "version": "" + }, + "545623c1-435e-50c3-87ec-b8c42258a58c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "92a034067c8ec37da9c7fa8bd6c06166" + ], + [ + "sha1", + "0411dc78bac2e652e5795369637e54720ec54984" + ], + [ + "sha256", + "84b2939df080c95b1639f973d56b88d48b20c5d1fc1283ed049f25325b763283" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1075", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1075", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2173, + "subtype": "None", + "type": "Text", + "version": "" + }, + "54c781c5-73ef-5e3d-ba8c-f0466e7e993d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "386ae7de9240bba8662f524fed8ebf21" + ], + [ + "sha1", + "3e390a9b0b5c79acbd27a4e4c3d4946a067f0205" + ], + [ + "sha256", + "4d5e58449c120b1ba5d0bfac3c214b6b3c249b82e123b02c03bacbd4b9cc554e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/de/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5654, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "54c89ac8-ffd0-5adb-96e2-925a6f4bd12f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "59a801c3051adcb73c318d39df1e40db" + ], + [ + "sha1", + "a5ca1a07cb893423a912c9b4a12f36807ddc4cdc" + ], + [ + "sha256", + "6d0f4992fd7cc8a438337e9e5165e0ab44e2f45e4ef540f2e10a2164b31adacb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test299", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test299", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 785, + "subtype": "None", + "type": "Text", + "version": "" + }, + "55142fbb-a896-54fd-b455-5af4d4c602ec": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "afa4da9128978a53d64234f900eb9264" + ], + [ + "sha1", + "d6d6bb72dfe043daebab95bcdda58ab4a5769a05" + ], + [ + "sha256", + "d5e6ff8294a12480fa829d661542fbd59d789831dc710fd262fb680aa08c6a09" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dos4gfix.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/dos4gfix.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5248, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "55286301-8ccc-5e09-87d2-8a0182352b8f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c3cadaf29b512f4d829bcba4a45ee084" + ], + [ + "sha1", + "0279eeeb585a98615630a93ae8a6de518ba6b085" + ], + [ + "sha256", + "8897a216378878c1c569c428fd7d8e2e888d4b4e8f5b0a78222f81195a827731" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NOVSERVW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/NOVSERVW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 17636, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "55669576-10cb-5a02-9acb-f1632f6ec7ee": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bee15e10315aec15c716bd4b8f820faa" + ], + [ + "sha1", + "d15dc320409a8af8b7d94cf91c4e42d6ff80b0ab" + ], + [ + "sha256", + "111ad3a2eb69719b78e3f95eeb98649fe8ec17aa956f628909e1cdfceba671b1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLINFO_HTTP_CONNECTCODE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2320, + "subtype": "None", + "type": "Text", + "version": "" + }, + "55ce0143-bf25-5c64-8b17-32035971f816": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "7za.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za433_tar.tar/7za433_tar/bin/7za.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "567baf16-435e-52f5-8686-374941cf961d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a5a8e39fef929b689b3fbb56ba4c1d9b" + ], + [ + "sha1", + "e36d9b57bf1aca84298c6e5d1ace4c6f9ceefe22" + ], + [ + "sha256", + "a2ce16c754e9ff153ef54c02841a5331a2142b2438b986268549250fc4deea80" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURL.LSM", + "path": "FD13FULL.img/packages\\net\\curl.zip/APPINFO/CURL.LSM", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 507, + "subtype": "None", + "type": "Text", + "version": "" + }, + "56aee1bc-9501-5d13-9839-9cac50e058c5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ef576971355e122141b47ec373a6a26d" + ], + [ + "sha1", + "cba87d1ea4c8b31fc085029748960ae34d4a59dd" + ], + [ + "sha256", + "e1f4da9264995c7dd93e1293ab1e56dd6df358db2baeaffaeeb62ebcd1a23f4e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwgus.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwgus.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 16621, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "571789ef-00ed-55d4-804f-66ef1eeee7dd": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "69d1dd00a11baba6a55fc6ffc2a97b38" + ], + [ + "sha1", + "14bd2d7f290ac4478749e5fb9fb99dd05bd5a720" + ], + [ + "sha256", + "5c00e70d219190e370dfb5d81e58719457709924b42943bfd550fbb8834ad115" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/pl/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 45776, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "572782ab-0825-5b5c-8774-371641377793": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7eed6d04d791bb03d797ab280b55fdf8" + ], + [ + "sha1", + "621271aff205d2065403e3b0b67a85849f23f2fb" + ], + [ + "sha256", + "4f38e5a57b1feed90e34e7a4c87590937d81fdc5236938ed9a67ea90d756a1cc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gmock_faq.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googlemock/docs/gmock_faq.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15037, + "subtype": "None", + "type": "Text", + "version": "" + }, + "57896511-a1ba-56da-b693-76926a53efcf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a4e5d0d541a8e64bc0c6804c5eeae647" + ], + [ + "sha1", + "70ddb458668b25cb91624256b1063baef3ddf12c" + ], + [ + "sha256", + "772cca1d00e252567b19bf15947d791ac8f504cfb0e4d1f1f3a848a91b9cb68c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "formats.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/es/formats.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24081, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "5797ae5e-66b9-5730-808b-17279a35f874": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cb70341f906ea4c0dc353bf5c7112194" + ], + [ + "sha1", + "be6a35964bb54222321ce354eabc4e0bf467ddb7" + ], + [ + "sha256", + "0ea44f7b23652133b858affae148b635c6fd41e37421989a4c3f032da6a3c24c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "HP-READ.ELF", + "path": "FD13FULL.img/packages\\base\\graphics.zip/SOURCE/GRAPHICS/SOURCES.ZIP/EXTRA/HP-READ.ELF", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 5644, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "57e6d03c-50cc-5010-8f48-dd6355b347c5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "cdb0fff5fca1ccdb109a2488a22ac3ed" + ], + [ + "sha1", + "fe57606c718e22e4622651c6987fb6e5953e2178" + ], + [ + "sha256", + "a26efc0c7d296c64b335296502b7539d9a435f28c9a6749c7aa4a45e99b32165" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/ChangeLog", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 718474, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5840ab80-423f-587e-b286-c6d46c761d5b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "88e7d40fdba9fc32db49f9e80339a866" + ], + [ + "sha1", + "ac41e1f8d87c72f1110ab08005db0e881d850a9a" + ], + [ + "sha256", + "fa4c9487846edc54a5c37a95dd960c4a71025c2a6a00c982c0cb71bf69b6fc74" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_OPENSOCKETDATA.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_OPENSOCKETDATA.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3049, + "subtype": "None", + "type": "Text", + "version": "" + }, + "584e1ed8-492d-55de-b2fc-369d6929c4d5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ede70aeb96768f5376d17fe0ebf34e84" + ], + [ + "sha1", + "c3451eee102c01ca6b349e20165c817b20fb4b1f" + ], + [ + "sha256", + "548d06081883b4c2a4cd5f133585e3f7be0d219cdb554494e626f179e53e7a53" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "4da709e1-77c2-40a9-b809-600f07b6d7d3", + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "nov", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NOV.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/NOV.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 6144, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "597870fd-3717-5c86-93a7-178d8bcb5332": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a3dec2e06addd34d45b34e1f744a5e71" + ], + [ + "sha1", + "983fce5250b00739bfabcf304c0212611bfbd2f9" + ], + [ + "sha256", + "38dcaaa9dcb9b7daede2b266050a86534a90c897efd25939df8e82f34064cd81" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WHOIS.EX", + "path": "FD13FULL.img/packages\\edit\\elvis.zip/EDIT/ELVIS/DATA/SCRIPTS/WHOIS.EX", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 490, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "598ac6d7-93cd-5365-971e-447657c891a4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e9f8e09364f8417d422e335c7f4db827" + ], + [ + "sha1", + "0173ac7b40373d84e562453ac4a300bb21b55894" + ], + [ + "sha256", + "44d13d307cf3f98c2c2c1d1dce9e991cf346eae4ba2722eabee0fcc0c7ca678c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "copismall", + "path": "FD13FULL.img/packages\\util\\dialog.zip/SOURCE/DIALOG/SOURCES.ZIP/samples/copismall", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 12711, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "59e10b97-9e22-5210-9c88-073232a1c049": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d66f64a1b3a176819b39320198da8620" + ], + [ + "sha1", + "23f0167ebe34277a7f408ad33d3544367efddaa4" + ], + [ + "sha256", + "648d0269434671751a8b373d4b4c17d15ae3629b68f6306ad08cfe07e1ed4c1b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.cfg", + "path": "FD13FULL.img/packages\\net\\sshdos.zip/NET/SSH/wattcp.cfg", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27134, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5ae567c6-121f-56c9-82c4-d23c9c0b0589": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bf95d9e629cdc4eb6550618aff867b31" + ], + [ + "sha1", + "5601a5af3dee098d20def024f2d55aa3f042f6b1" + ], + [ + "sha256", + "c883488eb6dbd2d443669b9cc590c605b92a686385eab9b5bf43ca86d85b4d5f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playxm.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playxm.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 61647, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "5ae988b8-2d66-5eca-9354-6fb19fd00f96": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "acaa8d2dd3f3e646de15bc10bf4d2d1e" + ], + [ + "sha1", + "57e240cda985e78c8ba4b909de6dbd50ad79a595" + ], + [ + "sha256", + "5c67bdd2cd04bf655fa90073aa19312a38b8f5a46c44caff2718c074f84dfb28" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "GTKRC.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/GTKRC.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9618, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "5b0aa86f-be63-5b37-bef7-a018cbb75be5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d10537d547fb8b473fbeb638588bb885" + ], + [ + "sha1", + "97008c8d3e0c914c0a60030ec65f9d86c284f8b3" + ], + [ + "sha256", + "c68763c7778102a6620fada26444d67acee1e57db1a453f8821f7bb64578c5a4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TODO", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/TODO", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 47138, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5b4f3796-b69a-53c9-b725-d211897b233a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "31e092ac0bb4625ec358eb64d10c7756" + ], + [ + "sha1", + "389693538960d069506e790d30d8eff2283877d5" + ], + [ + "sha256", + "2cc78efb46c4fe88ed6b0f9f857db3f09bb376220bf9fe0483be3cca69ff6b02" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_37_content", + "path": "FD13FULL.img/packages\\archiver\\bz2.zip/DOC/BZ2/MANUAL.PDF/page_37_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1757, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5b9060bd-c22a-5bd9-a355-f0ce462bdce9": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "87f0afcd2a88644fec9b85c7723e091e" + ], + [ + "sha1", + "d892c659142170d87e2cf50f7b46fb51a97eb5f0" + ], + [ + "sha256", + "ba5c3c6a412765741e312cff9ac0f0fd235b49cb9f08f143d56182851aeb4088" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "width.c", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/src/width.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28128, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "5c28b05f-41f6-5c7c-97c1-c451470b2370": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a2e21f3d6b674172c73e058203f1e4ee" + ], + [ + "sha1", + "e20c31f48ff249a9b614ecd6f095ce21121b644a" + ], + [ + "sha256", + "7c08fb8416581f9b0e30cfa39fe1a6aa0f0cb6186e8577ec2880ba352b09ebe2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SD.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/SD.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 108280, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "5c3ee450-bd9c-5ecc-a6c2-a6ee577515e0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8ba71d665ee38c74ea5114ee014723f7" + ], + [ + "sha1", + "3b46dc436533a43c53094a75b3b2b638bce9d854" + ], + [ + "sha256", + "5d2982e4c119aba87fb9ab6cb0ccb48c21a625c3a83342c2fd0537c255781d4b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "win-386.announce", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/docs/win-386.announce", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1916, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5cc2f4c6-dab1-5c3b-827a-ed9718392236": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UPX", + "hashes": [ + [ + "md5", + "f4815d1421c002b90306b956c462563a" + ], + [ + "sha1", + "4bcaf0a246240d51126544c39b5a895d84046d05" + ], + [ + "sha256", + "8bbe984fe2e820a0f813f4281c39a7f040c9b6b1aeba1441f521040a2434f5ae" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "12fd8f38-1dad-4893-9bc8-61b013411a08", + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "76b53b45-596b-4d65-9b5c-d907109842d4", + "79ac6cf1-a115-4980-8636-a2fd93f9726b", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "oversample.exe", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/stb/tests/oversample/oversample.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 54272, + "subtype": "Exe", + "type": "PE", + "version": "0.60-4.x" + }, + "5d51665e-5dca-585e-bbe6-8d78edee94c3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ced06068a7789dbb74f59c016b067c21" + ], + [ + "sha1", + "208483969a54f077e698dbab7f23e02de1cafbc4" + ], + [ + "sha256", + "336537e8ab3d31ff3bfd1bb19075d4dee8abaad347d3b6e587fa560a29d9a6c6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "dwarf", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DWARF.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/DWARF.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 96768, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "5d7b2d98-bd6d-5eb3-929a-5a7ecc5575f6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b7a90601179267d52a1af8ceb66d6803" + ], + [ + "sha1", + "e00ee997c3bb70ec1c15d4032b99477f3b5da502" + ], + [ + "sha256", + "ebb075347d637d26c7a681d832596ac3ba9a70378d88ecb1a7e80f1cb0edf989" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SCP2D386.EXE", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/NET/SSH2DOS/SCP2D386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 192423, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "5dacc870-49db-5796-93e0-96e87d5bebff": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "be31db5c30626695878614bfb3ae5544" + ], + [ + "sha1", + "93fb9e7d4416ba84c88c90b21ca14126cc6fc90b" + ], + [ + "sha256", + "8af75a6fbed037a0ae39a8e672fd6e2f7c77a433d3f75e70d3a963833fce2a12" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "486PC.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/486PC.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4622, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "5dbc8f9b-2f91-530f-9e7a-8543032b9104": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "23053e71ebd0ee0de5ca56319434d777" + ], + [ + "sha1", + "dad61a3a93c5431a25b3cf0c9f6bf47aa0023e81" + ], + [ + "sha256", + "ecb4d6b7129db975177be9f8677d7cf625cc0db02957630886f71f1d7f64aa4d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/hu/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16681, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "5de1fbfa-83b6-58a6-afb4-6ec3cd54a27a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6a66fcd5fe90543fa97864e8e58bb56c" + ], + [ + "sha1", + "aa7d9f545a4d86f43d4844498de3a2d565b2d08d" + ], + [ + "sha256", + "5d595a4330752a0aba6c368a66db1df453493d974ae92a8499939c47b4a29091" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CP.EXE", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 149001, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "5e3f0fb4-b494-5ab7-811c-e00699478bfa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9cbcac3b49b0903dd2c7219366f3108a" + ], + [ + "sha1", + "73b755a1d83a4e5de23ce0cf0181fa673dcb10e3" + ], + [ + "sha256", + "e68c2007f83da561e785c861664d89f65d64ee55ea65b8287f1ccfd4a9c087c0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test256", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test256", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1299, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5e563e4a-85c6-55dc-a0d3-94e627140ae6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8c4f726a24158fed315ba73bd663f2ce" + ], + [ + "sha1", + "7cba90274c00385d2e1b9d652592e6f83c9dd0ee" + ], + [ + "sha256", + "dc1c5d23c83387348fb90da0cd02e22bbc169b45f0eb97908ac77f36eab34540" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test80", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test80", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1435, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5e70dc0c-24b8-5a6a-8a50-7e8ec352dba0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bfce34f1383c363031c96e98834cebc2" + ], + [ + "sha1", + "0bec19e1ccd97e20b75a777b944a73acf57b4736" + ], + [ + "sha256", + "984da7af97b7ecf73df4ab8aff6a4cfbc0a8567b6c9fbffd9e79a059f745375c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test242", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test242", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 702, + "subtype": "None", + "type": "Text", + "version": "" + }, + "5f94caa8-4f40-5428-a58f-ad6cb10510b2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9f68543ca56c82e112a131d3c4e49540" + ], + [ + "sha1", + "afbf222a4b60818c0e7405210d17aabbad8af045" + ], + [ + "sha256", + "44fc60485d6202df86a9d96654a0c15a61e2aae38683891f16f3868411d7b3e6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WSPYHK.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WSPYHK.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1242, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "606fd751-e461-52f4-bec8-546cedf99616": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7817ef8e8e9eee3879c62a43a3bf18ab" + ], + [ + "sha1", + "adab9dbd0f0b97b78095c4700d8892d4ad82034a" + ], + [ + "sha256", + "ed9b23d877e90e1b442b54dc83194caf2bbee492ee5a682006662cc8e046c873" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "09508866-ba4b-40eb-b48f-eb78b752753c", + "71352b6d-fcc2-4ffc-acde-2be11f2e4416", + "b3351c73-7ee4-4677-b8db-53a365d09cbe", + "dbdd00c4-6599-40f2-8964-6cdda4a604be", + "e73c76a7-88d6-4fb5-a0e7-e1f154d97989", + "edce32b2-b7ac-4df0-b4f7-20333d3d17c3" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "ttf2bmp", + "publisher": "Microsoft", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.0.0.0", + "vulnerabilities": null + }, + "name": "TTF2BMP.EXE", + "path": "FD13FULL.img/packages\\edit\\blocek.zip/SOURCE/BLOCEK/SOURCES.ZIP/FN_UTIL/TTF2BMP.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 28672, + "subtype": ".Net Exe", + "type": "PE", + "version": "" + }, + "60f45c81-825a-526f-9d0e-0f12a126e7a3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "abc6f777d998e00fb8a4ac486d3bc482" + ], + [ + "sha1", + "2da3b27cacc7e73ba69a9f7530c9ae86b677a9dd" + ], + [ + "sha256", + "af69540050a55bde0dbb68bb2c458c721ed644ac8cb3155eb7ab02fef77849bc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ot_tcpip.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/ot_tcpip.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3180, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "61226751-4e27-50dc-bb31-35c165773aa8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b1cb8e204caca16ab40dbd8b5bff85a7" + ], + [ + "sha1", + "db9adb40b56e3f4a5d48b1ad43cdad525ae3bc6e" + ], + [ + "sha256", + "dd24abc54554024b230aa81efe938e679efd797bf0b298b4a997bcb8e0b6c2a6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ELTORITO.SYS", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/BOOT/SYSLNX/ELTORITO.SYS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1554, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "61d1ab7a-dd9f-5a92-b987-212021e9a3a3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4fd38d901cdbb2249d2b251a3cb58c72" + ], + [ + "sha1", + "bd03425d12f200a75bfce3c7e6f1fd1c85480d10" + ], + [ + "sha256", + "0c0c61cf6a62aced507b5fe02add449b5ce8313c80b6a30f234b775101485ad5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/pl/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16707, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "620810eb-81d1-5f23-9d00-1634b908933a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f57496ab18a44256fe8499c2029a0a73" + ], + [ + "sha1", + "fea483264ac0da5d3fbecd6df6a3d07b40e2e648" + ], + [ + "sha256", + "11236bd05ae7406b3257121e0b21b87953ea16114cf2c152fff504d3123a32bc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1178", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1178", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3184, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6237202e-0692-533e-90da-4a4b5a67d9e4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5b80c59df928c3ada8aa79ebdf4c9dd7" + ], + [ + "sha1", + "cd5a566f49a2ec93b720f00ef833dccd74f85e21" + ], + [ + "sha256", + "0fa053a8b2f405730909dee8e8a83508eb5ae67882860e1b0c973da4a0e83044" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playinp.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playinp.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6998, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "625cdd83-1752-51b8-8b3f-6833e8995de2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "94483046569a4211bf40324d15c7e454" + ], + [ + "sha1", + "116ba3b241b206e3797c2e81fde844bdde659811" + ], + [ + "sha256", + "16b1ed87da82ec3e162d09375e439e2dcbdfc836a2c384c10a065f23d850b625" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/de/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 102005, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "62eb4677-5326-5631-a61c-11a15eec57e9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f1a6cb109ad6b5590c712aa40cbf4139" + ], + [ + "sha1", + "c854a0d118de12d6d5b3977cbbb577c7548a6ef8" + ], + [ + "sha256", + "7a1808412e28d3fa9362717db5d01ede3fd5a2a435a6fb92a7eef96dfec1a00e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lib1560.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/libtest/lib1560.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 35515, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "62efe173-473a-5bca-ab0d-1b8f8553391f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "939a030641141b3a648d9fbef2728d40" + ], + [ + "sha1", + "b293c95486bc25a7e05bbe5fa700eb8c64c5a94f" + ], + [ + "sha256", + "ba880dbf80891bd26ccc3e4891f5f9e924db7c501e4a02774b862a4874ae563f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PRE_PROXY.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PRE_PROXY.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3395, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6301bcde-acb7-53ab-9729-16ced8a572c6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "247381b7de73f4aefe994a60f0ebf002" + ], + [ + "sha1", + "edac82568e9d60d3340daeed0b6dbfd678728e0c" + ], + [ + "sha256", + "b2e8e894566439b96897bb32124ace1410ae1f7072479c64ba60e78d35f484b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/cs/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16254, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "63236478-2b2b-5609-a94e-878b2efa029e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c588c0ef1ca6143f935622d3706ba569" + ], + [ + "sha1", + "13674b3111600f25e65d5efc660aca77a4a8ff5d" + ], + [ + "sha256", + "57fb7baf8844ebcaf91ad881ea64165dd678123b23cb74cb871db5bfe43e7426" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test167", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test167", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1644, + "subtype": "None", + "type": "Text", + "version": "" + }, + "636970b8-8546-5f50-a806-052cdfa21e5d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "3a176de31c373d631404c1d22144682c" + ], + [ + "sha1", + "652d10ba2385889763b86b42ff74c09810c38394" + ], + [ + "sha256", + "a9c3aee657567b3e21e88ee648fa96a131727226a67c752573d34ed5811fb7d0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "msclient.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/msclient.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8345, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "63a16779-4b76-5aec-ae96-d6a1f2ca3732": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "53b16e6f6997d06b1c43a4eaf7461435" + ], + [ + "sha1", + "9459614177767b6e07a9b7eed3fe2f1b302f589c" + ], + [ + "sha256", + "c2011e1d1d197e5be9ab73b8ed1c0857f11704d6d238dcc7421d4669cdcf4fb0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "demux_mov.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpdemux/demux_mov.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 81137, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "63d9541d-f7dc-59af-b124-82aae8808775": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "3c5dffe8b00b7bcae05c5b9d1f8b5dee" + ], + [ + "sha1", + "4bf9547c14f2f39dee61ac6b7a4b774ea4e29e0d" + ], + [ + "sha256", + "94bf4826c8f077462f9d95612bafef1b87724fcb9177935c65647b53dc12a504" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SLIP.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/SLIP.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4547, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "63e136db-5ffa-5f09-9ff0-f942f525011f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "98f577befb21ff77c2a2d98a0351fa46" + ], + [ + "sha1", + "712ed4f911fe7a692bb41cf2b2d97258c160334a" + ], + [ + "sha256", + "531c97d040b85fe4d62bead6136e2bc7f75a00a3255116986f5713f3c1928b45" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.md", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/README.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5147, + "subtype": "None", + "type": "Text", + "version": "" + }, + "63e55349-e7f7-5cbc-aaaa-cd010532bc4c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2362219ada6ec605390c99501a277db6" + ], + [ + "sha1", + "4ce962380578525b4aece106534a20f9316bc92b" + ], + [ + "sha256", + "34f5eaeb37488b51662316b8d9f54228c96f72b54aec3bfc17cd731e3ce9bbd2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MANUAL.HTM", + "path": "FD13FULL.img/packages\\archiver\\bz2.zip/DOC/BZ2/MANUAL.HTM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 126958, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "642a21e8-fe1a-5139-961d-b05062ced82f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d653405768c116817b99335dc2921184" + ], + [ + "sha1", + "6dbe801bb2589bacdf3eb010a35fab97dfba4bbc" + ], + [ + "sha256", + "f779987143cf354b34768641d7f4324d186bcea3c498be879fe4606c9b376518" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PARSERVW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/PARSERVW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 18048, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "648d6336-9bfa-5bf7-a1ad-0388a212d91e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "795afa3dc914ae524e9d9514ad0f8631" + ], + [ + "sha1", + "056d3279f8b7354ccecf7959bd94ee53846b639a" + ], + [ + "sha256", + "7ed644ce32c039370958b0cf84587904ed70ef754d4a06254d6edb5e14441bd0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "12fd8f38-1dad-4893-9bc8-61b013411a08", + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "76b53b45-596b-4d65-9b5c-d907109842d4", + "79ac6cf1-a115-4980-8636-a2fd93f9726b", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/stb/tests/oversample/oversample.exe/unpacked_files/0", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 139776, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "6509c52d-39b2-58ee-b94b-83b0145d9bac": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "acd3d22abe6123ddde59634c272aa74c" + ], + [ + "sha1", + "b3a3ba7f828eba015546fbaa7a8c58a02fca1af1" + ], + [ + "sha256", + "1be7efd40f8a518371581ad50ed2cb946cf975eace3e01fd6f404aa28d85b29d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "LAN.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/LAN.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4078, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "650fdc71-f1a3-59c2-8772-049a89c25920": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4926301508eb397cc66c20329773bf3d" + ], + [ + "sha1", + "b3a7b5f06977ba18ea2d2f31d9b92a1722faeaa4" + ], + [ + "sha256", + "51f5d2058d9ba621638042c0d855be7464d38036e7f3f01f64bdea219d9c83de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TCPSERV", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINL/TCPSERV", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 39282, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "651dba79-3f59-5268-9a1e-21a921d55385": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4774ba6de8a8e32363126d3cad4c3fc0" + ], + [ + "sha1", + "f730c69b4d43578c5be940b05a76a0c30f66ae33" + ], + [ + "sha256", + "c53b9ad5f607c5e079a89d66f41322ea20db6920feca3e7a18c68b384379f889" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "eval.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavcodec/eval.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13898, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "65337ddb-e794-5465-a2e4-a4b0bf817b52": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "f0f25cbcfe93f0608f15cdfdfa89ac18" + ], + [ + "sha1", + "823e20b98b2db7f6deae8362ec2fb4f028332ef0" + ], + [ + "sha256", + "ed313e11370e752b1da81e881db32843767960811b870c9cf06a239c3442a69f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "EdelCurlRoot-ca.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/EdelCurlRoot-ca.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1679, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "65340ad7-8c92-5538-939a-5ad8f4adf345": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b5df2991504af8e3750985f076ad4495" + ], + [ + "sha1", + "4668498be99bc50b73735a1830aaf44e39a5a041" + ], + [ + "sha256", + "0446e878398b23bda2dbf8eba36805973aa3371f2610da502bf2c56f97c89df8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "4da709e1-77c2-40a9-b809-600f07b6d7d3", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "novserv", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NOVSERV.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/NOVSERV.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 39424, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "6551719f-1bde-58f6-bc44-85dfd60ddbbe": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "34d7f2dfdad77683d4a9a3b16623814e" + ], + [ + "sha1", + "aa29af2d208d7fe39704ed6da911fa2e6436a27d" + ], + [ + "sha256", + "fd0f6699be1c9df5be12bd8553eaff9d5b70830462ea1a7781db52992fcbac1a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dzrc.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/dzrc.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 88576, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "65694532-f570-550e-bf60-f67f64aec079": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "71e18af36281a88455dac936abd9ad06" + ], + [ + "sha1", + "b47367500f9801726e1a379d66bc7e6252a86e8c" + ], + [ + "sha256", + "2681e1a90a14ab8851ae82080f31c25c8de85abfc784008055487c46e321f6a3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fancyhello.lnx", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/samples/fancyhello.lnx", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 10131, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "656d6d81-4171-5c95-a1c2-8cbfd7fe2e5e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b3d01f04ee09c0ead0006af43af1e5ec" + ], + [ + "sha1", + "9c24d5da005accef564a7a41316f1be53a906c6e" + ], + [ + "sha256", + "46c1ee4eb55028784e20deabe8aa84a457a2120473174defdd5f692d79893287" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "for_dummies.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googlemock/docs/for_dummies.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 29090, + "subtype": "None", + "type": "Text", + "version": "" + }, + "65bac4bb-3e26-5304-9834-a735fae89152": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c0c459f358cfe793d1c9dccb02bbe2f8" + ], + [ + "sha1", + "462ff2e9731991c3f3bee82ba5f32e52a40442b3" + ], + [ + "sha256", + "77dee63052f8f7183d6a1eed19e2946c3bca7554f6b486ff600a5a873031a627" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SB.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/SB.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 83326, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "65c2647f-8ba6-53fe-b605-ae45bfc141f8": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b5a860254aad27931381a97841a8d112" + ], + [ + "sha1", + "7e86c72908be9c58292fce613359ad4470ee1154" + ], + [ + "sha256", + "af711dba90cdf13de5b9276580ade71d30fdda756e51c468c0f11ebdf11a89f2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/hu/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 98272, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "65c4b401-33e9-5583-a8ef-f3192e9592a5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6289e347ab224577946ac0cd1dd6fb00" + ], + [ + "sha1", + "7801138d59531a8509566da2f59e0deb39baa3fe" + ], + [ + "sha256", + "a763235ebf50f2f9c3133471fb02a736116e094a8d162518939c0960096f609b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwdgus.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwdgus.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 16022, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "65cc13b0-b42f-503f-92c0-fb320dabc30c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5a4860bac23c8f72e75d9dd76a1c91db" + ], + [ + "sha1", + "04e1e99eb1c4c63f46b9af033b4b8e8dfcdc70fa" + ], + [ + "sha256", + "71c0c77cf5f971d625249f47977bbfcf5011c41899c7617bf82e899049bd3d00" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fdhelpde.amb", + "path": "FD13FULL.img/packages\\base\\ambhelp.zip/DOC/AMBHELP/fdhelpde.amb", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 996467, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "65d63fb5-41e6-546f-ac66-3466d98e0a1a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "1f58ee0aaba35e0d99bd40842ec76bde" + ], + [ + "sha1", + "1c45aaff09af0d20685ba1b83834739032da6552" + ], + [ + "sha256", + "4c19258db9bde57b9f9ed98961ca7e7776a4fd9abd1085f09a1075933e6a030a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tcpip_ap.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/tcpip_ap.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8677, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "65fc7c6d-e0d0-50ae-895d-ae3a2d5281b5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e5b3956ab4fec23b553d3664f75b016a" + ], + [ + "sha1", + "c06a5e9714cddd60618e3ffd2222f255af6cbeaa" + ], + [ + "sha256", + "08a361165d051a1808cbf4a316d45a1a6a54a43fd7c9c959c7ab7f24f93cb9ca" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SFTPD386.EXE", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/NET/SSH2DOS/SFTPD386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 197459, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "661c2f54-88e0-5d00-9e68-0e0b195df562": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "dfcac4114aa67b4c762515823d0174a3" + ], + [ + "sha1", + "3494c2b48c63580f58d79baf60a9fb4470a2a7a1" + ], + [ + "sha256", + "7dfdf954fd87e01ea09dc2e929ac66a8d7d7df9948a0a17040783a89fc9ea876" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "documentation.html", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/documentation.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 504, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6625448d-0b0d-5d2a-8372-a7b0b7900f66": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a3dec2e06addd34d45b34e1f744a5e71" + ], + [ + "sha1", + "983fce5250b00739bfabcf304c0212611bfbd2f9" + ], + [ + "sha256", + "38dcaaa9dcb9b7daede2b266050a86534a90c897efd25939df8e82f34064cd81" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "whois.ex", + "path": "FD13FULL.img/packages\\edit\\elvis.zip/SOURCE/ELVIS/SOURCES.ZIP/data/scripts/whois.ex", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 490, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "66ac5772-9198-5abb-a910-c444c9c4d0c4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "feacc4f8222fb34f0abfa6509d6b8fbf" + ], + [ + "sha1", + "b282441832dde658ca757684d61f2d71cfd42cf6" + ], + [ + "sha256", + "1d84d5cc91c33e173dd94d95e5e13d44d36eef7ee433183ac3e5428fdf1ff0db" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "sets.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/sets.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5991, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "6705893c-87ca-536e-8ba4-c4f442980d15": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e941130bba249d8b34b51ebee56fc3a7" + ], + [ + "sha1", + "e6eb5690b745312e8eee84e4e0c1434e7c797f94" + ], + [ + "sha256", + "1ce6a0d804abb98d51db98da8ee332d91093eb9e12e8c08b1cb4c23078116ce0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 670, + "subtype": "None", + "type": "Text", + "version": "" + }, + "673aa8f3-f0be-5bf8-a5a9-f9a457f3bdd3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d55992b2c71ee49f6a4a21d06784787e" + ], + [ + "sha1", + "6bc752825feb80d5685e0f5b2fa1de67591814cc" + ], + [ + "sha256", + "c9e2dc56ccb9ea3854c5183500c7e7db40f533e80255d9e7fa2251acb65120dd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "watcom", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WATCOM.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/WATCOM.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 57344, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "6762e4fb-801a-539e-9198-22b69e5d6ee1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "36dd7b85e647e55b9059fc9f8f589cca" + ], + [ + "sha1", + "47681eb8575e687eb21edab755c6292f49606246" + ], + [ + "sha256", + "af3b785a209e2f5efa131f58ac74f9dcbd4314bf11ec57b89b473410859cc0b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mapdev.vxd", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/vidix/bin/mapdev.vxd", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5780, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "67636da4-35b3-5f18-9f45-f1c6b6381da2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "493fe8810da74b6b29ac510802f6c3b4" + ], + [ + "sha1", + "128dc04d05183e9371060102ce864b82ef90aa48" + ], + [ + "sha256", + "181cb9e97f557a3dab93cd993c598cf943de6d00e5e7160fa19653f64219ae5b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PROJECTS", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/PROJECTS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2364, + "subtype": "None", + "type": "Text", + "version": "" + }, + "67e1baff-c33c-5804-8237-2a758c50d9f9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "251a5afb45c90df50c6d3a72cde1e75c" + ], + [ + "sha1", + "f4bde00d5c8e1265ce67c89083c7706eea1f5149" + ], + [ + "sha256", + "2ee39ce5a843254fea6e0986896399ca0df70104283fb53771c50d59c6131a0f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "RESOLV.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/RESOLV.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3398, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "6827b867-543c-53f6-aa6e-ab6ed721a1a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3a00d2823da40522c23b77ab45429850" + ], + [ + "sha1", + "d25b750680058d152837307f351e7a130c43d245" + ], + [ + "sha256", + "00da6a553dbe6e3edb2ff7525f396c762134bb3360cc0b934363bf4772449d09" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "poutput.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/poutput.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 18389, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "684e5d24-c30b-50f8-8651-69edda03615f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PDF", + "hashes": [ + [ + "md5", + "ba1b8ffd3f6c3fe555e5c47f79d49481" + ], + [ + "sha1", + "d0586493c5e47a025dd022e1d96eefaf3f94343d" + ], + [ + "sha256", + "6f0a85b660e5ebb4ac2f86fbf4dfce98ccaefa481899dbb9b0fdbccb83553000" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TESTDISK.PDF", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 245754, + "subtype": "None", + "type": "Document", + "version": "Generic" + }, + "685fe9d1-3c2c-5853-b7dd-cf2d894cee6e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "55121a2b2b365b0ec804131ac5d7c089" + ], + [ + "sha1", + "76b0e58798e5a82c0ae29a4a28b315d64281d94e" + ], + [ + "sha256", + "e80f14076c5c3998a4a7ddffbd5dd9a2d977c6ccdeec438ea3e01d1ba6e7ad09" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-lastSAN-sv.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-lastSAN-sv.pem", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7474, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "687947d9-a3f2-5934-8f08-a83313ab0aa7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "fb8ca034bd6159d95c214e97012b06ad" + ], + [ + "sha1", + "48cb093bdcb93ab63b27a211f583477195d17ffd" + ], + [ + "sha256", + "3992beb133851bffa6f789ec56007ff36571c498e9853c75b0fb662e406f5292" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/fr/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16735, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "689e9253-656b-5dc2-89c5-fcf46f522ba2": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "57fc1ed457e52836df8e781c2ada0c7a" + ], + [ + "sha1", + "c2114ede2a7b8e384675650b7adeca5b8d53c802" + ], + [ + "sha256", + "ed886ad54682903dfbe39fb06e15522a05f1a21f52b102c7d8bd64c78248cc32" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/de/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 29972, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "68c222fa-ce60-57f2-9212-baf08439ff9f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PNG", + "hashes": [ + [ + "md5", + "96524fd2e110ca90d6a94aad341500ca" + ], + [ + "sha1", + "36bbf6906e461e5115d72c8a44bb37ea39543f56" + ], + [ + "sha256", + "c1287690808e809dc5d4fb89d8a7fd69ed93521f290abd42021ca00a061a1ba4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "xd0n2c08.png", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/stb/tests/pngsuite/corrupt/xd0n2c08.png", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 145, + "subtype": "None", + "type": "Image", + "version": "Generic" + }, + "6939b697-1cb3-5a6d-b711-c23d8048230a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8c191d84e53f6b788cfad000fc2f4ecd" + ], + [ + "sha1", + "1b5869aae5c5c0f4c9942b11d091f0b0159d47e6" + ], + [ + "sha256", + "c11ea633a1491308ca790ad0c7f2df99e175c4bbd7e0f3fc551d9318f632a647" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "file_indd.c", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/src/file_indd.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5487, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "69511612-080f-5ed7-92c2-9acc32ff5c7d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7ce9a8e47c56d03736720d3fcec86d39" + ], + [ + "sha1", + "70cc698c8ce17bbb88cbb0b44ecae259ddd71998" + ], + [ + "sha256", + "028057d4550e3f23eed8cd89a4a65baa0ec13a784c6a742a8816cae6da70f369" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "powerpc-linux.elf-fold.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/powerpc-linux.elf-fold.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7128, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "69cc8fc8-177f-5a02-816c-7775efe06b7d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "15a0c23e28b101af06bbcc78b78743be" + ], + [ + "sha1", + "55c03cc707f0dc06573fdd940df0f2ba910cf966" + ], + [ + "sha256", + "dfecfaf896d952a87bba4f01ce994765ac96cbcc02d5975a2bc302588169cfe5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WPROF.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WPROF.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 360173, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "69fc2557-6a8a-59e1-adc2-441de7fb019f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "26ea7b88975826fe87cf92146e58fb26" + ], + [ + "sha1", + "f950ecc766bafb5856c72f386be62c8ff96db843" + ], + [ + "sha256", + "8f91e6f3c3898a001dd20084da90c7ab85634040d6e619852f637b04a225dc1f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "http2.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/lib/http2.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 78100, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "6a1715f9-fb5b-57f3-9f13-12952df6e4d7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ba6b2abe93b82ffb230ad094bc5e5619" + ], + [ + "sha1", + "a1d34487d52d98b618595b17f02eaeade039dcf1" + ], + [ + "sha256", + "9b2cf89dd5476f027b7adff582ebe53a61f22e521aa16822afa3ed066f0b3467" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "inflate.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/inflate.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 11329, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "6a554a4f-2bd1-59de-99b1-eca26f6447f7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4bc84aca0c306e74e002b7a87ced4efc" + ], + [ + "sha1", + "d07e449c5986fb1c6e566c55ac94eadaa6c57610" + ], + [ + "sha256", + "3ca0108c222d9204cc90e9c6b0ed85473deaf1f75368ab9ee1d966ea1e6a996c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "libw.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/libw.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 140288, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "6ab95a30-2480-5670-9fba-b38f6657503e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "36c084ff095177afb250057a1df90d44" + ], + [ + "sha1", + "53d2ac16cae10ab9b3f580afa20aafff01d672cf" + ], + [ + "sha256", + "ad6552c96d60b46fa7940c783ffa6057d39306fc54f1a6784d776828f178f0a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwiw.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwiw.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 17385, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "6ad97104-cdd9-576a-90f3-9a85e03e45e7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "7ed066d4617a34884a31c0006f3ef5b3" + ], + [ + "sha1", + "9bbfc0a4caa6b7adefa4522c8cb03d9734b0970b" + ], + [ + "sha256", + "abee86b54780ba560256e6d73b7855c121b8daa4003bbd27a0d723535fab1c31" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "unix.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/fr/unix.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18126, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6c573c47-9b4c-51de-8554-5a0afc1d330a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fa20d307ab5daa45723c646d322a831b" + ], + [ + "sha1", + "643d92e10986a9276f6c0e0f25b8e863782c5a53" + ], + [ + "sha256", + "e98e4e72ad49ba63b9924d0cd5a9d309620af36e7ad271b41ee13535f648b424" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "w32codec_dl.pl", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/TOOLS/w32codec_dl.pl", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3083, + "subtype": "Perl", + "type": "Text", + "version": "" + }, + "6c9842ad-aac3-58a7-8570-4025f2cadf31": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "38b4cb4b0bacb2e41327fcae0f43bd37" + ], + [ + "sha1", + "fda6e5bbc267d08b68feb322a721af16df70bde0" + ], + [ + "sha256", + "03cac760fc22b78c59deed46173c35377c02d3ead9228637924ae31a9f0acc7b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ot_tcpip.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/ot_tcpip.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3366, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6ca42987-0971-58b0-bfa8-9910ca9cc7e3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "15f302df9d3c5b847b48056aeb253089" + ], + [ + "sha1", + "78c17674a5001b60a4523429a6f3ee6314147447" + ], + [ + "sha256", + "4f0725f36ba679debe558a89faef8acde8d1a90a218da820a608dd3fff4991ba" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "msclient.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/msclient.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8516, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6cb4ffa1-f6d0-5fad-8ed6-e4a85e4b0ad1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "da10134076b2f060aa5cda39fb408b7b" + ], + [ + "sha1", + "f70ae47ed7af89c9f4294e746316ccd98a9ebc9f" + ], + [ + "sha256", + "054d6a854612045cc85db41a24da44148ec27ff015e26f6ff859a64181352fec" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "history.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/history.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25199, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6d132eff-3529-5d53-a0b9-b6245f792978": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "44c372412728f0c0537c614a5a57521a" + ], + [ + "sha1", + "32c4a17157e2f35e48363d9423ee9a7b9bc80f36" + ], + [ + "sha256", + "5f78882acccec25380052a4433ebb02dc0bece0cc8cb981b009b0d1d766354f6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/ru/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 21796, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6d30f242-a557-5701-baf5-45fc534350ac": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a233b1f520a8718ce3b5239e0ab0d0ed" + ], + [ + "sha1", + "868961784d6e181ef946e5a9556442196753828c" + ], + [ + "sha256", + "7d61c7c1e242bd9ef40404a25bcdcb579dea64b6753380bbef5957573fc2d97d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vc_err.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/util/vc_err.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 49152, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "6d3a253d-d8c4-5628-82ae-7156c8603772": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "29a4874f71ca4e16504d6cd1c8e2e77a" + ], + [ + "sha1", + "971df1f44cd5309f7a3ba497e060a8cfe82112f0" + ], + [ + "sha256", + "37f59a941c03f053f021db07f62bf81416b1a814e6395b14b36fa09eeb7e11b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WATTCP.CFG", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/NET/SSH2DOS/WATTCP.CFG", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40665, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6d76dcfe-bbde-5ebb-bdef-25b4388f5ad4": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f7c720cfeab5ce05141523f1ad80a108" + ], + [ + "sha1", + "20f379ec1dc9154201cc763ee5d60e281443883a" + ], + [ + "sha256", + "1a9dbc25ae9322597cfe3bb8c6c3e280ebd664a79a66287be06a2593d06cff89" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "faq.txt", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/SOURCE/FREEDOOM/SOURCES.ZIP/allegro/faq.txt", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 20934, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6dd757ba-55d1-5a9a-89d9-ef3e0dd8d5f6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a53c56336e6b569b32377fcdc9307281" + ], + [ + "sha1", + "1469f23a9750abf9f170c1ff9859429f22f7ffdb" + ], + [ + "sha256", + "66fbc9c91e76b86f610f37a6f66f2449e4b16360980f9475caba4f0dc45721c6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2024", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2024", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4420, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6ddf63fa-da51-54b4-aa7c-ce162e51b9bb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4b95c4d42d298b4a7910b0fd92645da3" + ], + [ + "sha1", + "3b8881c33ef9f287cfeb0e173a04fb4a3dfbaf75" + ], + [ + "sha256", + "f95c7f3c86e028b0ee6514166d8da94c64a93b288dbab7783d7866dcba43174f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadmdl.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadmdl.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 14985, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "6e969826-60e1-5dfa-9586-bff055fdcce9": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c5c6fd2492e9ec3949203daf2fcce076" + ], + [ + "sha1", + "3fb767354e6086063f6937d5fccc1a2b698ad12b" + ], + [ + "sha256", + "0d38d08636b9abaa16481f9c8314e60283ed5b0a375e81a0b295620b5e03f062" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tag.c", + "path": "FD13FULL.img/packages\\edit\\vim.zip/SOURCE/VIM/SOURCES.ZIP/src/tag.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 101723, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "6ebbc0c5-8fef-5434-9fdb-c4a5d2e331db": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b4c2d4cc44fa21048ad6f61eae6786c2" + ], + [ + "sha1", + "153e2191a9e09439a3b676fa9c695c032f551820" + ], + [ + "sha256", + "d85b59b7eaa23738507aee5243ffef1562598140fb5f75ab828f70de0e9f1fb6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/wattcp.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5132, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6ef26a05-e996-5783-b6ee-d4b17f4d07e9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "24193c15b635f464a6074d48c40cac9f" + ], + [ + "sha1", + "b884756960e104eba952d4a405b0ee6abdb03a56" + ], + [ + "sha256", + "b125fb318c9e893dc1c1e7dd9d62f527cf2601f74f402b07dfe859ef1063bed7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mmcmphlp.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/mmcmphlp.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5294, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "6ef56e80-0ecd-5007-a719-c93551a82abb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "035a391f66b6ae69d932b4f824c15186" + ], + [ + "sha1", + "2391e7d99ec7d4b007d7672803c293c8f61b46c0" + ], + [ + "sha256", + "11d2fd786a03630d99baa484ab1c4007da3c9b71db7511aa6343072b13fb257b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2049", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2049", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1207, + "subtype": "None", + "type": "Text", + "version": "" + }, + "6efde4e3-d945-5940-ae19-0037682d1e2e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e2150dc3298ed79a0e02b9bcea0762ae" + ], + [ + "sha1", + "f697f725a1393a1a363a776d139e590f3cd2bf15" + ], + [ + "sha256", + "fc93f5ccdffde2dd79199c039af81a6c05937ab7e5633276b83e8dd6c5051120" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "slides.html", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/presentations/2017-05-16_CppNow2017/slides.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 27535, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "6fa24d5e-e30b-5d40-8f38-583156404608": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4784cf23785cac5084d6bf1eabb64e93" + ], + [ + "sha1", + "fc6c9b37b8846e6cdc976aeb38dca26b8e1e2af7" + ], + [ + "sha256", + "a1744f1a6cb7f3b9f68eabd0c24b9fcec6a9b9258d70ef0c3b077998b2fb2d8c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "A65.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/A65.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6945, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "6fe6709d-5908-55e9-b350-24fce3cc2b45": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PDF", + "hashes": [ + [ + "md5", + "1e269f0096093b4557d1a10de3b901e0" + ], + [ + "sha1", + "f0e36fce4d6c87c390bc7edd8da3feddb50b3a3e" + ], + [ + "sha256", + "ab3a4ae66a4b4804aaaf2a0d3cc791bfe8cfaf8f453ada88c11a463f09b88d07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MANUAL.PDF", + "path": "FD13FULL.img/packages\\net\\mtcp.zip/NET/MTCP/manual/MANUAL.PDF", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 762213, + "subtype": "None", + "type": "Document", + "version": "Generic" + }, + "707d7d59-8ed1-5ba6-99d2-74fad66c1e22": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "JAR", + "hashes": [ + [ + "md5", + "451e0b3037c608b724985f74784e7bb7" + ], + [ + "sha1", + "636cf935a0fd1451657a4112974b3500cce3ab84" + ], + [ + "sha256", + "381dff8aa434499aa93bc25572b049c8c586a67faff2c02f375e4f23e17e49de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "java", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Gradle", + "publisher": "", + "purl": "pkg:maven/Gradle@4.6", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.6", + "vulnerabilities": null + }, + "name": "gradle-wrapper.jar", + "path": "FD13FULL.img/packages\\games\\mistral.zip/SOURCE/MISTRAL/SOURCES.ZIP/NDK-version/gradle/wrapper/gradle-wrapper.jar", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": true, + "size": 54329, + "subtype": "Java", + "type": "Package", + "version": "Generic" + }, + "70cc4897-299b-524c-bc6d-e5431f193c9c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "cccb8576a33793aff1f244c705fc97b3" + ], + [ + "sha1", + "d1396bd685a9704e0c3de07559ca9d4b6c63ffd9" + ], + [ + "sha256", + "9cd7c08c481a7667d8f324a99f1d853a277d2de33beae7c1bda9305253b4d46c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "history.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/history.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27530, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "711d759c-a082-5f6b-a9bf-3aca3431ca3e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5ce29d4225cc2f188ef95605b4008495" + ], + [ + "sha1", + "a95b476fcfac4a471044882ac9e845101d7e71a7" + ], + [ + "sha256", + "0787a9aedac04215f9aab8e295858c1825cb801a0d815e05f0db449a773a61de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.cfg", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/lynx.cfg", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 163429, + "subtype": "None", + "type": "Text", + "version": "" + }, + "717e79ff-bbf2-5a4b-aa87-e55894b35cb6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "2e033e29c696785e854c1245f928d492" + ], + [ + "sha1", + "4c37b21e8774850ddcd9248c42db8e7315b05cff" + ], + [ + "sha256", + "b05c4d1150c20ef37713ccfd6c971a000ff7499f9f7386d298b0834a89e51119" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MAIN.C", + "path": "FD13FULL.img/packages\\net\\arachne.zip/SOURCE/ARACHNE/SOURCES.ZIP/MAIN.C", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 45713, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "71c20483-3cd3-5992-ad89-56dd42435ea2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9cdb0cbcaf87543ad0375e7279ca302a" + ], + [ + "sha1", + "b416c970c4e4a6f2c37cf62d63ae5eddff67625c" + ], + [ + "sha256", + "0ce44a70e803174eaabf763ab78d225c44616a16fbb4b5737d51dc5ff83b4c4c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DN.PRG", + "path": "FD13FULL.img/packages\\apps\\dn2.zip/APPS/DN2/DN.PRG", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1097770, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "71c51710-10fd-5646-9c8a-42b5d2032c4d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "99f9e0086aad7429569fc0fb785d8a6e" + ], + [ + "sha1", + "d3d5bb645714fa95483e19cd56a20934c8e18f88" + ], + [ + "sha256", + "6b2067a20d9c7ef7a08bee2b7b3ad1cc3d0cc50ddb2f50a1049f0ae1d728e7df" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ETHWATCH.C", + "path": "FD13FULL.img/packages\\net\\ethtools.zip/SOURCE/ETHTOOLS/SOURCES.ZIP/ETHWATCH.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14618, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "7204ed2f-31ec-5781-85fa-d4b6ba7008f6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a291b2657978340870258ccbea3ff42a" + ], + [ + "sha1", + "488ea005add134da788af32969812642f716c35d" + ], + [ + "sha256", + "bcece79c167a1189ce45aa5473afbfca4887d29fe42343ce8b4069fe4fd2361b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.1", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/man/cat1/lynx.1", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 60591, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "7208994c-02b0-5fb2-a084-ec3fd22373ef": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d6d3c968b409c905b2bd7d0c0d4a3ddc" + ], + [ + "sha1", + "8da21b63943643e7163775dc9023a055f24a13e3" + ], + [ + "sha256", + "a0dace39c517b44bea95aeece56edcaf01708db78bafffd524c1d34c30b5021d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SHSUFDRV.NSM", + "path": "FD13FULL.img/packages\\drivers\\shsufdrv.zip/SOURCE/SHSUFDRV/SOURCES.ZIP/SHSUFDRV.NSM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28729, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "7213433f-a16b-5f08-9680-0849ed73f523": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "4a9460992ff9fb925483168a7210ad15" + ], + [ + "sha1", + "df1122972837723828ee8a5c439005413615fd70" + ], + [ + "sha256", + "483e342d087771f75ea092c344304cd9547f67adebc920e1e4ea8cf4648b0a8f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-sv.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1678, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "721f4438-55ef-59e1-9870-86883cd04e94": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e2e9601d54a3b080fae2b3c9ce02e1be" + ], + [ + "sha1", + "fc585f62bcd0601ee6dea21cec5322bd09988459" + ], + [ + "sha256", + "4822e50a0265b87e9ba09419ccd7543bba02af83fce44ac80e6297dd39f80689" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CRONTAB.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/CRONTAB.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2684, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "7303629e-08b2-564e-b84b-5a2c23da6de3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5ce29d4225cc2f188ef95605b4008495" + ], + [ + "sha1", + "a95b476fcfac4a471044882ac9e845101d7e71a7" + ], + [ + "sha256", + "0787a9aedac04215f9aab8e295858c1825cb801a0d815e05f0db449a773a61de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.cfg", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/lynx.cfg", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 163429, + "subtype": "None", + "type": "Text", + "version": "" + }, + "735aed34-1ae8-55fb-b309-d50d88aa298a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d66f64a1b3a176819b39320198da8620" + ], + [ + "sha1", + "23f0167ebe34277a7f408ad33d3544367efddaa4" + ], + [ + "sha256", + "648d0269434671751a8b373d4b4c17d15ae3629b68f6306ad08cfe07e1ed4c1b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.cfg", + "path": "FD13FULL.img/packages\\net\\sshdos.zip/SOURCE/SSHDOS/SOURCES.ZIP/wattcp.cfg", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27134, + "subtype": "None", + "type": "Text", + "version": "" + }, + "73768bb8-90a5-5903-b27a-fd691f67062c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a200e0e724b917ebbde3b6924c5d68d7" + ], + [ + "sha1", + "061a2e67630a2565b1ae406ba22577f614b6c13c" + ], + [ + "sha256", + "c63b697d48751d81bb1fbb32fd5198cf6acb048ebc415b16b53167ca7b15c0f1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WDW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WDW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 910128, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "739aa6f9-4fa9-5816-98f6-68e79c5eeba0": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8e642258d571d2aedede3ee77a2c3802" + ], + [ + "sha1", + "0a6973e060427ee87cd1430616fd0bb09383e480" + ], + [ + "sha256", + "5890679e95793b09bd51d3955040df0ce12b1c47a4cdc66d1f6e1d0f0615155d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXYAUTH.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXYAUTH.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2836, + "subtype": "None", + "type": "Text", + "version": "" + }, + "74504188-6e31-557e-babf-d053653c35e2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7a2bb1b8febe21e414cdd0868d94c635" + ], + [ + "sha1", + "7573290add2e65ac6e83bba690f17de10321930a" + ], + [ + "sha256", + "982eda740badc21122aa3671fbb8b37eb941e330c7d018e9216bb7c48e165b61" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1293", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1293", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1158, + "subtype": "None", + "type": "Text", + "version": "" + }, + "74991cac-29e3-54f3-83c9-e0191bc82f8a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "01aed4508af0420a4b60b863410dd39f" + ], + [ + "sha1", + "2e7e05aa210669abffcbc7930a3358041eb9d7b4" + ], + [ + "sha256", + "f4138f3b83d58e9edfbe0c2c6a5c96d84cc6d0890c9aeb2617960891892358bb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vd_zrmjpeg.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpcodecs/vd_zrmjpeg.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5688, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "7528c7a9-4066-5183-a410-064496d00d68": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a78728a1b0d7cad5e98a484123b96e93" + ], + [ + "sha1", + "37e6ae3f8303ec04c301016747b86f7755ede297" + ], + [ + "sha256", + "0e8ad78e7ddfbd467bb82f339afdcb2ea9bd71c7962482b88f8a8441e7655422" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "libnut.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavformat/libnut.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9216, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "7548e5ec-fafd-511b-9daa-e28429f081d5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e9040eb59901b5d50525781acea289d1" + ], + [ + "sha1", + "6d24ff0d61a064bb1e50770d96800c8699a5b191" + ], + [ + "sha256", + "1da769df5bfaa16404c52648b8311906e8b2bd7dd0630b24a2697be12d48a6a6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "CLBR19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/CLBR19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 257024, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "755da5b9-7bc0-5faa-a603-638316f43db6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "328400e7e4547e001416367b832fa354" + ], + [ + "sha1", + "6aee30e50656662511b937d0586691ab6e2046a5" + ], + [ + "sha256", + "89a85944276690b1b3e3c69fee2025d61d46b96159f69d4db0512233da8efd55" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/fr/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 44958, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "75a15e55-8baf-5e22-8d89-f6768c7d2b29": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "be2513b50e55aedc8b2b83d24e264091" + ], + [ + "sha1", + "f8cd44576ee52988cf86b9e5c6f89e131256e1ba" + ], + [ + "sha256", + "d4492a3962ec85ef599d7234c05d74106e4f6c58ee09dc0afa42bf1d7a84467f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.8", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/docs/changes2.8", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 204025, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7611e7d9-a836-53b0-9292-c82f05c1785a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8cad02eddb1ebc8d2c18c3204cfc06e6" + ], + [ + "sha1", + "cff3a5c9f17669e8db7915efd76c311a2f6c1eab" + ], + [ + "sha256", + "dfcea7c1cf558188bba2b05268d9943461eb8a71e310eb5ea4d166f8b0b9a875" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dynip.o", + "path": "FD13FULL.img/packages\\net\\htget.zip/SOURCE/HTGET/SOURCES.ZIP/LIBWATT.A/dynip.o", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 45903, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "762f8f43-a407-5b2c-baea-58436fe26a01": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "MicrosoftPDB", + "hashes": [ + [ + "md5", + "0828ee1f14b09a04e0ba649b289d5d5b" + ], + [ + "sha1", + "3907964df05ffd2fe94ada1572a07c2fccbc9a0f" + ], + [ + "sha256", + "9259bac05a32b734841593440a5322f1878c055420c3e3b069a7c528c6f133ba" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "The Mistral Report 95.ncb", + "path": "FD13FULL.img/packages\\games\\mistral.zip/SOURCE/MISTRAL/SOURCES.ZIP/The Mistral Report 95/The Mistral Report 95.ncb", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 164864, + "subtype": "None", + "type": "Binary", + "version": "Generic" + }, + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "71347f757802c6986d7a35c0cbf0b186" + ], + [ + "sha1", + "77da0fb18c382f14deddd04df06813cf49fda4f4" + ], + [ + "sha256", + "4c2100e51b4910f619c5fdff502608598fce2258ed79db98a82243487d3d5601" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "19968211-04bd-4e31-bd73-b7bc34f5c3c1", + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "69b20416-f389-4e7b-a53b-8caba51e3e59", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "cphost", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CPHOST.EXE", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CPHOST.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 48128, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "769544f2-ef96-595a-b036-f0c342aa7209": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1e10622d88f40f52a87bdb6413ab4171" + ], + [ + "sha1", + "d6720027fa6cf7d658ffb9d50fbcb7eb4495708d" + ], + [ + "sha256", + "c28b9b08a01f13d15a3e45969cfef3e06c8e3b8cfea9b1bf9ee8288230e5613a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2023", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2023", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3601, + "subtype": "None", + "type": "Text", + "version": "" + }, + "770cb06d-d50b-52a5-9b2c-6decbeae4ba4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c02237d04ce785e4b6c10cbb5d6d393e" + ], + [ + "sha1", + "85b28cccd65e0651365cc76a058192d2de4e4e6a" + ], + [ + "sha256", + "61c21b7961dbe5b091ecd2a963bc79c06b134a1a93f26ac40d3e5624744441be" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mipsel.r3000-linux.elf-entry.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/mipsel.r3000-linux.elf-entry.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 11931, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "7730745d-fc1c-5f62-afc7-26d30d8733c3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "57db808cdaf9f6f24576b846dc970227" + ], + [ + "sha1", + "accd3d846d507deb41c9766a8a20c373b9e1144d" + ], + [ + "sha256", + "1f144f84b5ebc1d99ea0a7584ec368fd8dee3dde0bc9615af6533c0172aa8fb5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fdhelpes.amb", + "path": "FD13FULL.img/packages\\base\\ambhelp.zip/DOC/AMBHELP/fdhelpes.amb", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1054531, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "77db0880-7e8f-548e-a1a4-3c9cf55f1f8d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "81baad4db23d088a360af42995e20cb5" + ], + [ + "sha1", + "31af90f18814d7185a9c63e5629941eaec1b5fbf" + ], + [ + "sha256", + "d99604ce6a754a8a41270c0c2980de2d9983a7de8f1b3db72bcb07a0aefba989" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/ru/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 33988, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "78780aeb-1eb1-5761-b67e-7d0803dc0d16": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9ebf358420e9244db5fd662fc5f7f162" + ], + [ + "sha1", + "d7d182b30d9bbaa121502a13b9247f9a27ce1aa3" + ], + [ + "sha256", + "dafc4e52b132c231ea69fffbba7228fcfdfdd28e6980e450a843acd01be92376" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-de.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-de.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 142997, + "subtype": "None", + "type": "Text", + "version": "" + }, + "78af08ef-f58f-58cf-9ae6-571dc03d2a3c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2faebe6098c51db50fb44503ef22606b" + ], + [ + "sha1", + "47b90c6158ab81b66cff0381f5bbe4eae422ab57" + ], + [ + "sha256", + "7612d44fd499778c695ce52bb9f0ee7a0f1260d7b2a29048947bf53e05d56739" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/en/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5326, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "78e4396e-fec3-5964-9723-02b6bf34a95e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "998eb8154d823595519910383a956ba1" + ], + [ + "sha1", + "dc3d6548312f051f36bc8cfeb9afcee855e1e951" + ], + [ + "sha256", + "6a3fbdc0f7b233e1cff449e0929536092a7ff26f4ee3888c886bd51a455e707b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da", + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "4f4e71fa-cef5-4a93-ab99-f0f86e35a783", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "TTF2PCX font converter", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.0.0.1", + "vulnerabilities": null + }, + "name": "TTF2PCX.EXE", + "path": "FD13FULL.img/packages\\edit\\blocek.zip/SOURCE/BLOCEK/SOURCES.ZIP/TTF2PCX/TTF2PCX.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 36864, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "78efc382-47c0-533a-93c0-5ed096ff2f7d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "03f2d52c5d66efff66ff655692d18c05" + ], + [ + "sha1", + "c5b3184677dff945a473610b813c36fecbf99587" + ], + [ + "sha256", + "4374700f6bcee16611de6aa36cb2c8202d15db0bc14f249f71f1a84f0024594c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "download.html", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/doc_user/download.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8405, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7931785b-c60f-590c-af42-5ecfa9b31ecf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "270eb55dc0e8166a69e0680a9028d3f9" + ], + [ + "sha1", + "5ee8bcbdf13fb68e8d0775c9c91f5fbf99ecf64e" + ], + [ + "sha256", + "7b2f9684a1dadee2f2ddbf0683393721513a8af6b5228c1cd4e80bafe82f00f7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "c770ffc8-412f-45ab-b301-86ab6dc69965" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "i386-darwin.macho-upxmain.exe", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/i386-darwin.macho-upxmain.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": true, + "size": 4688, + "subtype": "Exe", + "type": "MachO32 Little", + "version": "" + }, + "79514b15-f6ce-5dbf-97b5-5029cd50baf7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fd8c3f704f58faf63a4e305ea5d60a75" + ], + [ + "sha1", + "755933d2c5179c96a52c91c88910240f525e1a4d" + ], + [ + "sha256", + "77634da80c8d76caced24e0915cb4fffcd74c9bdd0b5dd3047722e5d58106e62" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SSH2D386.EXE", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/NET/SSH2DOS/SSH2D386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 199703, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "796d7689-eac7-5a2d-aa45-d4039a127e65": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "37f45c8dcac3528ed3d87de87c7b6d87" + ], + [ + "sha1", + "3c7b1583289658976ca8ecf6245ce9992aeb4c20" + ], + [ + "sha256", + "876781d97faaeff461bd88aa55c817f12045b12988a7f47bf89d232f440a469e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "rbtree.c", + "path": "FD13FULL.img/packages\\devel\\nasm.zip/SOURCE/NASM/SOURCES.ZIP/nasmlib/rbtree.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3641, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "79e23b55-c8c7-5c3b-81d7-60cc96bab0c4": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "d055ce810ae229aa54d3971cadb4184d" + ], + [ + "sha1", + "06b3d72cec702872b92794f06779ad48734c2607" + ], + [ + "sha256", + "8dd8afec234493692abd44766908e5ba5e9d7d461d77fb3209b942702201f14c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\net\\dillo.zip/SOURCE/DILLO/SOURCES.ZIP/ChangeLog", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 98168, + "subtype": "None", + "type": "Text", + "version": "" + }, + "79f9e6ea-a2aa-5c03-bb9c-592c1d1e9097": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b2395dab96aca3defdb7a4d8fae3f342" + ], + [ + "sha1", + "a52ffc630f7be22875839fdea5f8d62b84a79174" + ], + [ + "sha256", + "d21447d23e95e78b6382028655780b7f454a2015cf7562518d10975c352e2ab2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "menc-feat-dvd-mpeg4.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/es/menc-feat-dvd-mpeg4.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13622, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7ac5f40a-6919-5644-90c9-89967a4e4042": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "aa14abdadb70366ec0e3ffb82ddc34a2" + ], + [ + "sha1", + "9c912418d1ac5c3eae54f637ee15fd887f87bf3b" + ], + [ + "sha256", + "b7262c169551cbc97b35ebddd1a89cd778bd253f6ec50341d3fb090f6b99afc9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\archiver\\cabext.zip/SOURCE/CABEXT/SOURCES.ZIP/cabextract-1.8/ChangeLog", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 26949, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7b057276-0315-5355-b7b4-d31398de54f4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "83b69acc5c84c5945690c6e5124f94f4" + ], + [ + "sha1", + "250778cd181758b4fc10aac5efb4fd318e89b151" + ], + [ + "sha256", + "be7108049d549a78ab528212fadea68d051fead7ff7c4a1b2fc6b8b5a7f7482d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mnemos.www", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/src/mnemos.www", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5717, + "subtype": "JavaScript", + "type": "Text", + "version": "" + }, + "7b115dca-4f41-53f5-9a7a-670bfae36307": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "71c8e69186b23c870b362a681255a2e2" + ], + [ + "sha1", + "c3bf74615648e8815bdd969fae7e96be7fa3dc84" + ], + [ + "sha256", + "b646f485859bd0d3c9e808950370529483065c7bd729f3b6986dd7bb9f1593bd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/zh_CN/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15799, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7b419068-0e19-595b-a875-c8fcc245de5f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1ecdd779da612b6f877fd1f7acdc0e8e" + ], + [ + "sha1", + "5658f327e87399ab5b13401457bb7ccbfc945125" + ], + [ + "sha256", + "9365580465411b31f5edea13b3d7d91bb012a86f6b114c5b689ce0c0ce0c87b4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\net\\links.zip/SOURCE/LINKS/SOURCES.ZIP/ChangeLog", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 134182, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7b42d8d1-8131-54cb-8a7f-889e94057354": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "4685e3bf89828dcc9a011161a6eb4707" + ], + [ + "sha1", + "77f38ad30fbc5553e245d335da181244b600572f" + ], + [ + "sha256", + "81853ed3ffb1a1cfed8278e2afd838dc990ffcd3ff06a088a6f3409dc684a76c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "manual.xml", + "path": "FD13FULL.img/packages\\archiver\\bz2.zip/SOURCE/BZ2/SOURCES.ZIP/manual.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 117875, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "7b80a773-978a-5c72-b739-146e33911e00": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "faf91a6c79a45fae3b5a813ba4d5f20d" + ], + [ + "sha1", + "bb4baa829baf99406bfeb15f5d8f6020052e7f55" + ], + [ + "sha256", + "23dd4c115375e662e5e752f6ce8b3971fb0e9f4fbc6ec45092a692f60596cc12" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSL_OPTIONS.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4212, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7be6cb1a-af3d-51c0-9327-34eacedb5bca": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ede09c93ed49db4616baf5539870c007" + ], + [ + "sha1", + "d8900d30712d4e894a6dd07339362740d5c98574" + ], + [ + "sha256", + "256ae3b8941aadda7291cdad8e55a05d5f04b64ae0c29541c325f68851678b12" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dialog.lsm", + "path": "FD13FULL.img/packages\\util\\dialog.zip/SOURCE/DIALOG/SOURCES.ZIP/dialog.lsm", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 1124, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7c5aec9e-9b14-59d3-97c0-16ac7a62f466": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0de3a54d9d84eade3119fe21e27585e0" + ], + [ + "sha1", + "e6b72504157a42e5a4fe74ddaca635b6d87ef01f" + ], + [ + "sha256", + "fbfb80a7f5cfa2a40df22b5d8682b70bd568233e43e54b4d12f25f3734528ab0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cphlpif.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/cphlpif.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5306, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "7c5b8e06-8af3-5ba3-b9ee-d1e1b3adf8c6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "06643aae266510e80e8c8190ad9bd44c" + ], + [ + "sha1", + "7d174d74386af8c70b36ae511a3ba489d43b6e34" + ], + [ + "sha256", + "52c9830c842cd080ced74edf51387c599eace3a61baa6bf7e8fde9797eca9cc1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "curl.lsm", + "path": "FD13FULL.img/packages\\pkg-info\\curl.lsm", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 823, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7c844209-5ce4-5bc2-9ced-0e8180ee1edc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1f9098c380abfc2f91f7376e667ddd1e" + ], + [ + "sha1", + "21c6a4fddfc25d8fee2d4de0bd1d987879fae778" + ], + [ + "sha256", + "265afd8ef2aa1bf06624328a7b4d5e5bafffe179d7923327a5ef08e808aacdac" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test335", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test335", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2599, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7c9a8d84-58cd-5e73-9b25-c79be875fdb1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "72da30c62259b3fba84bbe56a113829f" + ], + [ + "sha1", + "f4e37f38f0b0816573d06b77d0f4c7416678976d" + ], + [ + "sha256", + "5cadfc99f6b8a3dc04365211c287811a7b2dbd68dbcb9450fc54f947580ceee0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADMIPS.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/MADMIPS.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 31888, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "7ca0dcb2-c4d5-5005-aa8a-8a0d25df982d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6f4d8da165d3833c241dac6bf54e9bc5" + ], + [ + "sha1", + "cbdae630a998faa04cb2e2198cfd5faa93a35667" + ], + [ + "sha256", + "83b1214443a2a5e3d57d9a796f4a37eb179ac79518c3551d10dee3cda7883787" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "mapsym", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MAPSYM.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MAPSYM.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 11776, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "7cfd307c-c983-5f1a-b9e5-dc2aff1622a0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "089e07d6f14be8e0de62dece7fb581c4" + ], + [ + "sha1", + "054b855aa5ca3bba358baa81586ea7a5d91cde74" + ], + [ + "sha256", + "9ac90034c4bbbe0ceb4561873cf0f51d456406abbf095ea450b4ab75fdce758a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGES", + "path": "FD13FULL.img/packages\\net\\curl.zip/doc/curl/CHANGES", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 215194, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7d2dfd4a-a64c-58e9-afdd-e2f0dba121f6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8070f5d598dce9ea17bd79e524573c8f" + ], + [ + "sha1", + "f307af210ab731fb8f4d017d94812a625483462c" + ], + [ + "sha256", + "73ed0610feb4925df660a4b8d3cd614b1c10ae140b7c5f777ae189539050e69a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "odi_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/odi_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15057, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7e0dcff1-2c96-5b30-8ffa-e9c1ca16fe64": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e92980d2bb15d960be24c8db30c9ddad" + ], + [ + "sha1", + "9e9af5b17ff0309fba52a4d4830916f5c0ee41b1" + ], + [ + "sha256", + "b31e90f1f01fa6071eaf2d8654ae35cdb9859978d3abd1b127b0ddda966cd2c1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gkrellmrc.vim", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/LFNFILES.ZIP/SYNTAX/gkrellmrc.vim", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4433, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "7e38c8dd-6cc2-50f7-8710-ef8fcb6a5ca5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "864894d58f665e231fd432b505a7e8d9" + ], + [ + "sha1", + "520c94c060d26fc03d1e7380d8b96ee6ff087b24" + ], + [ + "sha256", + "e3c210f10ce57a65407660e9d4260bf400f95c66f4a413ec01f4e1e98fc9e352" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "export", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "EXPORT.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/EXPORT.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 13824, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "7ebd297a-6e7c-578a-aa0e-1c757450004e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bad7d23397427adb08e1799127069c18" + ], + [ + "sha1", + "9a15473a19181971ddf85d4b2849537941d2f9df" + ], + [ + "sha256", + "45ae636e5cf0116781e7bbd0a939561f8f628ce22ec8485e8dbf27e87beb8e2c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1296", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1296", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 795, + "subtype": "None", + "type": "Text", + "version": "" + }, + "7ec55839-3120-543c-aa5d-6611e1a9041c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4f6f6d6116ba71ce085b0ab4d3979811" + ], + [ + "sha1", + "35c14c91da60b9457f1221d12816f76f67e1468a" + ], + [ + "sha256", + "c58051b3820cfae2fd915cf2b11470ef9f295ce91aca724c7accbed6810a8a2a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/hu/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16728, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7fe589ce-cfe6-56a9-bbdd-f83c8d51d763": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "da0d1221c38d203fd594f97c41d009da" + ], + [ + "sha1", + "ad2e04fdc488152ae8caec3eb218ba42327375de" + ], + [ + "sha256", + "224a5cc402e141fc0e9e4c32ee530f3778f9f3d8f3bb1cac840d8f0504191041" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DATA.PFS", + "path": "FD13FULL.img/packages\\games\\noudar.zip/GAMES/NOUDAR/DATA.PFS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 213595, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "800f1829-7f65-5d87-9242-d9501b142de1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7cf71130828d19ed36a53f9ed23c903a" + ], + [ + "sha1", + "eee4aaf4a1ab71d472f0f2336822a09a60ebb576" + ], + [ + "sha256", + "3c344779132d0509f15d9491282a70d9a67726712de0f98ded3acc623895ca1b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "INSTALLATION", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/INSTALLATION", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 65252, + "subtype": "None", + "type": "Text", + "version": "" + }, + "80189d0a-9fee-5b1f-aa36-043c7e74cc7e": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bc97d9e8c5980824e13bd0d05fb33ef6" + ], + [ + "sha1", + "857828277615d309ced8278f999bb86cb6ccc14f" + ], + [ + "sha256", + "06bdbbc488936c45faa2a6baf1080ce442d533446eda81ef057f0b00b67dac33" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TDE.RC", + "path": "FD13FULL.img/packages\\edit\\tde.zip/SOURCE/TDE/SOURCES.ZIP/TDE.RC", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1012, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8067643b-ae41-558b-b21e-69cae13e4065": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "10a4fb9a0cf6b1fb47ac17a42df6ea7f" + ], + [ + "sha1", + "caa0759ee9affc546a4923643ec7faf550461bdb" + ], + [ + "sha256", + "c97e63bd15b215c85ad905d4e4b0232c833285d32868fc7bee8570c82a4a22a1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "configure", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/configure", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 234082, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "8076568f-003a-5fe7-a0ec-5c5ba5249b9a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "74b82d175b13b36febec4f1b9d7fa86c" + ], + [ + "sha1", + "64f24960a5a2d7dac5cef546ed8ceb0126e06103" + ], + [ + "sha256", + "9c332da4f0eec42c0e65131990cfe3a28b0416e94da806a4a62a0bca0c30a661" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.ssl", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/README.ssl", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3062, + "subtype": "None", + "type": "Text", + "version": "" + }, + "80b435e1-5b11-5f3f-82d8-2f0d42606b15": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f5b645663e43dfd247e64ed09b2a1069" + ], + [ + "sha1", + "791a5cde1ddcafa67b9f2eb543309c1a68e74c10" + ], + [ + "sha256", + "52109f681a084eba4309c4db753549946eeb9f80d24807fcd66f278c1e07c579" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLCERTTYPE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLCERTTYPE.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2685, + "subtype": "None", + "type": "Text", + "version": "" + }, + "810b2dd3-7ed5-5f43-b986-3f0c0820e902": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cd8ca253e277414ddbe7770253c7a3cb" + ], + [ + "sha1", + "c42a920c9711811e5e39fb96a51f20d0ea9a5742" + ], + [ + "sha256", + "b365b3f9b1956b9f1d26fd63ec3b27707ca01f77e4a4e964dd17c8d5803b07f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1088", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1088", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2330, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8117516c-e34d-5d6c-845e-ec8d9fd7b3bc": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "66f25cdc7d797939104b6660b323ae20" + ], + [ + "sha1", + "9ffdd91c68dccfcac6e54306b8870109bcc430d3" + ], + [ + "sha256", + "ab33687e0a6552f0f4ed9fb35a71439bb615d08f6a37137643fec8554a71160d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vo_s3fb.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libvo/vo_s3fb.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13538, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "816f8945-8549-5569-86f8-38657a52891d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7ba692f70835dfa7d53758b52eefe2f9" + ], + [ + "sha1", + "a01013f23d0b38ee0ae1bba5bde7f564fe68fc98" + ], + [ + "sha256", + "118346e99eb72062273a05eee45cb62b8ce70659861d74d1ad23f7410d9431b7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "extlinux", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/extlinux/extlinux", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 56208, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "81878535-de80-5c0d-a235-b50261ccf4dd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "489548d3a044d0236465d5adc5ff3cfd" + ], + [ + "sha1", + "2c82c8cb42c6afbf8fbe4913128890c4be7b9e04" + ], + [ + "sha256", + "605866c81155eb9e6771138c6a0a89cc7c970ce5a2b88f8a9d9dafe550a30bff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "COMMON_B.TXT", + "path": "FD13FULL.img/packages\\games\\bolitare.zip/SOURCE/BOLITARE/SOURCES.ZIP/SOME_TEX/COMMON_B.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 4182, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8198abd4-0b53-545f-9f81-47c346609e93": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3f7b5de19c62b0ebfef41d059f0586ec" + ], + [ + "sha1", + "2a9f91bdc0a891a3dd8f900c6470bafd290b1745" + ], + [ + "sha256", + "0a8b6f6d9d88461732c61d83754d2a114e5da1420ea689718e88562e5c601a6a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vimtbar.dll", + "path": "FD13FULL.img/packages\\edit\\vim.zip/SOURCE/VIM/SOURCES.ZIP/src/vimtbar.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 35602, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "82dd9d1c-cc59-5813-a41c-466bbd879c1d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a89b9808bb80c8d0f4a2c84118a91b87" + ], + [ + "sha1", + "9dedc55195c5e548be64bf514586873f0acf839d" + ], + [ + "sha256", + "865dd3bb91df0b454c7b11800b687b1884cc9321aa8c6386e6375ed56d223971" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tcpip_ap.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/tcpip_ap.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8463, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "82fdb54c-0c24-5441-a194-fc6234de8737": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "67d2bb67a3bc5a338df6347e23de2dfc" + ], + [ + "sha1", + "ca580effadfddd89ab01fa619f27f4be44299f14" + ], + [ + "sha256", + "0b96366f3cfb3cb5a4faf31e79cc44b8da65e0f959354797601669a8e22b6b73" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "hardware.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/hardware.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6801, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "8312633c-de2e-5c8f-9d2c-b7c6f64db380": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5cfaa6f270dffbb8b3273f9f7f234682" + ], + [ + "sha1", + "d630651c4b77dcba4e04292dcdbbf6bff3d46384" + ], + [ + "sha256", + "1c4a5d8c62e97464cdfdb3a01955008c526c801ed7428ab45e9a58827510200a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usercertinmem.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/examples/usercertinmem.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9079, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "832c3e81-5238-5035-a862-29cf7c17d148": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "13ca0c40c7cbe62b30bcc1e097f5715b" + ], + [ + "sha1", + "ee264eda524dfc079dcd99d58de05a5bfa492838" + ], + [ + "sha256", + "9e6d09c7e9781db8187e642baba62a215ef2832b808aededd6fd6e7e38711e36" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cpiface.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/cpiface.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 105200, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "84976687-6317-5329-9908-6d9e2e8fe42e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b92b755f3d5a37450cd35e6275725bee" + ], + [ + "sha1", + "9753ff8a51892884ba0f4880ceb2ccd4a9256168" + ], + [ + "sha256", + "4d9042398c0868874b18bb63b9268be79ce694aa8a3c432734fcc85a613c3356" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1145", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1145", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 543, + "subtype": "None", + "type": "Text", + "version": "" + }, + "858f0f6d-40cd-55b8-9651-381542bab619": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9316f58398a72dfade74ecdd63d2bd11" + ], + [ + "sha1", + "9c70329f1d78de2e117ddb8183802e3162c0ca68" + ], + [ + "sha256", + "c17012cd2687aebbbabdba5185a7ec8b8dcf2248bf5a80e6b6b91f0b832fe157" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fdask600.bat", + "path": "FD13FULL.img/freedos\\setup\\fdask600.bat", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 3349, + "subtype": "Batch", + "type": "Text", + "version": "" + }, + "85a1e172-a9d0-5641-9093-3690fdbf704f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "73db308194bbf11457a041c011642296" + ], + [ + "sha1", + "cb3e982ee5518b903cfd2a70af844b9cfb989ce9" + ], + [ + "sha256", + "a1c886f5921fff4e59a7b9b9a417d43b3bba6eaec8190a5f4e30111275fa580b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "plrbase.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/plrbase.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 9215, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "85ac4c35-dfbf-5362-9962-69f4871c33f5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "18be8e0415c422e8d4e47e087dcbcf0c" + ], + [ + "sha1", + "33227a66c524f8b0fb303210841d65e861be31a1" + ], + [ + "sha256", + "2468e4cbad6aaaf28c942e0c659d7dec0f33ccfee94834888d29a1c16b20a12c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "asmc.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/asmc.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 309760, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "85d1da1e-7ffe-5940-ba25-af789d7d4008": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "21d839c21fbe9154033e72872b46517d" + ], + [ + "sha1", + "93ddf224c72cc6bb0d58c8b2423182484589b77f" + ], + [ + "sha256", + "a02cd496527dd71c99a2acbcd72c948f9be4d7d2ff3bc94c2bd478cbb7ba31a2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "file_icc.c", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/src/file_icc.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2310, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "8672daf6-9502-5fe2-8e31-509f86bd450b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "325b62773d3a733b65c12008bfc0c099" + ], + [ + "sha1", + "813117e0857f52803417f0a82b52ef1ad395f143" + ], + [ + "sha256", + "e72400829fd7545517ce16fb9474fcd5f16af891d2e887e78efed20fbc901bc5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test523", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test523", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 949, + "subtype": "None", + "type": "Text", + "version": "" + }, + "868c93e3-18c7-5ca8-b10d-be90de507bf8": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7e0de120607e880c14d95b9f10c2dc46" + ], + [ + "sha1", + "d25584767fba7a8faf151a82985e8afdc10be9c3" + ], + [ + "sha256", + "d44ff3ea2cbb1bf5ba7edbae3e63e73ec72d423600b5a525040dd5cc23f6cf2c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MANUAL.md", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/MANUAL.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 36899, + "subtype": "None", + "type": "Text", + "version": "" + }, + "873044ad-dc6c-5bbb-8050-9ee78cf7a8a5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "fed335efbfa698e19856ceb882c4f6fc" + ], + [ + "sha1", + "bd00329963d75739da5b7967c2346e175fa9c843" + ], + [ + "sha256", + "6bd77ae485a4ac21ea34f527f7b653e66595ec8b285dd0aedf517dfe522d63a3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "intro.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/intro.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9373, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "876b1250-2b1b-57be-8b34-b99b31f38142": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "49f3abfecda51397b97727c230b00871" + ], + [ + "sha1", + "aeb360492b6f8b7f628073e8ab1bee52e82ac89b" + ], + [ + "sha256", + "ce63dc2899afc6edefed513c541aa2eb7b13d68a9370358c50b41edaf51b2471" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/it/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16896, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "878afad7-701c-5e49-8947-938530570005": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0d122d5b89f3017f8bd78b46b6108589" + ], + [ + "sha1", + "a7e88d6992a658e970d7553335e4b648be2eb607" + ], + [ + "sha256", + "4601e6f1bcbed6ddf72d45ef195c57117d0d6ead40d9e2ac1b80ae9d5e67dfbb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fopen.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/examples/fopen.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14206, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "87d9bba2-15cd-56cf-a661-8e8d526b4a7d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8dc49dd5bcb03ce3976c109351d521a7" + ], + [ + "sha1", + "02e5c03194f516fb87eddb5d0b465d6fffc81ad9" + ], + [ + "sha256", + "6ea53171c0ddf082bf7e36d086662fb4d2d38d568197bf64e799f5a977e210e5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwnone.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwnone.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6800, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "882d369e-0677-5949-983e-2b2e521338de": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "13bef2974de758c03c9eddd08258d001" + ], + [ + "sha1", + "30641100bf50d6e446f1f5fa82c1acc51f10e533" + ], + [ + "sha256", + "451a16e05997e12a3689ffd7f2ccb90e1ce31d54717460ab6eaf6b9f2fa17d7b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/fr/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17203, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "885ffd02-5ae7-5212-8c4b-033f50970b92": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9a3fad467d66f4b4ce7dd6450db7379f" + ], + [ + "sha1", + "d33ac7f53dc964c11ac9c222d7679f2c2e62818f" + ], + [ + "sha256", + "01811ca9e705f83e85bccb10ae9b76ab96ce57fd83c49a94380a8512c0c32ffa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PIN-READ.ELF", + "path": "FD13FULL.img/packages\\base\\graphics.zip/SOURCE/GRAPHICS/SOURCES.ZIP/EXTRA/PIN-READ.ELF", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 4620, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "88dd4075-f77a-5484-8955-556969a508bc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ab9c0b4db987c6c4923c017ed5c4f087" + ], + [ + "sha1", + "bd0a16e5529b0f866d0d06fe6f503e29e2f8c073" + ], + [ + "sha256", + "b67881053a3680551feb54be0fe1bd03132049cab7df0631112e0c0119bdcf8b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devppas.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devppas.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5796, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "88df7986-3ef8-51a4-ac3a-f6f8bbf60ceb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "07106a09eaa37cfc3e8339c03fa42dbe" + ], + [ + "sha1", + "f8a31340cbd9c56cf32547b02160cbdc087d3106" + ], + [ + "sha256", + "b466b53600852b5c41e1b0bc37dc319b22f823f5f01f53742603dd1b24157107" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TCPSERV.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/RDOS/TCPSERV.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 19968, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "895741f4-c779-5850-8ec5-51ff8cd9d31c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "73a52df5323346901b96fd918da76580" + ], + [ + "sha1", + "12825b5d54c18e8193436d0cbfcef92d2a4a209e" + ], + [ + "sha256", + "584d9c8e49cf371047e2f4b758bfc61810e9bca0f270b6a459f148807b65335c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_SOCKOPTFUNCTION.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_SOCKOPTFUNCTION.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5014, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8972ab8e-8efa-5b12-b51f-69c0b84cff96": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "489548d3a044d0236465d5adc5ff3cfd" + ], + [ + "sha1", + "2c82c8cb42c6afbf8fbe4913128890c4be7b9e04" + ], + [ + "sha256", + "605866c81155eb9e6771138c6a0a89cc7c970ce5a2b88f8a9d9dafe550a30bff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BUG_REP.TXT", + "path": "FD13FULL.img/packages\\games\\bolitare.zip/GAMES/BOLITARE/BUG_REP.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 4182, + "subtype": "None", + "type": "Text", + "version": "" + }, + "897b87b1-b8c5-5535-a304-23c4e61cc4f7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b83d6128ba856ed6b8cd0f2ca8d072ca" + ], + [ + "sha1", + "14b8a33278718be4d8030a274a6ce0c240ac5169" + ], + [ + "sha256", + "6a284b20221c1f482fd8a91a9c1683951570f023d1e43bf211c016a63e8cfeff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/DOC/ZIP/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 12748, + "subtype": "None", + "type": "Text", + "version": "" + }, + "89b9f766-8319-5eaa-8f0f-4b785f596c2c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "790d35f101fe0d4e422c251a51ac67fb" + ], + [ + "sha1", + "5c7a2b4f2ef3945cc2772f19c85538b112a16e7f" + ], + [ + "sha256", + "43b14594d4dbbe27ba816f749baa3c6d91def74677202c1bcddcbc4e8504ef72" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "testuri.pp", + "path": "FD13FULL.img/packages\\devel\\fpc.zip/DEVEL/FPC/examples/fcl-net/testuri.pp", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4479, + "subtype": "Pascal", + "type": "Text", + "version": "" + }, + "89ceabdc-9205-5f79-a8b1-c718454506c7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a3d050cb642f75cc458813cdf17ece7f" + ], + [ + "sha1", + "c57bfedd34929e941b607754778cd373e767fa9b" + ], + [ + "sha256", + "5afedcc28f002a3b1e1bbbf36867b9c0de8774b9932e2a0baaf934f78c1e89dd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TEL386.EXE", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/NET/SSH2DOS/TEL386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 145525, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "89dd8fa7-af1b-525a-aa44-f0ebc8b72896": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c2bf10b336959dd2864333fc323afc22" + ], + [ + "sha1", + "bf86f3f6b1cbbe482cbd950a8aab176473c4ff0f" + ], + [ + "sha256", + "cb60946040b1877c801cffbcbfa7242a85b0da5293a6998674a95738c651192b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1401", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1401", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3557, + "subtype": "None", + "type": "Text", + "version": "" + }, + "89f48751-e20f-5830-a7d8-afe194844a6e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3cf0f7ccdc3f3ce29857c57384758ebb" + ], + [ + "sha1", + "5140869b01d1993026f656b1dc71d770c1198405" + ], + [ + "sha256", + "2ad5b067032899dd019d7a589c0e01ae54cccb650c9cc86e7d7d9c22320c8182" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test233", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test233", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1838, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8a86a95e-05da-5f4f-8041-d1c38c7b8ab8": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b4078d8d3c98772e7f444e986150171e" + ], + [ + "sha1", + "b1ac7a03f6127563c20ad75ad10414199c7ec174" + ], + [ + "sha256", + "5325cf3f783eaa265457a1f54425c6fa93b880113ae15cf12fe20c8cb9dfada1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PPPVOLNY.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/PPPVOLNY.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4562, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "8a9774bf-6451-5740-937d-e5ca11948c7b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d2e8c9b0f374dbb170b1c7f374feb027" + ], + [ + "sha1", + "72e6a0bbe871f7313b68407537c15ed9f603fc8b" + ], + [ + "sha256", + "84a08d88d56243ff4e5675e83e1d89a3652ab99c99006b80033e25cd2c6e4995" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "VAPC.VXD", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOURCE/OPENCP/SOURCES.ZIP/VXDAPC/APC/VAPC.VXD", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 4486, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "8ae54b3d-5688-5b43-b309-0556c26d5c45": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "ZIP", + "hashes": [ + [ + "md5", + "b07eb629bb7cc269682a058872214004" + ], + [ + "sha1", + "bd924b900b56e994a58faa82d2e998f5deb8fb6c" + ], + [ + "sha256", + "233cdd3eb2cc0502af9d8f75e9a6314a5e3533469e2394cce89cc5528110a88d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "zipper.ppu", + "path": "FD13FULL.img/packages\\devel\\fpc.zip/DEVEL/FPC/units/go32v2/paszlib/zipper.ppu", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 126685, + "subtype": "Archive", + "type": "Binary", + "version": "Generic" + }, + "8b1d895f-900b-5c51-a7eb-ce4fcfbedd7c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e782872d9dd48df696bc335b253ae52a" + ], + [ + "sha1", + "2541f11e3d9f5cbd90af01f43a2ca8cb55870edb" + ], + [ + "sha256", + "7a5a597e4ebbdf2ed0f0841322f4383a61282d2a7fb78bae15de843daac91a45" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1264", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1264", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 442, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8b2d9ca1-5774-5d79-97a9-5f75054aad62": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5910f3393d98a4a67f375f15b6871a8b" + ], + [ + "sha1", + "0d9b5f8bad55ba593f84aac18bed34ec6009cb23" + ], + [ + "sha256", + "c0aa3e2b4ce424ba1a108d01f2de1a6e8b53c0c4c55c4dba5daa7096412e8479" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test549", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test549", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 940, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8b7b6a47-e2bc-5cbe-96ac-56a8f59fb98e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "29a4874f71ca4e16504d6cd1c8e2e77a" + ], + [ + "sha1", + "971df1f44cd5309f7a3ba497e060a8cfe82112f0" + ], + [ + "sha256", + "37f59a941c03f053f021db07f62bf81416b1a814e6395b14b36fa09eeb7e11b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WATTCP.CFG", + "path": "FD13FULL.img/packages\\net\\ssh2dos.zip/SOURCE/SSH2DOS/SOURCES.ZIP/WATTCP.CFG", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40665, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8bb54f5b-7ab6-5a2e-b10f-d2e1ac0be7f2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e04065af05a8afcdab1a1c7263f5d371" + ], + [ + "sha1", + "d373e3fbd417801bc7e5b1d4d7191e2d4b107ca9" + ], + [ + "sha256", + "0989008607d6cbc63d2e43fb8877915b3ef99cb4a917068e4dba5055cc2df8c2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/de/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18183, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "8be98742-e7e6-5f56-ac73-3f63bb449434": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "533fd834ffc0e3b205693884257d9981" + ], + [ + "sha1", + "c965e576b9f35560776294ffceeb738ee6e6fcc4" + ], + [ + "sha256", + "635b90498d652ee5f8403171d3639eba5da43a01f816187bbffb575047edeac3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "idna-tr46.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/test/idna-tr46.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1115, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "8c199bed-a851-585e-b47a-1b524b633207": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "ef160d7f3cb823e405f078f38c72d21f" + ], + [ + "sha1", + "6ae3ebbffe07225dc9ae9bb1ea42fb30b0c6c006" + ], + [ + "sha256", + "226c209a28df0a27fb056e7fe11f6de00b19eb33c0bbdf908850ec0d2c90c900" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/hu/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5632, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "8c4c9afc-ec40-5276-b71b-e60bed881ebf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "dcb09ad20b116115ee8f4a974557aa14" + ], + [ + "sha1", + "2d110406602c620c87fe2116b1dd6ba2845d6c7e" + ], + [ + "sha256", + "d8f7ef018ff64191c1897292467f3c8ab6e8eb318941a4a675699b965fe8bb90" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SHRDRV86.EXE", + "path": "FD13FULL.img/packages\\drivers\\shsufdrv.zip/BIN/SHRDRV86.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24855, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "8d2a8cce-d01e-5182-a92b-17d0f1cbf522": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PNG", + "hashes": [ + [ + "md5", + "a4a41d5ebdcd98be10708ea599f6dc1b" + ], + [ + "sha1", + "18a0faaeb17256d599e9cb5f1af752c06118b9c8" + ], + [ + "sha256", + "16e5b40fb2600db1af20fb79ff715c2869255e2d4bef20702f16534e5dd6a847" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "xd9n2c08.png", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/stb/tests/pngsuite/corrupt/xd9n2c08.png", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 145, + "subtype": "None", + "type": "Image", + "version": "Generic" + }, + "8d41288e-7922-5b15-9e97-01c60734eaa6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "PDF", + "hashes": [ + [ + "md5", + "dbc7ad2b520f513ef7702cb5648c07fa" + ], + [ + "sha1", + "601a12062fe42f4787857b7648b913dd13cff037" + ], + [ + "sha256", + "1217e0fe2ae4e6d2860ad2823fd746e2ad0706daf2f262b2b67ed860a7b61356" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Composite Arithmetic Types Are _ the + of Their Parts.pdf", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/presentations/2017-05-16_CppNow2017/Composite Arithmetic Types Are _ the + of Their Parts.pdf", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 300592, + "subtype": "None", + "type": "Document", + "version": "Generic" + }, + "8d8cdbb2-32a5-50ea-bfbd-c7a67cf222a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "549eb1cee54faa39ae310849cb5f2564" + ], + [ + "sha1", + "5f20ac4bf58afd7f088d5a76672ee0716d26d2f7" + ], + [ + "sha256", + "6647cd846c5d4ddb5ed92869eb031194c3b0b8840442f2a37c437ed58fadcf77" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WASM.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WASM.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 301045, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "8db4d475-8f0d-5581-b23c-5e89d937a161": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "aab39ee0388b5d70a4a26b3980d7c7c0" + ], + [ + "sha1", + "f70fc2ee9b5504bd623d50527fe55d59a7515a35" + ], + [ + "sha256", + "35e62d0adc51f89b05a757ad9d6f0553d19cff94cbb046d26f98b8ea682e1aec" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-firstSAN-sv.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1191, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "8e22c260-0b0c-5e00-984a-315c4d3c684d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "78e24c37f05d5aabcf3b1b204e384e4e" + ], + [ + "sha1", + "d9e32325efc23d41e3f825da6ed8edb737b2439a" + ], + [ + "sha256", + "02b8da95a712b8bdd63bdc85309df72965bc889a17c5cd3e60f8d68bf223395c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vo_zr2.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libvo/vo_zr2.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 12871, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "8f1c0595-b90d-5550-ae0f-bf93fe1fed0f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "840bbced6969577421dcff347c009238" + ], + [ + "sha1", + "48dc73be868a6fd86dbd176405279518175e29ab" + ], + [ + "sha256", + "d00231e857aa821f9ca1519681463fafea852bb437c9b0ca49ab341bdee04b55" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FAQ", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/FAQ", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 64796, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8f393dc7-4c4b-5bd0-8414-4cd87c5dbf2d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b009ce1e3a693992006b1f240f33ea8e" + ], + [ + "sha1", + "e0665e719b77d1764eb2f4b2efdf6efa6e02370e" + ], + [ + "sha256", + "fd36541aa456ec51bcaf2f50b616ad9a931f92fb1e4a339af3a3c8021a63770d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.com", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/samples/lynx.com", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2192, + "subtype": "None", + "type": "Text", + "version": "" + }, + "8f41e6d2-7f53-5282-aa1d-4071c9797a20": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6bf6a4414440e975f8694d61299d353c" + ], + [ + "sha1", + "0c3a36e679b8f7cb0dce89efcb4e7b7f56bdf653" + ], + [ + "sha256", + "e475422e9678225f3b95c2ec076ce824950f9dbab9356083b2d03ff5f1c70d2d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ECOUPLER.ASM", + "path": "FD13FULL.img/packages\\net\\crynwr.zip/SOURCE/CRYNWR/SOURCES.ZIP/ECOUPLER.ASM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14028, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "8fed085a-d34a-5cb4-b59d-9cdd1a4c15eb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f7c217c317975a52a036d1a34edc0c46" + ], + [ + "sha1", + "cc1f45839712f4da01aedbede50c6eab7006d16f" + ], + [ + "sha256", + "312e8ed8094ccfe9bbff2528b8275c8ec2e8fd2f3470269c01010a5ee3011c82" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "EXIM.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/EXIM.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18387, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "901487da-dda2-55ac-9bfb-5ccc2df3b08d": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c7161424f97a4ac320881a71dc157044" + ], + [ + "sha1", + "fb72717766a959ba99d045273469db0f3d00dcb9" + ], + [ + "sha256", + "7905526b366579a048e7d8487fbb2eeaf6e614b9dc596417b6f41ee17d26ab1e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "LYUtils.c", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/src/LYUtils.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 192781, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "9114a616-5b34-5239-9621-1ae18f948721": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "de2cad29f1141795a3fa76f3bf24090f" + ], + [ + "sha1", + "6d8083e76fac9e0de4b1ee4bbad25013f41a3117" + ], + [ + "sha256", + "51b510a4037a4e43560977c191167175254155de4385da1c350e112c02ad19fd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGELO", + "path": "FD13FULL.img/packages\\archiver\\arj.zip/SOURCE/ARJ/SOURCES.ZIP/CHANGELO", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 66230, + "subtype": "None", + "type": "Text", + "version": "" + }, + "91271f5d-3848-5d67-8f11-f7d0ce6bfb5c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "2e033e29c696785e854c1245f928d492" + ], + [ + "sha1", + "4c37b21e8774850ddcd9248c42db8e7315b05cff" + ], + [ + "sha256", + "b05c4d1150c20ef37713ccfd6c971a000ff7499f9f7386d298b0834a89e51119" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MAIN.C", + "path": "FD13FULL.img/packages\\net\\arachne.zip/SOURCE/ARACHNE/SOURCES.ZIP/CHANGES/MAIN.C", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 45713, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "9155e89d-30cf-5686-a54e-210ba5079e28": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e124be57f926a7dce7d6d978a49f5be6" + ], + [ + "sha1", + "6d29cdab7739f5f4ef0fce853662f61768a031a1" + ], + [ + "sha256", + "f2a0a4f2213f1bf669761b52568d160b0faaf894fa862188780e4ad0c6e0dc1a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loaddmf.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loaddmf.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 10333, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "91a73c7e-e6f8-52ca-9506-143dfc2664c5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5032680610d582f4b99f9df8986432d3" + ], + [ + "sha1", + "8a9a134f352cfbbac76c13b3a74269c8e0f61be0" + ], + [ + "sha256", + "a5376d6cf530d844acf043590567514e88d46c7cc65cd5f832a4ad013f1eb3eb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arczip.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arczip.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6537, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "91dce60b-2549-520a-b4cf-212b530977eb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "53f71c774e2770ab59b02df54e9f59bc" + ], + [ + "sha1", + "eae27fc72e52cac7af6307100acceb8548977c2d" + ], + [ + "sha256", + "95e4f86dc9d2491d789b8d74cb13f6fe2477e272bae207ed2cd8af5614901fcb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test331", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test331", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1083, + "subtype": "None", + "type": "Text", + "version": "" + }, + "920814af-1e08-52de-8769-4d282e9eb0ac": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "18f48276dcab8cd55d52254de1c434c8" + ], + [ + "sha1", + "28670faa9348561b29f8403ed46f1abacce64d5e" + ], + [ + "sha256", + "9070fe564949c5ba5b30eae1491860598e63c52dd5bedd0101bfc96f94ba1397" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/SC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 98618, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "925507e0-8773-5518-a339-c54c7c65bf5f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5c319c0cc55a620b88fadc72bc61a858" + ], + [ + "sha1", + "80bf881c4942fb9e519977c6496c6cd3e88a2c78" + ], + [ + "sha256", + "92788a4e1fc7dd9b004f7a88e362fff62c1a5aba3547c0b527a7c00e76e65ef7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da", + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mw_err.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/util/mw_err.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 14336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "929441ee-8b99-5e45-a891-41cbef47fdb4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f2ac9c83615289ab45f718e877442d83" + ], + [ + "sha1", + "13e0e4c93124afad2a5fa2cd5a8ac63ac9cfab85" + ], + [ + "sha256", + "670c98f13187e989aa0b614ad14263a641a255ad7be18ce721c18969bce4e44f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_NOPROXY.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_NOPROXY.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3490, + "subtype": "None", + "type": "Text", + "version": "" + }, + "93881f04-6cb7-5b9b-a389-f1e1cfd19862": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "15d19c9b055c59ea2586421ec956d29f" + ], + [ + "sha1", + "3c299e7886af982eada473412959a6a562f84795" + ], + [ + "sha256", + "fb4f0c240a3dd2f075fde5d2cc3fdf039519bfa86cb2f046ae07e3ae8f1e6eda" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FMEDIT.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/FMEDIT.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 45092, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "93b9ac56-5ce4-5c49-b835-b956d7f39751": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "11212560bf31c561189e32abc2db1dc9" + ], + [ + "sha1", + "30d45d3d4cc6a8e94780bec06096754a83a5bd79" + ], + [ + "sha256", + "a111be6d0287f6df550d67c35fcd733f67e7fed66e9713a676a7bbb032f73d1c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ChangeLog", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/ChangeLog", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 232308, + "subtype": "None", + "type": "Text", + "version": "" + }, + "93bab5de-d269-540a-9cd1-f39dddfd3c66": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9e1aa1af1a5124b5544f1e6e124a43c7" + ], + [ + "sha1", + "fcc4260e6a4f989fa9ed9da56b105e4e6a5f157d" + ], + [ + "sha256", + "ecf6f7164195250286263c1cfc783f50c7a313e2b6a5ba1d05d8e5c3870b343e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "unit1655.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/unit/unit1655.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6938, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "93ce7ba1-f1ee-5f93-be92-a82e34204f7e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b4edc2c34c60fefbf2baaa55ceef470f" + ], + [ + "sha1", + "0db89b5f1b87f9fd9f7d03e2c2eefabec66826ed" + ], + [ + "sha256", + "28058d437862e19c096a6df034afa90de396c2dfcede5ffe3eece2097a7d29b5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gpxelinuxk.0", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/gpxelinuxk.0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 89292, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "94c0977d-69b8-5898-9e08-e68a217096c4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a94884faf75e492e7c211f6a64de77c6" + ], + [ + "sha1", + "de1de8f35c7b08e045be29b2f44351425bccdd01" + ], + [ + "sha256", + "4c2a9360584164843987fd95bc4048faa4a4ce84090fb0ed98da19d91ff4dcdc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/ru/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6627, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "94c3f39d-a4d8-5ef1-ba5e-d64d3151984f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "16efe218826559ceb3c10e8dd5c8060d" + ], + [ + "sha1", + "2690bb7c088c24f6c030480abadd8c07558d0c47" + ], + [ + "sha256", + "c907c5826261d0718421b4665391f183eb7bb38f7c51962fe9665bd9e44c10f8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SYNTAX.HTM", + "path": "FD13FULL.img/packages\\edit\\mbedit.zip/EDIT/MBEDIT/DOC_HTML/SYNTAX.HTM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8939, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "94d91f85-0c5e-576c-918b-01a47e4ec04f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b07e0842d8ec89086b2d2e4f12cfe048" + ], + [ + "sha1", + "ae8bdcd157de2044f3f045d15e05b392d63b0596" + ], + [ + "sha256", + "23e3d08851e0983f3f2fe92fa85278ddf3cda9f48b34f204f297c6009c9773a6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "QUICKFIX.TXT", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/DOC/QUICKFIX.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 61787, + "subtype": "None", + "type": "Text", + "version": "" + }, + "94e28506-7fd5-5be9-809f-fd22c20ecd45": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d2e8c9b0f374dbb170b1c7f374feb027" + ], + [ + "sha1", + "72e6a0bbe871f7313b68407537c15ed9f603fc8b" + ], + [ + "sha256", + "84a08d88d56243ff4e5675e83e1d89a3652ab99c99006b80033e25cd2c6e4995" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "VAPC.VXD", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/SYSTEM/VAPC.VXD", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 4486, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "95aa1f63-b83c-5537-a76d-e2eb76d38591": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c6af8e88bd08872666bee88f3b86c8a0" + ], + [ + "sha1", + "328b226192b3a9de2d34cabc27f6deca0577dec8" + ], + [ + "sha256", + "8050d15a0deb5125b281a6690a912472d59d006021ce1c481ece58b16f7d3c87" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1249", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1249", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 798, + "subtype": "None", + "type": "Text", + "version": "" + }, + "95e911aa-6a41-5b6b-9616-464d90ed92cd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1697c1c2be988fcbf4df25edd60a567b" + ], + [ + "sha1", + "7e140dcd1be1e8085d934f5a70d5ee13f06821e8" + ], + [ + "sha256", + "4face65246cfd517da63583bfedd1cbd34493926f675359286f8f2ec90ae780f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WPP386.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WPP386.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1371772, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "963cb375-4f0d-5b22-85bc-74d53c7697aa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5da1b0e11fffa4f43bc5519317601d3c" + ], + [ + "sha1", + "64c6d894cfcb137b404c63bb22abaeceaf85fac7" + ], + [ + "sha256", + "4633ae86eacb00b5830dfca21528e0f091de9aec4026695762e8158ea871e182" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1250", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1250", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 813, + "subtype": "None", + "type": "Text", + "version": "" + }, + "96495cdd-7329-5eab-a9e6-1fc302efd437": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "21d247b680854664a7f9795680634832" + ], + [ + "sha1", + "7b967dcf89fc4297e6587e2b6de44ab7a7674f88" + ], + [ + "sha256", + "fe0827c767bd5b3441a8b5b6cbb1437f6fa7c3c3ee7fc017aaa99d09cc877771" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/it/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25851, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "96c0be4e-847d-5588-a65d-0b07b60d3405": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f462f2a4620199c74a95200e46cab4a3" + ], + [ + "sha1", + "595c2b2f4c382e740040bdb34bca1fd3018c7c93" + ], + [ + "sha256", + "4f87dbe173b8e954eb553f96d8b523189bff0ea61e65f01c424a781f58ffba07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_55_content", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/page_55_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1453, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9712c6ce-7355-5fff-a286-b74ac63fbbbb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3d55bc46806cd78c66d693e9f2d5ffb9" + ], + [ + "sha1", + "e914007ac0033f7ca937b4fa7d270ac86046d220" + ], + [ + "sha256", + "88c96074e11b54bd1a690033d66d99ef26305a32c86da52316a1e56c11c22028" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpmpx.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpmpx.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 47847, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "979b2fa7-43e8-5590-ab44-59088a4e85c5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "693df6d893c0f4de0aa66ab41b845947" + ], + [ + "sha1", + "dcabef1c81fb4033e8feb24c39542111c0c4ce0a" + ], + [ + "sha256", + "01eddf6c3412d2e87815d0115c4ecdc708bb10b2a8f1560cf4ad54bccdaa629e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvi_vbi.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/stream/tvi_vbi.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 58919, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "97bbaa15-e2fa-586f-811b-d5937cafe0f2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e94c13aca55b358772529cb8e6b2b9e2" + ], + [ + "sha1", + "97f6c860f176cad51f1ab0fd3f95c62ab3304f04" + ], + [ + "sha256", + "d706fac78e92339f58572f7bdb43db5d24d7d048a22e89314127eeb4a124fc8d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WASAXP.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WASAXP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 174165, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "97d110ba-2f76-5cf0-9b05-78b91af8cbdd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bbd31d5f8184a788cbb3fc90667d16a0" + ], + [ + "sha1", + "8e2bbca2d0c74628216cfed5f6d7e6442c911160" + ], + [ + "sha256", + "9d9742acadbdd6516716dbac2cc20478399bd2c19cf24b27e12872a17ea5c95e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "macros.ash", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/arch/mips/r3000/macros.ash", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2308, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "98326d41-2d42-54da-ad00-2f9e640e625d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "52e8685bfd6b0ee1e245ef47bbb5ad44" + ], + [ + "sha1", + "5a36a1677e84ae439176f8a5394485265effc8b6" + ], + [ + "sha256", + "1a6665c48dbf5046711def7abcf8c6e7cab4165ee16bf93a51d81657b36fa362" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "rtsp.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/examples/rtsp.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9233, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "9850d441-0c4e-5e4b-9ec7-a421a5ead248": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "93816b3eb8b66545eb37a035456deb45" + ], + [ + "sha1", + "9ba370c026ddc6c4fa38a1c3ba1a46631dd19187" + ], + [ + "sha256", + "5ec58a01f50657957d6078b1cc7c52ea8461b0389ad01f4b2d7349668aa77d71" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playsid.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playsid.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 185408, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "98c6126f-0ed0-5871-ba4e-a0c2601ebdd5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "c2b693c4725906c1ee7f887f3dfb64c1" + ], + [ + "sha1", + "0a6df4a0444136d6a0f33522c3855cd97b1ea297" + ], + [ + "sha256", + "2b57b49b4df57a37faf895208c10761ae0fa57d138f080538741f952652952db" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/wattcp.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5692, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "98c75738-e8be-540e-9643-23c6b984bc3a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "43eb0c317ea2f2193f9f6fbb1ee75482" + ], + [ + "sha1", + "2acd0d3b19bc69fecfbe1de88ffb00381653b808" + ], + [ + "sha256", + "17966ab5421b8d14c214fdf992e466eb23030a589aef339600f95abf3f772630" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mov.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavformat/mov.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 55975, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "98d9d340-9f51-5829-ad45-80eccf1c3f4c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "adb4f2f490938009614319465dcd43b0" + ], + [ + "sha1", + "563846f91a82265144b90eb472469d54e3f569a3" + ], + [ + "sha256", + "e00584928454fc73f5f68289f1e609febfb2e4511d9dd597bc48e34f14ddb01b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "shtool", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/pth207s/src/pth-2.0.7/shtool", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 64513, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "98e0ab24-13a8-5ed4-9367-dac9fae978c1": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1f9cba9a620c59e4b5bc4df336605181" + ], + [ + "sha1", + "9519d4db3a93dd878a023c2918df8bee4186dc61" + ], + [ + "sha256", + "3b6b84889bb1c002f68f1a0165f2976e8914c10380e049575c3cb1732a8ad734" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/ru/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 136708, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "98eb69dc-dcc5-57ae-98b0-6656a866105a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9dd0ffed5bca36a294e98deabee98783" + ], + [ + "sha1", + "cdfc137368529c4f81e069ef92bdd3bf45542c7d" + ], + [ + "sha256", + "5dd2c71221ea524df7899adbf2022eb382a16c44e1aa9af84fdf5fedf13728a1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "f5f5d03d-adbc-495d-b90b-995d5ebaaa7a" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lcc_err.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/util/lcc_err.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 18728, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "99366cf2-8f31-597e-b595-f3e5214c48c0": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7e50878d2beb6b7b47264a6365a4759c" + ], + [ + "sha1", + "719d42a3f7ae0cee479a10d3a1587524742065c7" + ], + [ + "sha256", + "cf5af618650777f93db6f37502258f5ac4bab5ff15a44f8050dd4e7b7affa555" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "p0037r1.md", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/p0037r1.md", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 49544, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9943e147-30e9-5c97-9c3f-ec160923deea": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "fb56119a122d155313ff57f4c092f49f" + ], + [ + "sha1", + "5fc8a0cb4e85187ec6f9ffe1cb6ee806ec2d0245" + ], + [ + "sha256", + "b570c53329e97a0b4e990754d6501100abb4a801e2625961e9f19dc2f5fadac0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NHDEFLTS", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/SYS/MAC/NHDEFLTS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4037, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9b04daf3-b656-5522-90f7-2b88184cf582": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "070bbe2cf456841c601cf9d3576b46d5" + ], + [ + "sha1", + "6b3df9940d10bc3000e5da1dd8dd3de14e0254dc" + ], + [ + "sha256", + "b41a72b05ab3c79f94353f863f7f95bd6bc6967fb9277d73be868fe016179799" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/zh_CN/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15908, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "9b69b00c-0673-53e9-8a83-ed7af81cdd8f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8639cb81634caf23843765129ca753eb" + ], + [ + "sha1", + "1cb84522046edefa2d5926089ab21b4950a4e1f0" + ], + [ + "sha256", + "89b39661b1fe3b4988b57b3a6a9b81914dfc45a4fb770dde16b67015155cbffe" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NETRW.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/AUTOLOAD/NETRW.VIM", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 347169, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "9cda3973-59de-5234-a41b-e8be12a46c18": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b4be179364d742982af2f44d4a804d42" + ], + [ + "sha1", + "0b42fc92ff3e248b79fa6c03f934a7a265b2260f" + ], + [ + "sha256", + "ee89e182826ae44beef373c9e095edf949eca203c2de8699d766f898807e499a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/it/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16544, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "9cdbea4b-cf87-539a-8a77-4983819cf272": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "fb8ca034bd6159d95c214e97012b06ad" + ], + [ + "sha1", + "48cb093bdcb93ab63b27a211f583477195d17ffd" + ], + [ + "sha256", + "3992beb133851bffa6f789ec56007ff36571c498e9853c75b0fb662e406f5292" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/fr/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16735, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "9d34f91e-77ac-5366-a9a3-32daf2dfb635": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "29a71f2efcc65c38fae28b7f8f26dc37" + ], + [ + "sha1", + "487f30fad3bed17b186a241c0ae11f27d8e037a5" + ], + [ + "sha256", + "027cb1e7fc207060bfc61bb5d8e5d0504dd501d5ba7c44e2358d26faa9d740df" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/wattcp.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5677, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "9daab1e3-92ce-53b1-bd70-b8d9d1d476d8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "be2513b50e55aedc8b2b83d24e264091" + ], + [ + "sha1", + "f8cd44576ee52988cf86b9e5c6f89e131256e1ba" + ], + [ + "sha256", + "d4492a3962ec85ef599d7234c05d74106e4f6c58ee09dc0afa42bf1d7a84467f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.8", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/docs/changes2.8", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 204025, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9db799d8-6f5b-5e3e-9b05-09d05e1d8226": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a160944f9d7c00400a9898a65254340a" + ], + [ + "sha1", + "d57e82c421b536253d78d397329db2af2fee5e66" + ], + [ + "sha256", + "62e0aa04ae9248070b026fb77b098ef5b013048417e9fa4359f6db01e7bf2e6d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "eepro100.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/eepro100.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 33975, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "9df40718-19f8-5ae9-aaae-1d369903b611": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5a5a82b04916cefc62c059f8d1b6ea38" + ], + [ + "sha1", + "e2adaae3412236dbd4122a730ac97014e0094738" + ], + [ + "sha256", + "052e559205415cf604ded8d0a794d1087dd35b4fe35318d1e51b4717d70f9ddf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NETAPI32.LIB", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/LIB386/NT/NETAPI32.LIB", + "properties": [], + "quality": { + "effort": "high", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 32256, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "9e931e82-e10f-555b-b04f-1942665ea7fc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "02648f83eb42d0d41d7e17bc3d513b31" + ], + [ + "sha1", + "0004bdcc02a5686b22646b8c55580631f88de142" + ], + [ + "sha256", + "c4ba40ec632c669c38a398a3c4f1ad43197069a9940fd1758d9a35580d7d8cb6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ZOO.EXE", + "path": "FD13FULL.img/packages\\archiver\\zoo.zip/BIN/ZOO.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 85371, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "9eb3932e-1517-5cc2-a83b-01a3234e0619": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3d853be7a6e2d96fee919c248f2fb99c" + ], + [ + "sha1", + "a6b261be038a0839ecff0f244bb09acbda69e3d9" + ], + [ + "sha256", + "f8f621fae041416862858491e6f31da207f3c30d14c2df677fb4f028b312315d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playwma.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playwma.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 39790, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "9ecdbb3e-e0ee-594b-99dc-5b0d78ce06fd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fead9ec7e4c5f4dd3fc8753b1fc9debe" + ], + [ + "sha1", + "5628c04f0fbdb974f7fd7dc2832bf3fc0d78ff25" + ], + [ + "sha256", + "834c108ebed78e4acbaf0bd9c21f132a4b0442d3119b027d43a498b2d2883120" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "tcp", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TCP.TRP", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINL/TCP.TRP", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 6144, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "9ee6f2a0-91ef-5b7f-816c-d870fb6f00e6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "37a84d5e95d7671dd1b03f13e2fa019c" + ], + [ + "sha1", + "ae5e761b52a99baaeed8d0722fc2c9fb0f0cc9f1" + ], + [ + "sha256", + "d10dd20e702faffe402183d8278920abeea72c898ff1f51db98a996ad7cbe3a6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.cfg", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/bin/wattcp.cfg", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40309, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9ee96141-b2a8-5e2a-91c7-af8309278afb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bd4d35cc3688d0b5b3e49102a290c6a7" + ], + [ + "sha1", + "1aa041c9b3b5d238478f43d7c2f853015b1e7d38" + ], + [ + "sha256", + "20b1a68b2248e9a2be403f422edf0c9eabe4f5aa9f94bf7fbb168813a4db7158" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.TXT", + "path": "FD13FULL.img/packages\\util\\wcd.zip/DOC/WCD/README.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 16380, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9f418517-4ae0-53ce-83c4-393ac9a1807d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cbd89daa7cbf22a85572bd0e1c23474a" + ], + [ + "sha1", + "4ea5fdf71b85d74c7c622a5942548f3356a65a0a" + ], + [ + "sha256", + "7b812bc92be130e8896a7d5d99359c8cf73dd8f57d92602c0cde3cfebd3c5168" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "zlib.3", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/lib/zlib/zlib.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 4235, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9f6ff959-43cf-5633-907f-071a74bd5c3c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "913837976b2897e0d6a056465e58ba12" + ], + [ + "sha1", + "fc1e9c839f67dce171d725424ab9ccc894601f24" + ], + [ + "sha256", + "4b2202e7d6ef703a41df7959532be06f4be56c87149628caf56082dfafdc2554" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NTOOL.TXT", + "path": "FD13FULL.img/packages\\net\\ntool.zip/SOURCE/NTOOL/SOURCES.ZIP/NTOOL.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 26129, + "subtype": "None", + "type": "Text", + "version": "" + }, + "9fdeda08-ae87-5e4d-a137-1060989b20d1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "19bc2851eb71c36090b82dbbd9686740" + ], + [ + "sha1", + "fd08d91b95bab345f51e3e9556c6e3e34de5b59c" + ], + [ + "sha256", + "4fc9190a16c89c7c0e82e79c4841a79e7ca5fd720dd963207a15d92af848c2bb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost0h-sv.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost0h-sv.pem", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7446, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "a0069427-7d8c-58a2-b724-ed67e8b5c834": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8157337c9cc8fff8b70837cde67d7c4e" + ], + [ + "sha1", + "e876918c9156425c9bae76ec171155ae417b763d" + ], + [ + "sha256", + "70671dd9b70c5e3161dd1a18adf650443ecdf53a4a0ba9341e3b67a0422a21e3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1630", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1630", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1303, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a02b35a7-f5f2-5c3d-b302-4acd4159d467": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3fb1c44b2fbfe4882ec4f7b699f55167" + ], + [ + "sha1", + "aa4d80cfe1a3bc99405fd11d1456a62ba620b6ec" + ], + [ + "sha256", + "0b5dba5774f336c0b9847fd89e8c755ae662489b40f086d3c689d13225014976" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "gethostip", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/utils/gethostip", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 4352, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "a066efa3-013b-5e63-87e9-99515c4613b4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "654ed8ff701eb3d64e9f039442f93c0d" + ], + [ + "sha1", + "75b6dc470acc18ff2c51f8d388685625f766f017" + ], + [ + "sha256", + "845c8286e76f6a24f6ca4a4997a9f5e87092918708d889848260fddd0f6f73b1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "ser", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SER.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/SER.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 33792, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "a072a1e6-31df-5154-9d7f-eeea4eb51907": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "aefa81375cab14242a50ed8575d45317" + ], + [ + "sha1", + "f7345498787b60070a0312da3d6af74e6b3a2121" + ], + [ + "sha256", + "bd467d9b80a792f7d1a7ceb5bef7e74c6c8a8ff83599e56d7a81567f353b01a8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mkkmtut", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/src/mkkmtut", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 989, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "a1be6880-05c9-5644-9549-254af7a124b0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "01259d4d493f41b702d550d5f6ccac3e" + ], + [ + "sha1", + "61422bf6165da473086385ba6d896a6f043544ea" + ], + [ + "sha256", + "1ae787d5bf44d984f6d128837df308aa0671c5ecb61d39167abfd0fbfdba33a5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wifi.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/wifi.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3634, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a1c4b3f2-5e2c-53d3-9f73-6e06fde68fd1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "a3e627eea32a635483b0e5ebbff6a7c2" + ], + [ + "sha1", + "ca76a52a56083069ea98f6a3ad0d7f8df8dc4291" + ], + [ + "sha256", + "5634b99bc2bff06236e99f419180130b2191f47b878f34c6c6227f8957d950be" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/pl/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16318, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a1c9418d-7b42-5ff0-8e54-afc1d32e2617": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bc9353709f991cac927087e5a917383f" + ], + [ + "sha1", + "6494ddf69d6c634cf484ca061b89602f57b779e9" + ], + [ + "sha256", + "147bebe5d99b39458f08a8ea70fd83a09b4b22fe15490859787ca2c9b501826a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test264", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test264", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 841, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a240ae62-169f-5e35-8452-3ccf2b455ddf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ccdf2feb94be47c36b3a32c147eb8fc4" + ], + [ + "sha1", + "d1860058bca49a02af4f87990fe01b54b6385c44" + ], + [ + "sha256", + "331b867d0063fefc26b1afc866d4ec8afb3f1cf2751c26a0e834aa0abfc56fca" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "par", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PAR.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/PAR.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 8704, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "a2835361-8b83-5a63-b4bc-e1f881948b5d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "6a831f2fcbcae6a10358d1af67b06f93" + ], + [ + "sha1", + "14de5cb57c225c981ce8d6089dba4a37c72ae40c" + ], + [ + "sha256", + "f3a9902dd8b54e9d427f48de8c6ce8f4d954d4d4a3be2cf4331e52f91d709531" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vcd.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/es/vcd.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6644, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "22cfe3beb1574f148939a486d37da27e" + ], + [ + "sha1", + "ff0f042dbcad93ed2c852d10ccb2491d7ab3349f" + ], + [ + "sha256", + "d0e3c379f3704a488ff9107f1838c7e6d5117572d72f959ffb0007474b430c22" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "a.out", + "path": "FD13FULL.img/packages\\devel\\bcc.zip/SOURCE/BCC/SOURCES.ZIP/tests/a.out", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 8783, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "a2ffa5d7-5f24-56cf-bc80-517de90cea17": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0539bcca477c6a61b1a77ea4fc3bc10d" + ], + [ + "sha1", + "0bf697171adb7023b017bb19b4ec30f5122bb068" + ], + [ + "sha256", + "8ea1992893c0ed9505ed892fddd5935e4e4e80979b3bbe0021ab01015fa930f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/changes", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 597653, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a3933c8b-bb7f-5d96-974a-4e29dbe58760": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f239ff0a465bfbc790535cf69ac1720f" + ], + [ + "sha1", + "3ba74c34bec87a81949284c487ec40b649fdac80" + ], + [ + "sha256", + "bea83454f87dc7db4d5d014ea854da47b644612a0261d096377acfea9ecfdfd9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "jpeg_enc.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libvo/jpeg_enc.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1516, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "a3968e19-63ed-5e05-995e-f2f39f7028d1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "44c372412728f0c0537c614a5a57521a" + ], + [ + "sha1", + "32c4a17157e2f35e48363d9423ee9a7b9bc80f36" + ], + [ + "sha256", + "5f78882acccec25380052a4433ebb02dc0bece0cc8cb981b009b0d1d766354f6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/ru/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 21796, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a3da6e7e-07c1-5cb1-b88f-d007dfbd06ca": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "13bef2974de758c03c9eddd08258d001" + ], + [ + "sha1", + "30641100bf50d6e446f1f5fa82c1acc51f10e533" + ], + [ + "sha256", + "451a16e05997e12a3689ffd7f2ccb90e1ce31d54717460ab6eaf6b9f2fa17d7b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/fr/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17203, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a480046f-56d9-5563-9eb8-564a544985a6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9143097fbf280d75acd86017d5d01d70" + ], + [ + "sha1", + "6b077b79edfc379059176a2a4779d023b9e6a9ff" + ], + [ + "sha256", + "a022f94acf803a0d8c3b931a8e44f854fd3f8820a33769d218aa3278b5b5db68" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "VI.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/VI.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 371801, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "a4abdac7-f6ac-512e-b8ee-770a8c40452e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3fdcd2d6873cfa59028c0e022763d7a6" + ], + [ + "sha1", + "9aa27cec7c2cc2d7dcbe3f4b5b18500aff91c9b3" + ], + [ + "sha256", + "8482295f4934c4dd304cc4e368509d4a38d228960ab1c407b2dfe49c12b908d8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "externalsocket.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/examples/externalsocket.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4948, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "a4d1ed70-8852-5788-ab0e-21aa1013e28f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "390dbe00ac8bf9e8ebf1735f291773ab" + ], + [ + "sha1", + "68d51d82a90fea838b3de38a85a19e0ac0c0bc00" + ], + [ + "sha256", + "f9f1caf501f4a2780a89977911a3d13c22a7940a5fd76390612175257a5278ba" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "jquery.js", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/gh-pages/jquery.js", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 172873, + "subtype": "JavaScript", + "type": "Text", + "version": "" + }, + "a50a87ed-5d71-526b-aa14-e13eb6e942c7": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0f3f9ef545e9ae3f8e03e60aa8fa146b" + ], + [ + "sha1", + "1ec9f700071580379b2b897dc7220791ca3651c2" + ], + [ + "sha256", + "2eae668ce9748f4e03cd790d2ac3a1cdd499502243beba45cb4280258e8e7edb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "yuv4mpeg.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpdemux/yuv4mpeg.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16634, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "a608fea8-985f-5800-887b-c6a78931b76a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "39de6fb986f9f57b1456b9b1d16e7d78" + ], + [ + "sha1", + "677dc54a664a4563912edd7ea71fb6458232ea52" + ], + [ + "sha256", + "b39ddc642e72d5542e59f8082d7285d0ee218145c81dc63907df7f5619d92b2f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "natsemi.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/natsemi.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5736, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "a6e043ae-9919-5c7e-8d22-0023ba608a61": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5919bd0600a8a645511761a36064ae56" + ], + [ + "sha1", + "6857aedbba267fa83c1c2a688f5dac282861e1df" + ], + [ + "sha256", + "76d18bdec351da3f2a27ca5861fdf67b7acb449b2622511186a15ddca9b33900" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_HTTPPROXYTUNNEL.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_HTTPPROXYTUNNEL.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2900, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a73bb8fd-2acf-567d-9c1c-b5e87f5447a6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7166cc256793ad706928cf54d5fe4ef9" + ], + [ + "sha1", + "abc0ba6bf7467f4192e60426416a6411afe8f85b" + ], + [ + "sha256", + "8c5353572733f201b005d41de7b2c23de3dad2cffc816ae79e0bd64db88888c6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2.menu", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/cmenu/test2.menu", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2321, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a7543931-0028-5a91-a148-d616997b42ef": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7f42db2b3d73484d8183f1bf996ed14d" + ], + [ + "sha1", + "54446b0b1c1451a3f1d9157d4a104d7222b18342" + ], + [ + "sha256", + "ce34f560461e2b8e1c5c0d6f82c5361262dcea85587703e63d66b10ecc893d1b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1035", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1035", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 699, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a7ada0e1-9134-5187-9dfe-7f1aef07e3e8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4e81735795cdefa0ce09648646163a7f" + ], + [ + "sha1", + "6c5b277d76db3fa4219ec9bc54aada3ab057d595" + ], + [ + "sha256", + "a1d1a7d2840b8652f708525755b62d217d9d55a80de039ad1cb2937c43cadd38" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "odi_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/odi_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 13437, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a7b01fd0-1f53-527f-a8f3-acfb64fcc109": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "ef160d7f3cb823e405f078f38c72d21f" + ], + [ + "sha1", + "6ae3ebbffe07225dc9ae9bb1ea42fb30b0c6c006" + ], + [ + "sha256", + "226c209a28df0a27fb056e7fe11f6de00b19eb33c0bbdf908850ec0d2c90c900" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/hu/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5632, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "a7b435f4-95be-5949-b13d-572bff3f2b72": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9d5492ad234a778afc74d552a054122d" + ], + [ + "sha1", + "b4f6f2894fb4fda0a26eb16e471e915ca54f8d7e" + ], + [ + "sha256", + "df8d1091cac364befe46d71066d2818824df755aef7f5e4b203f29b3305ef5e8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test519", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test519", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1217, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a840fcbf-0567-5e10-aa0d-756bdeeac246": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "206120fcc2fb1ce30dbf762f4b90472c" + ], + [ + "sha1", + "30667d0ce9a14c8d66116b8a4b3fe9b7e3158297" + ], + [ + "sha256", + "51e3c174ad07379d9f4428d85a3a0801cc799bfd8c89199fc2564e8d5d2fe0d4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.TXT", + "path": "FD13FULL.img/packages\\drivers\\shsufdrv.zip/DOC/SHSUFDRV/README.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9559, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a8bfbc3d-5f32-56dc-aadd-0456ee627428": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bfbc47d114217c73241e4eb399d538cd" + ], + [ + "sha1", + "8fbfe13b1078ef7fa56a6a6174a26dcd84e95d39" + ], + [ + "sha256", + "00b1b3f76454719de93f3bc67628c051b90e165f3b13fb6f3a1a7deb51ce0264" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NEWS", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/NEWS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 23759, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a8d89cb2-096f-5073-8c5d-3043891b4bf5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f056fe8989f97cdd8530ab6082568766" + ], + [ + "sha1", + "286104e406ced0310acd777e205ede940d494766" + ], + [ + "sha256", + "7eba6b7de8ec1d029b83956f02fb8136577eaa07ad4f1cf24c03d91e1d255368" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test675", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test675", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 921, + "subtype": "None", + "type": "Text", + "version": "" + }, + "a9a4fc49-e264-56c0-a7ec-f4b243abca50": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c1ed16bed0d2b2330608a501240af6bf" + ], + [ + "sha1", + "5cfd8d69c2d5ee1e11896d3457abb766b2c5bdbb" + ], + [ + "sha256", + "63f2cf1811632332ad06746686b68a3e395e89a0292007674f2425aa43e8c583" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CODEVIEW.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/CODEVIEW.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 62762, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "a9b5d7f9-d616-55af-b819-bad3538bb587": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5bbcbd62c0c806d59ec986c1dc3e2b61" + ], + [ + "sha1", + "bb193ce837aa9e48087795ec6d86e64ebca25c7c" + ], + [ + "sha256", + "5f4b0464fae68a7c7f0828482b894ac008491c5000a88d1cf2e8a4d9a4d65634" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "memdiskfind", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/utils/memdiskfind", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 4940, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "aa202941-44b4-52d4-ae41-c0ea9b681643": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "da9021c3e189189cbcb2e18e0b302720" + ], + [ + "sha1", + "8db6d83ae18991a7ff90f85cf606670757d7e45a" + ], + [ + "sha256", + "e1415c8432e96fe865713b6d6f38e2c5bdf7032b36fd9ea233cfc281af778d5c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcbpa.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcbpa.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5860, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "aa7afb0d-bc9e-594b-98dc-f8d1c687a14e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2a6f9c0d531e649cee6cc20051d39a53" + ], + [ + "sha1", + "85cee33ba2ff8042b627946e02d0c6e6dee261c9" + ], + [ + "sha256", + "a9ff4821721460835187763116e0059a08d60d9111fb1b43b9d01385a35357ee" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "po_err.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/util/po_err.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 36864, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "aab53f28-1f3d-5dac-9d07-57ede7561d66": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3a196759c5c92cdc187588260fea35eb" + ], + [ + "sha1", + "d8f0d102020531c47ac85b3b14b860b177598e5d" + ], + [ + "sha256", + "1adb6cd40384fcd4a46ae88f81577101dde92ba04607fda829f3fe61aa20bc57" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lfnxlat.386", + "path": "FD13FULL.img/packages\\drivers\\doslfn.zip/SOURCE/DOSLFN/SOURCES.ZIP/lfnxlat.386", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 867, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "ab78d352-9498-5ec9-b798-fae46d669600": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7be22e689401a9a11810d27afc117802" + ], + [ + "sha1", + "b608241d3732d20e0297afc947c2f8d2c60ee9d6" + ], + [ + "sha256", + "ef1d01b2a5b4cd1c29014042dbdfd4643e0f75726e8d8582eb01d10d86578797" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MANUAL", + "path": "FD13FULL.img/packages\\net\\curl.zip/doc/curl/MANUAL", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40025, + "subtype": "None", + "type": "Text", + "version": "" + }, + "abad4bc1-f6ec-5de3-b634-286ee649e7ae": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b4be179364d742982af2f44d4a804d42" + ], + [ + "sha1", + "0b42fc92ff3e248b79fa6c03f934a7a265b2260f" + ], + [ + "sha256", + "ee89e182826ae44beef373c9e095edf949eca203c2de8699d766f898807e499a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/it/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16544, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "abb3d38c-949d-5719-a3e2-e10a5fb0647f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3cfb886ba82ebc7549f4b47c3c418b24" + ], + [ + "sha1", + "4563935d541d53bc152d9a319a8c60b7794bd73b" + ], + [ + "sha256", + "2b2efbd131ee4c54bd1e528be0c9f03105e2bb4878b4066e34a044dafa5f2cd7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1087", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1087", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2241, + "subtype": "None", + "type": "Text", + "version": "" + }, + "abcab32f-8b39-5536-976f-6eba574a9138": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "34902bbc67ba3946f609e870f8f23865" + ], + [ + "sha1", + "aa1b9b6df3ba368b39d7fd9861a3e7cc9666061f" + ], + [ + "sha256", + "6c7041ebe81ce0213c7e2517a28a5f31b5e8f936b3897ba3ea17f00812edaa4e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "image_1", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/GAMES/FREEDOOM/DOCS/manual.pdf/image_1", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4309776, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "ac20eeee-18c0-535f-96d8-091baee24b50": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7a961b9c640b4a576b527cb538f948f3" + ], + [ + "sha1", + "5200d7b004d246aa42051c2e7659084cbec21f8d" + ], + [ + "sha256", + "93163cf9c675c92b9df60d3028b09e1f3b18f83a16fd1c2748d821697aa17c49" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "es.po", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/tvision/examples/i18n/es.po", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 110, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ac612f9a-0a29-5b6c-ba45-b041982d1584": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "03f2d52c5d66efff66ff655692d18c05" + ], + [ + "sha1", + "c5b3184677dff945a473610b813c36fecbf99587" + ], + [ + "sha256", + "4374700f6bcee16611de6aa36cb2c8202d15db0bc14f249f71f1a84f0024594c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "download.html", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/doc/download.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8405, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "ac864f84-721e-5126-b9f2-804dc5bc3689": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "dea4fc5ca9746af1735de7da69f8496a" + ], + [ + "sha1", + "a39854bf52b26641df555e5abbb28a8358f0967c" + ], + [ + "sha256", + "a40ae5f1b778710fbe6b4025cce8a6f150b1ec3ab7bfd90d95a25abccdd92039" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vf_zrmjpeg.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpcodecs/vf_zrmjpeg.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 33025, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "ad71334b-06dd-52c8-94f6-7553a9af115a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "04017bb90535f38671e3ad0eedf79ef1" + ], + [ + "sha1", + "ad04840340bc16b950101ee17668c1f61589655a" + ], + [ + "sha256", + "244ae0b66b9876367bc19f6ff6d97cb69b49ce2f4d87b8131a1545a94ed14a71" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_30_content", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/page_30_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1548, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ae52197e-598a-5e9f-8573-fca9e10d7541": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1bc95c20ad0cfa7a344aad82e5d13ccd" + ], + [ + "sha1", + "f784ea46f4465a9f965eeee3ab284770647589df" + ], + [ + "sha256", + "fbe33443c14ac48177b32c5f27aaa0b131b58ec8420543c371501a0f29685b3c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/en/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 90282, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "afd34c47-d843-537b-83ed-97d2dbb48b47": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c861f1bfe64781e98bd60d89efecc444" + ], + [ + "sha1", + "7f5d37496b174404c706b0cdc647de3e389a2760" + ], + [ + "sha256", + "6e9518fbd88a0857fe861cd16a3558afde5b84068e7cfeaec5277f46123912b0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WIN_3D.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/SAMPLES/IDE/WIN/WIN_3D.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 109830, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "b0c70a1a-0488-5faf-be89-921ae4d7e8fe": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d80b947148f804a7c83a05bfe5251828" + ], + [ + "sha1", + "b2a38caa34bbc73d5fc157d3b4f12c0aeff7e62a" + ], + [ + "sha256", + "a03b957c3c15292267ef0e8193be99a7149c773013e8b6b62810e819057d1e92" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.defines", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/docs/README.defines", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6176, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b0ff4dc3-315c-597e-9514-b3e4a958259c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "61f69a8a673afa55040a545a3c0e6fd8" + ], + [ + "sha1", + "f04ace6a126b377b19688dd494f28a1914486632" + ], + [ + "sha256", + "4e39d72110286feaceb13f9e27bc1b798252746ace2832f53e239417133de857" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ibft.h", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/arch/i386/include/gpxe/ibft.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7729, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "b101a534-e204-5a34-bbc9-25a11fcb5ccd": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1c0d0192fc27a9f6c79ac43a5b3bddfd" + ], + [ + "sha1", + "e2ae61b4d10ee1aa1f702aea81775bffb31aee12" + ], + [ + "sha256", + "1885c65e90ef507f295eac3e176ae234bf1ba2f7e0df9d6359c5bff156796153" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ports.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/fr/ports.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 36051, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "b1466d7c-2770-52f1-a68e-d72377dfe755": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e285aac330068ee6454248963788d4bd" + ], + [ + "sha1", + "606ba99a20270bda11ebfa78d90f0f407a2fdc28" + ], + [ + "sha256", + "82d4b794e10dd175bfe3eeec60913a3aba42abb5b0f4141f062add328d4b617e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "algorith.txt", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/SOURCE/ZIP/SOURCES.ZIP/proginfo/algorith.txt", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3395, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b1627f3e-e8ce-5d10-a85b-77ff1a371628": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a22f7660f9cd6e734bd3dcea2e41c1cf" + ], + [ + "sha1", + "43ce340fe354d014a06173d8bce1b5cc0438da03" + ], + [ + "sha256", + "05c0d76edc7bd2aab7150e7c28a90f05eb3ad0420aeaad8215f74e7f1175bfff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwmix.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwmix.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 18173, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b280cb62-f1cf-53da-a204-6467d035aebd": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0a5c109eae39dd19c882719b8a1bc090" + ], + [ + "sha1", + "beb056aac051129d09d7aa350b50eaaa3310fb14" + ], + [ + "sha256", + "d48b5a508258f4343b3c21385b641fd3ae80d3634533664ccda44ba3659bcb84" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/fr/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 26063, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "b2a71cbd-0cb7-5679-bb6b-8ae0f4d89fb9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d16623959fb3bfd19ff7387db7500f96" + ], + [ + "sha1", + "424bc3ae16ecedd8451e218aa9866a87f888c76b" + ], + [ + "sha256", + "dd7421ec12042483f39c93f7259b60d7954d07a9893e510a0c6f3e91ecd5f69b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mipsel.r3000-linux.shlib-init.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/mipsel.r3000-linux.shlib-init.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17033, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "b2fb4593-1dc9-5c00-8a19-22a822f7c688": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "596101dfc71b08fa7b79fb6f903d5059" + ], + [ + "sha1", + "c64d3e4154a201a54a3b896c91db57ce59b9b34d" + ], + [ + "sha256", + "a1a5824e6dfb4d7ea46564def3a0290a3eff80862fc9e18601bd6adc1dc02375" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/stunnel.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1678, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "b3314411-40f5-53cb-8fb2-db61fc5ee35e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "71c8e69186b23c870b362a681255a2e2" + ], + [ + "sha1", + "c3bf74615648e8815bdd969fae7e96be7fa3dc84" + ], + [ + "sha256", + "b646f485859bd0d3c9e808950370529483065c7bd729f3b6986dd7bb9f1593bd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/zh_CN/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15799, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "b35691e5-a9e1-5b59-8eba-178a0c531c5a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f7671cf185d5d7f655ac7b775795234c" + ], + [ + "sha1", + "a7317c4ac4b9cf3592ec6fc6a2fa24659c778532" + ], + [ + "sha256", + "3ba48dbfb62024ad0825b2fbd507b12d09bb10baa553e7473c9d21c0edc860cb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1259", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1259", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 686, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b3d3e48b-c688-5a71-8dd7-fd8f33a00fca": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fd98cd87d6cefe2ec030db457714d3be" + ], + [ + "sha1", + "309bf22adbda9793a59f418c0c249eca62141dab" + ], + [ + "sha256", + "775258c9c2992f61c9b4b0a564a45ab3f824f19e7ab538a4fc625444488ca7e3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TDE.SHL", + "path": "FD13FULL.img/packages\\edit\\tde.zip/BIN/TDE.SHL", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 90321, + "subtype": "VBA", + "type": "Text", + "version": "" + }, + "b3e25852-dc4d-5220-beb7-ccd397c8386f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "08a52f44f4b25787d29fdac0c742b296" + ], + [ + "sha1", + "4577456329caefd9a635fa685e93992eac3bdbda" + ], + [ + "sha256", + "bb68ed222e8cc2021a6b7861281fe762d4356e8000401976c84f2c14c5ace13f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/hu/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 42564, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "b3e36f88-4163-5f4f-9411-176c17eadf29": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6bc692c99a3e60b123f1f2cd877b58a2" + ], + [ + "sha1", + "aa9d0cdcd83476bb26ae35d4749cb0163a07220b" + ], + [ + "sha256", + "920e2f0cd4d938dea7363c73142b61a957b0be62130edabc78242ccfd20bcd8e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "XF86CONF.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/XF86CONF.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15103, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "b44602e8-cce8-56cd-a623-683e4d32e96c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "daec33e04df955689d789c2b1e87e863" + ], + [ + "sha1", + "78c14cffdf49de48e6fcab8e0be6825a55e57fc0" + ], + [ + "sha256", + "b252a3227c8c6b41f5651d04976ff4c1facb444cce35d9fba080b7303ce9e345" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2026", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2026", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5498, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b4e045ba-f3d2-5dbf-801a-9305125d0a93": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a006b6ad40822f6b992d9c5044378fda" + ], + [ + "sha1", + "32d1231a3a12fc9a57596d19cef8cc359af82cec" + ], + [ + "sha256", + "5e5199e0a9ebcd44dd87b5c512e815d74f05a8dc02d1a5753bcb83e07e480abf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-fr.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-fr.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 131252, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "b5301c7f-f08c-54a5-a60d-54b4df230b94": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "953043a77c651b410c0ef81f2569129b" + ], + [ + "sha1", + "c5f803c4612543a782ed4904453211315dd19846" + ], + [ + "sha256", + "b3c4ca01ce12e0463841a4de8cedc7281b2919291fe70daab2304346dfd11897" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libintl", + "publisher": "GNU", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.0.1.2", + "vulnerabilities": null + }, + "name": "LIBINTL.DLL", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/LIBINTL.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 69632, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "b5445829-aef7-5f65-b933-e4e8c96308aa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "538e5b7f31be90e146587a611a3e1978" + ], + [ + "sha1", + "110a2c62a4890beec3f3c038e48d3668dfe21737" + ], + [ + "sha256", + "d2c0948d43b977ea5888b3f75beb97f1a23b189213aca93f9bd256ff60fd3bb7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3c515.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/gpxe/src/drivers/net/3c515.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24412, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "b554fe40-ee93-5b05-9524-1e210fccd0ce": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c4598c91d679702811409f2931fe697c" + ], + [ + "sha1", + "47a19d3f81718e1802b59d9b3ea114cc27bca830" + ], + [ + "sha256", + "e4109da6902e70ad1e7b88f5997dffe19182049c0b1a4cbeb9764285b24e5bc4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcarj.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcarj.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5993, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b608d5ec-e4ae-5bb4-afd4-9f0835dc658a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bcb9e559118424add345b7c59cab3cec" + ], + [ + "sha1", + "c1487a71d774395e01d241a7b8b86c6e48a59b93" + ], + [ + "sha256", + "b73b0c4cd5cd89ca7a5661caee7a71ec7bc7c2f446da21c8d95d984f5001b7fe" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WATTCP.CFG", + "path": "FD13FULL.img/packages\\net\\dillo.zip/NET/DILLO/ETC/WATTCP.CFG", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40306, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b64f48e4-7ca2-5d5c-bb94-c43ac59e53ea": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c9ca766a96c9f72db7a06a2be2a91c5b" + ], + [ + "sha1", + "b4effc857c3e93670edd3b74e375c5ae2ab2bf24" + ], + [ + "sha256", + "b1d38ce444e6675063ae9a2090147bdd7fd147fb81bae7a6234277db033bc56f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tel386.exe", + "path": "FD13FULL.img/packages\\net\\sshdos.zip/NET/SSH/tel386.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 121085, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b651f10d-3881-5a6f-82a1-f966af361f91": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8b6349b0a79bb82caae5a73bc886fcec" + ], + [ + "sha1", + "7a79ab71d676f703002a5e4c2750fe63e5a29a75" + ], + [ + "sha256", + "1af29acdac955c3a9c917e030413835ba49da3374a2f7853c10a1f5f0fc28a9d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3com.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/3com.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2342, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "b6a3bc08-9b0b-5f12-b5a8-6c0b38cfa3e3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "38749e1c5725b794b96df6d3c00d7376" + ], + [ + "sha1", + "db81b5974886c7ccda6c4ea4b0c6ebe20a19c5cd" + ], + [ + "sha256", + "7a8c04830671364e405f4f002fa0b6641c8a7ad8a219331fcfe246912a5b3bfd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "sshd386.exe", + "path": "FD13FULL.img/packages\\net\\sshdos.zip/NET/SSH/sshd386.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 155870, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b6a8c948-5b1d-57c4-9c4c-f3f48f7a2d8d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a162d9a59753d7c384234a1f67b03837" + ], + [ + "sha1", + "037ddb58510ee3ee2ac96fd5d966afa7a64f2fff" + ], + [ + "sha256", + "afb11a1e3fb27a17d14182f16b2c2798f2ee3eb85d10a83fb64cdd4d0122f8a4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WASPPC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WASPPC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 180317, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b6b694aa-2551-5fa2-aeaf-7ffc946e6109": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fb799c2803d591c831bc6bc959aff206" + ], + [ + "sha1", + "b3f15818fc20587ffd372b6f3afbb224cedf686b" + ], + [ + "sha256", + "b028ed5f4794d7bf86ffdaf25f579c787ac9c1a1fef05c1984d14983f1541f0f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadams.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadams.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 14923, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b6bd608a-117e-52ff-bb0f-71fd459b57cb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c91fe4d81a662fadd63809d7ebc6b1ba" + ], + [ + "sha1", + "d58cfb0639bba0286ed24594a04148c9fb7174fa" + ], + [ + "sha256", + "fdd52bbdc5978b613fdd55bd3b3cc4987c8bf00bd06d119c9742e0edba756713" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CABEXT.EXE", + "path": "FD13FULL.img/packages\\archiver\\cabext.zip/BIN/CABEXT.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 54272, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b802359a-037c-5109-825f-214dfcefeacc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a8ebdc174df34e57244944bf4aa39d87" + ], + [ + "sha1", + "a79be1f80385dd702a690b38ff0d72848db6662c" + ], + [ + "sha256", + "522a9d8344794ea98bcc3eac05a810b00b83d8e071565cf0afc41df65ca0cf21" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLINFO_PROXY_SSL_VERIFYRESULT.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2312, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b81e9f43-4bfe-5881-8c29-846c457e58e5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "33e0ad222682a1d802c5d173006bda05" + ], + [ + "sha1", + "af49e21b9e7ab81c2017021594240999c24e7617" + ], + [ + "sha256", + "e8e98896cbb859efbacc300fb2f4ba5c3e988d4c930255cf0d5a88160a93ad63" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2053", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2053", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 822, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b87b23ed-4071-5cb7-a08f-04dbf1c7d8c0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3ade2d356e6f70914ca6d974fb2b8de6" + ], + [ + "sha1", + "f478d86ab40cd72d21b0a2313f137868a1a9c77e" + ], + [ + "sha256", + "e90af8a7ebf83b936b7f24f7c0705a5bc08f5360444f95aa96b3d0f92d1d8f97" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test208", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test208", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1065, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b8a01944-50be-5592-a08b-dc5cec2140e5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "daf624bd7d25e6d3004d1857cf958682" + ], + [ + "sha1", + "7cf5e761094bd73f0dbf9d36281c5afec40e5202" + ], + [ + "sha256", + "d97bcc97cfef5e4c775518c08802929a097ef0d9143ef9cf181ebfdd480ae928" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/pl/video.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 95388, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "b8eab3c7-d3da-5cb3-8284-5e170eb9fecf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "187754bd1394e42b474c27b72788c375" + ], + [ + "sha1", + "669bfea31a1ef160b4e8e1a38a9c57a46528efaf" + ], + [ + "sha256", + "12e962891db39133e99bc172fc152e02218f6ef440f1955aa09ac9137335df83" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "POV.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/INDENT/POV.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2727, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "b9184dc3-6afd-533f-ab4f-9a3d84a8692b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d0aad6ce47946363845971b33064bae0" + ], + [ + "sha1", + "e57b3c9ac0526986bde63fa73e38cc30eae3cfc6" + ], + [ + "sha256", + "ca2fd817705fbd705c6f4815d7181323394bc51e52b36acabf0236c6416b4739" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test503", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test503", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1467, + "subtype": "None", + "type": "Text", + "version": "" + }, + "b97887e6-e8b0-5edc-a109-00f04a058ea7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ccefe71ea4a3da77b1e09cc73906d704" + ], + [ + "sha1", + "6f5b8ad7e3219f3e5f76cd5e2d1f5f5aaba55938" + ], + [ + "sha256", + "f9daec19292103dc057e3c226175c448de2daa83634118ac8cb3eca755b86c65" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fstypes.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/fstypes.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 13719, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "b9924e17-c244-5e51-8990-016e8f4ce913": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6909ebca7c5fd87063604723698b5748" + ], + [ + "sha1", + "74e2e02e8386d69e8b8eaf2507f2b0e0dfe36abe" + ], + [ + "sha256", + "93c3ecc0cd5a65e9127d19fcf979801227479443badd1b82cd878baac279a147" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devsnone.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devsnone.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 5246, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "ba0c1451-969d-5b29-921a-e493ff3eff88": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "3b4aa523d0870b3cb1ba5b12555f1e42" + ], + [ + "sha1", + "71d6ec53406840b227b0d9966dcd85d55359dcbb" + ], + [ + "sha256", + "2250b474adac945b1820a449147145897f6ee1a1157bc51653f03d5328060639" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Lynx_users_guide.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/lynx_help/Lynx_users_guide.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 211285, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "ba22814b-c3fb-5ab0-acb2-a654546da6d7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "69cde33a9fa58b36ed4c29da07c0de02" + ], + [ + "sha1", + "47c3f158ce6cd6b0847191f2b7f662222e6cc3cd" + ], + [ + "sha256", + "c13334c184211f6d60b68d44c09c1a5d6672bfac7cb1eb008114eb4b17297ad7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lib1530.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/libtest/lib1530.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2048, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "ba78cf0b-d610-5ab3-8e38-d8e1dfe01195": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d3851e5abc88a8ae13e87a21cc61631c" + ], + [ + "sha1", + "e8ae558e630051c86781e36b4c3194418bd53d42" + ], + [ + "sha256", + "10b14af57591a425134766171385314db582d9911019bfa62a4a4661bb02c374" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "std", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "STD.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/STD.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 62976, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "bb0695cf-ec8b-5425-bae0-605bebe64ac6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ec0442a85ec7da85800db7cbc73678af" + ], + [ + "sha1", + "0dfa47af41d79f26b039e92574bd45f1f0281795" + ], + [ + "sha256", + "f731eb4458d34fd1119d64380a38db47764d42d1ed06befb0812a1e8fb19be32" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WDIS.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WDIS.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 338036, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "bb21e9b7-4c48-5306-9aec-7483a26918fd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3c103f29a18d155c279d59c575bc4fb7" + ], + [ + "sha1", + "bdff6d735fe17ac19f64d36546ba77c2cd8889fb" + ], + [ + "sha256", + "2293bf046b0c6d2ab676aca7c88ab1b7aaebd32db783d847aca4eeef77539e85" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0c78620c-0456-419a-ac41-97a7607a2b60", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616", + "cc2d4b20-8548-481b-9cdc-08e2f545d627" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "vocp", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "VOCP.DLL", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/VOCP.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 8192, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "bb26a07c-875f-50e5-8a63-3f70f57d4db2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "880084d1049a88903c36e5b3a562a328" + ], + [ + "sha1", + "6c38f403134cd43e5de8612e8f239ed2c160c2b0" + ], + [ + "sha256", + "01de23363ad346abf770ddc2349673f949881763534df99b4a6e5b79205bda40" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1518", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1518", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 906, + "subtype": "None", + "type": "Text", + "version": "" + }, + "bb9e3bd2-6575-5ed5-bf83-1f6e7cc782ad": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8e869ba8603d8a0b008d2db92b5837ea" + ], + [ + "sha1", + "8b4e0786be10972c00889a9df4aaa34eef5af2f2" + ], + [ + "sha256", + "457063e92e2ea10e43718766c6a609fc2e97895ee6c01d19b386201a5f7afbdb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playgmd.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playgmd.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 53799, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "bc949040-a242-557a-be48-435791fb9391": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "94df565c49888e84b3f75cbd6dbff8ab" + ], + [ + "sha1", + "d3b9a778efc69854c361154852204893067d6b2a" + ], + [ + "sha256", + "fb1b33bde5a5868378e1c65705bcea89f25c12f30a95d460ea911ac4ca78bb9d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DBGINST.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/DBGINST.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 33280, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "bcaa46b0-7706-5e10-ab7d-a35677dcd098": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "42f50a46a4158c19b2f077095581f041" + ], + [ + "sha1", + "c46b865b88e54752cda9017dd1d289a037ca0158" + ], + [ + "sha256", + "f8efdd3d2f9e67a50ed66d4a7a6ef2922f18a320803b1fdd907567202850d88f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MANUAL.TXT", + "path": "FD13FULL.img/packages\\net\\mtcp.zip/NET/MTCP/manual/MANUAL.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 293220, + "subtype": "None", + "type": "Text", + "version": "" + }, + "bcf387b0-477a-5e7f-931f-80e111b08a2f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8af54aab9e9068012b0c2bc561cee87b" + ], + [ + "sha1", + "8cdc8a3ba8f0fe915e032520e2a0258bad102ee7" + ], + [ + "sha256", + "e0cc2368bdb83a8a0290ade11220d63fb610580a697c3021899d1b7452828bf4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FTPHELP.HTM", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/DOC/FTPHELP.HTM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2172, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "bd5c346b-5c05-5676-ab84-80142b8b23b4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d2f64706d1b2b30a8519b05a78bb18f8" + ], + [ + "sha1", + "2c7cd4563be59a748f2fa76281ec1404f179f1a5" + ], + [ + "sha256", + "fcdcbc40418aa410afe7ba2d298c8246ff0c21feab39678d294ebff7984dc4d1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WMAKE.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WMAKE.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 201444, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "bd65a7fa-e520-504c-a0c4-d7d64b9ea336": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c4608117964d93444097a2248f78a897" + ], + [ + "sha1", + "0e4ef60f0674f2b62ea4f12bba120857379b005d" + ], + [ + "sha256", + "47ba1d2b4a10732cfc8ab565eb608bc528ca9b87871945c1df73622ce5676d07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "url.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/lib/url.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 131153, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "be3e8eaa-b019-5aa4-a602-64040c4e75ab": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b672730b1231891f5b540b33e46dc779" + ], + [ + "sha1", + "1ee905c5ff2028a902c2d2aeea467a83e4832ff6" + ], + [ + "sha256", + "affd62ea8afd4ad3187ab48c2ebe1d5e1152ca0eea99a7722dc2b7df16caa277" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/de/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16860, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "bee500d9-9f32-5e59-a217-410c14e4ff49": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "ca29b8ad376cebe877514b5dda61fa0c" + ], + [ + "sha1", + "b4ab8054b7931d176326a8fa04a68c770872cde9" + ], + [ + "sha256", + "b4ef836a9fb6b557fffe5aa980a0dc3bdc9e7567787a08a888edcbfee1b861c4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4633, + "subtype": "None", + "type": "Text", + "version": "" + }, + "bf5c079a-e5a1-5059-ba34-f5b815a8df08": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "553d3b2c4715db23df0124c637401dac" + ], + [ + "sha1", + "83938dd5b0454e3fe7a57e7296fe04b3c46baf35" + ], + [ + "sha256", + "f5a5567e1f0c786bab3394fcecb990d5eed4696731ae988df6e9f1f3caf1500d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "nicintel.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/nicintel.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3839, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "bf622008-dc14-50f9-966c-b4fa988b1eaf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2ab7ee544783217c55950035b858b9a7" + ], + [ + "sha1", + "35e15d88b49c4ace819c0b4c47a0e201e4fbc3d3" + ], + [ + "sha256", + "281bbe38e197bb93336d81e2be7db78a31bdbac421b2b7b23f0c42b7f1595600" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616", + "aa43e0a2-2383-4751-91c1-9f738ec33b85" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "DEBXXVDD", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DEBXXVDD.DLL", + "path": "FD13FULL.img/packages\\base\\debug.zip/BIN/DEBXXVDD.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 3584, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "bf63abd1-28bd-5de4-92c3-499813efc9d9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "947fa3a4c12883d86f01ed99916b0bc3" + ], + [ + "sha1", + "c18dfc85a2448c41277df07d20123b8ff0f8476b" + ], + [ + "sha256", + "b175fde672b4a3e9c6a1e627a3c7e5267b59a0b234cb912325968ac020e474c0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playgmi.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playgmi.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 45186, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "bf8bddc5-e9c0-51ad-b6d5-fd182fae637c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f1b1c8b2fc223d41520766036e9312b1" + ], + [ + "sha1", + "5f9cd07731c751b95132a6b481081d3a1f610764" + ], + [ + "sha256", + "3c555ba0a9d7927c0cf3a73e26708e80dbcb6b28f8b18c388edb688fa29b5033" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test301", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test301", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 766, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c0182d3d-7098-5334-b1d9-8ba9d932bc91": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "479a4445007aec8cf6ac48a671bc891f" + ], + [ + "sha1", + "bd88b2e809892c0d03ba69535a2ebe1a9786ed8c" + ], + [ + "sha256", + "8a4ea85f47fb4ac14bc10437cbccf49e793f9f247f7fb1787bad9a29a23c775d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1289", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1289", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 422, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c02afa5d-3032-5c52-934d-11a53dfc4470": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5b491e2db1b5b717697fa86ac29bb6fd" + ], + [ + "sha1", + "8d7c9a93a2007fab0e86201f030d38556961c9c4" + ], + [ + "sha256", + "cede769938f53a4c0e02afaaa8a0e45fb08e06be55c0950c56cc6687c03ff993" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "dynip.c", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/src/dynip.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16658, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "c045165c-3924-5029-8305-7afbb43e8e3c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4156680bdd4e1123f9b13a6ab359c104" + ], + [ + "sha1", + "1227a65f6dc6642593601ab257ead7968cc8ca0a" + ], + [ + "sha256", + "b90c73613aa7766ef1637fe7e59c34a406edd256a99d6be88e0483c38990e9f7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wifi.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/wifi.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3664, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c10cf5a5-516b-50b9-8ca5-752e165d24bf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b1fe4abfcf6258ee1d4b09da4fb93c2b" + ], + [ + "sha1", + "64c56e91a0f28f4112b6268f4bcfa96ca0a1d8f6" + ], + [ + "sha256", + "f630f8f8b6a0eb551092268488ba13e08834bada1ddbcea1caa295b59639b576" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpgus.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpgus.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 10986, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "c1298c78-2c9b-5f6f-a971-c05242551086": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2fb142080f3c2609ade3c40e9a90ec49" + ], + [ + "sha1", + "771028a19358ecee83593eb08796f2923920d191" + ], + [ + "sha256", + "dcf3d60b5d4e68f3e995dc54d5bfadbe1a94de6bddc88d92cae57939d247301e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.6", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/docs/changes2.6", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 41847, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c162f028-e1d1-5c9a-8717-30ef368589ce": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "36ee9ebbf9b3e1a43a1bdfbc126e09eb" + ], + [ + "sha1", + "8e4c6391872bea21f4f85e6ca5210f0c5f886240" + ], + [ + "sha256", + "ba40cf4014128859c0fbf1f894fa188dffb5c2564936f26481c3b27647b0980d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "libcurl-security.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/libcurl-security.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 20847, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c2627e50-7834-5b02-a358-dea75978104e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8738a4ee34854d19ab1e4bf52c282105" + ], + [ + "sha1", + "d57650b4594fee5f7088df2703f08434431b82a5" + ], + [ + "sha256", + "f645dee0f87f39a5fd308c5b5f4ec27b79fb10498badbd418672cf399f2447a4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tchar.h", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/CPP/include_windows/tchar.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2235, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "c2777651-eb10-54b7-8190-be758385e16b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "7d165c0cdd0c9786ebbabaa1fe2c114e" + ], + [ + "sha1", + "d5d1153d9437651d009c6c68c941906f37b0fb4c" + ], + [ + "sha256", + "4a6382873e67f8844669f09f89e1ca3294ac7de8bab246693423d21bc2078229" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost.nn-sv.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1678, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "c2fd015f-ba08-53d3-96a6-bd5ea3ca57d5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "b5091cd9c98ad3fb5a463a45ef9347b9" + ], + [ + "sha1", + "24a8f695ad2cbb5dae0ad8734479dc76a8d54b44" + ], + [ + "sha256", + "f61da990981362a63ade1857c5038cf65df73b3458ebcf4cf1fc318c0c9ca7b2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_SUPPRESS_CONNECT_HEADERS.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_SUPPRESS_CONNECT_HEADERS.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3094, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c345049f-095c-5d26-a8df-065b57e32c53": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a2d66f50d7732b75218fcfd581dc7006" + ], + [ + "sha1", + "79297ff70c9dcf593930c0e33105696066069abf" + ], + [ + "sha256", + "3f2857fbeab6927ebb4f6485eeccdf989013c96a372ea37bd8d822810ed2c6ff" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FDASK600.BAT", + "path": "FD13FULL.img/packages\\util\\fdisrc.zip/SOURCE/FDI/FDISETUP/SETUP/FDASK600.BAT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 3347, + "subtype": "Batch", + "type": "Text", + "version": "" + }, + "c367647f-8ed0-5645-af8c-a54a23d49e87": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e575e41145ddcad8b2709698d47f82bf" + ], + [ + "sha1", + "9424e742fead2adf5e85a7701538b24c2eaea786" + ], + [ + "sha256", + "ccf91fa99e896007755de36316904cfce109514a204809266505b33336364b00" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/zh_CN/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5349, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c372320a-b8b2-5a79-80c5-ee8025e9c52d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "fdc8ae5207472bdadace2e2fe6b98356" + ], + [ + "sha1", + "dccbfea1b3f35ff79faa7ece04b03d02886a6f7f" + ], + [ + "sha256", + "d8544dba890336272b4f3cf4c69a0aefea59fea6ecdfbcaba7d05fde150ecb8c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "loadmtm.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/loadmtm.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6352, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "c40a55de-f5c5-574a-a73e-a053e247a71d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "45cc74d088903f64469d69a6f93b3cec" + ], + [ + "sha1", + "91cd38de96d219b0033c34eb35c99529afc1a642" + ], + [ + "sha256", + "e9d0b8e2be68f866a952799f993c7802fc471952a770dd7aeae1ee0fe4c8c664" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/cs/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5596, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c4135afb-742b-5ce5-8291-36442545b5aa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e04065af05a8afcdab1a1c7263f5d371" + ], + [ + "sha1", + "d373e3fbd417801bc7e5b1d4d7191e2d4b107ca9" + ], + [ + "sha256", + "0989008607d6cbc63d2e43fb8877915b3ef99cb4a917068e4dba5055cc2df8c2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/de/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18183, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c416a597-21b7-5c51-a23a-0b12afa1e3e0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d23ab43d8d3539af2b08c874a27c5362" + ], + [ + "sha1", + "c383671053d846bc492e211f56790433ef884d4b" + ], + [ + "sha256", + "ef1213ef5ff9d9279d37dd5e40dbc3e925c6fd1f465234a9537445c59bd9e7d8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WPP.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WPP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1367216, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "c44e472e-2264-56bd-858a-a69146e0e99b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4f6f6d6116ba71ce085b0ab4d3979811" + ], + [ + "sha1", + "35c14c91da60b9457f1221d12816f76f67e1468a" + ], + [ + "sha256", + "c58051b3820cfae2fd915cf2b11470ef9f295ce91aca724c7accbed6810a8a2a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/hu/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16728, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c45bde80-dc1c-54ce-9a57-c08bbaae2e1c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9dc691745e08e325298cc8e7c85cceb6" + ], + [ + "sha1", + "06f6582bacfdf4227202b70aec9a67b75d4b4274" + ], + [ + "sha256", + "21bfd2b97f487a43334c3936cd915aea1de932ece85d1b5856b77a5028d86628" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "IPCFG.C", + "path": "FD13FULL.img/packages\\net\\picotcp.zip/SOURCE/PICOTCP/SOURCES.ZIP/IPCFG/IPCFG.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18495, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "c46e0ead-db03-5d12-a135-50b8dcfc3e45": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "1b401bbfc807c8e6b9a4e4547fd6cd19" + ], + [ + "sha1", + "35441e40431482c0ea0597886257545a4b308bdc" + ], + [ + "sha256", + "21f8396396af45a9aecf4260c370ee923218d4eaf65ecdf51d856ff31bc27db5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_PINNEDPUBLICKEY.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_PINNEDPUBLICKEY.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4375, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "c48888eb-36a3-5360-9515-20c6094cde08": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6a51f8d235846ea54361688cd482fa46" + ], + [ + "sha1", + "9070c35f46918a460edcc9073025b267110e03be" + ], + [ + "sha256", + "67c07cb9c2bfc22c145453cdedba78ea5e1e129dd13fe9fdd3140e941b5a5303" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "STRACE.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/STRACE.VIM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2265, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "c4c89683-0a67-5128-ac27-682f22a57cbc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "7ZIP", + "hashes": [ + [ + "md5", + "a69a1b05f13dacabd50d0c3932b61740" + ], + [ + "sha1", + "7f9233d03bcf18beb34f6f4cde9bc714d21b543f" + ], + [ + "sha256", + "d22d7b1f434eeffecb5d2764747178c0557c6b693a46c8fb243cf8a9639b90a6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "7za433_7zip_lzma_crypto.7z", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za433_7zip_lzma_crypto.7z", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 180719, + "subtype": "Archive", + "type": "Binary", + "version": "Generic" + }, + "c4ea1365-b42b-589a-ae02-41261bc8f28e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "LNK", + "hashes": [ + [ + "md5", + "2b84523843c2476140bae4228349eeaf" + ], + [ + "sha1", + "069c4ff7a755cf329063c1e27d00266e291ef552" + ], + [ + "sha256", + "3d616c5ded82ec4290489ea952d23fc97c3507a7bca71f47d83b56d479bc92b1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Uninst-AD.lnk", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/setup_install/win/Uninst-AD.lnk", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1730, + "subtype": "None", + "type": "Binary", + "version": "Generic" + }, + "c56463a8-fd2f-5cfd-aada-c495509f0d7c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c9171745d362210187c85e863a6438dd" + ], + [ + "sha1", + "acd44643f23ff62398c4f4ee5ede266624a19355" + ], + [ + "sha256", + "84728143116ea4051bffa26039eff727290be13131d58a6f5821441754ce6464" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MADPPC.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/MADPPC.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 57644, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "c5d4cd10-bb2f-5998-ab7d-bb2cecf174fc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ac85ae5e61ae8cad7325a8d09267db19" + ], + [ + "sha1", + "03275d61e067d82042a95712910a01b145e74fd1" + ], + [ + "sha256", + "fa62463c05e7264196922e99d6b1905f2ad4c9f488afd5d3bd00bc051add8486" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test522", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test522", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 756, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c5f8438b-f9ee-560b-875c-8bc7a86970ef": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6190c9cb088d2eef6ac351c1aa3af529" + ], + [ + "sha1", + "b876b42e40c7f13f54869be05076bd57b8391ea9" + ], + [ + "sha256", + "c388f51b159e5af968e7b5cdd9a38361289d8ea8290a5e0c8ab2bc657cbd9c23" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "adoc.css", + "path": "FD13FULL.img/packages\\games\\freedoom.zip/GAMES/FREEDOOM/DOCS/adoc.css", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 29610, + "subtype": "CSS", + "type": "Text", + "version": "" + }, + "c710a4fe-da23-5232-bd43-0238248eead6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "386ae7de9240bba8662f524fed8ebf21" + ], + [ + "sha1", + "3e390a9b0b5c79acbd27a4e4c3d4946a067f0205" + ], + [ + "sha256", + "4d5e58449c120b1ba5d0bfac3c214b6b3c249b82e123b02c03bacbd4b9cc554e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/de/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5654, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "c7eb25c0-29a6-52d8-b9fe-678f99e81ce5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "fddb222b788531e598845a8357480b99" + ], + [ + "sha1", + "6a34c52231a23639f4f2894395f6bbffaa4bffeb" + ], + [ + "sha256", + "e931b435b7cba2cb848570cf0cc842354fd299f9e3a7042458acf1c91dfac8df" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost-lastSAN-sv.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-lastSAN-sv.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1675, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "c808b456-66b1-514d-a7a7-49f3372885ff": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RCSRevision", + "hashes": [ + [ + "md5", + "fadc1033b35552d883955ece1802d7de" + ], + [ + "sha1", + "4840b17cca518cb84af8635a998387b8f3fc77e8" + ], + [ + "sha256", + "707e76cadf58b9c6c55047fde0b4d5154374913f49c463594d29640683902577" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Makefile.os2,v", + "path": "FD13FULL.img/packages\\edit\\elvis.zip/SOURCE/ELVIS/SOURCES.ZIP/osos2/Makefile.os2,v", + "properties": [], + "quality": { + "effort": "low", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": false, + "size": 19887, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "c86cb509-cd53-5ca6-94b5-dc12d9caa1dd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ea037649e604672e4b2228730a24a959" + ], + [ + "sha1", + "c792a5789bde3346742cefd552e5efca678a553b" + ], + [ + "sha256", + "d52b7d087bb771ce8b4982b812962c5de10049e66d1db67b0624b210b4fca597" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "c770ffc8-412f-45ab-b301-86ab6dc69965" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "amd64-darwin.macho-upxmain.exe", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/amd64-darwin.macho-upxmain.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": true, + "size": 4136, + "subtype": "Exe", + "type": "MachO64 Little", + "version": "" + }, + "c8804ca8-5d14-50f5-987e-9bac50e62c59": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b2c29c5cbb951656b54658d4df17816e" + ], + [ + "sha1", + "5a9f74d0c9ebc03be800789027ca3a809da9991d" + ], + [ + "sha256", + "68317bf63728841ee4c2f86415586ec22a17749c8c610bb98a4d18c5d8f2e11d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "nicintel_spi.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/nicintel_spi.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4929, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "c8b9b385-2273-5e8a-82fa-c044afb20bd3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "15a99fdae0f3dae905caf470152460d3" + ], + [ + "sha1", + "b3f98d3138a0d1313337a5332c920af380e03d6b" + ], + [ + "sha256", + "3aebe30d2f71d66089eec06608e3a022879ab3ef80b7f8a53843228fad41d6cf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wget.1", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/doc/wget.1", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 78842, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c95b205e-984a-5e0e-a148-f84593e58ff2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bbab071f0636a81735ca00f5342dd479" + ], + [ + "sha1", + "8c169e2e44372fd0efe6570b7d9c46d921b57c84" + ], + [ + "sha256", + "02ecdf6aaa8c3ed953fe24da5b453026f3413842b4671883c820c304934d93bf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test234", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test234", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1921, + "subtype": "None", + "type": "Text", + "version": "" + }, + "c9aea483-d912-5701-928a-23fae75069b1": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7339a33c560f37e460b18a32ca6af05f" + ], + [ + "sha1", + "e462d372a3de2086ba136d7d60d1c82ab537fa3f" + ], + [ + "sha256", + "fdd1f8cf8ce272c269999a6abe973651a5ba75088d28e414bfda10783fd19258" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "sys.c", + "path": "FD13FULL.img/packages\\base\\kernel.zip/SOURCE/KERNEL/SOURCES.ZIP/sys/sys.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 62725, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "c9be6d20-f6e2-53e8-917e-e3a5a8f326a8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b48daf7929a7e2e7a4984fd61e338e59" + ], + [ + "sha1", + "28c1e8b81cd20e88e6991b039de7ba997f3d3afc" + ], + [ + "sha256", + "8e0093febfd4ca391305f0f93441e85d7991d2dce9377fabb4f243f8a718978d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2.c32", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/cmenu/test2.c32", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 37284, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "ca1337fc-662e-59c8-9d24-c49c544f6d6a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f818804880872f7536f3c447318b6ea4" + ], + [ + "sha1", + "07386f0181b77926140bb2217e62cb777b5b1e47" + ], + [ + "sha256", + "18b825913c005850d8ea0c294fc723d6575b65cb1dd5d9a5bbe27c78ea4347b6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLKEYTYPE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLKEYTYPE.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2503, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ca567d9e-3c91-5d59-9c93-9e99300ff202": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "3ffccd0d0d3bf252a73e7e77ac7d7bba" + ], + [ + "sha1", + "f242ccaec7a96ed112f20f8c7d052a404c6eb7ec" + ], + [ + "sha256", + "d974afdea314ac39bd2ae8faa68d3d322d6598eab6de8463759a93cc29296a7a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tcpip_ap.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/tcpip_ap.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8785, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "ca963df7-97d5-544d-91d9-02275a4f3af7": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "415e733537c7d2aca6399832eef4173b" + ], + [ + "sha1", + "70dec5d0114f3c0a82fe992f60f543b9af0d6a6e" + ], + [ + "sha256", + "42484d8c9b2db4e79eac9e49ab73245889897b198973fc1ad06eb2172cd1bd54" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "chipset_enable.c", + "path": "FD13FULL.img/packages\\util\\flashrom.zip/SOURCE/FLASHROM/SOURCES.ZIP/chipset_enable.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40541, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "cb38d615-a08e-5fe5-a70c-2d6fe35a7374": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a8a4615c5268305f3564268df0ebc9cb" + ], + [ + "sha1", + "e293015b730e15936da7afd31b7ce7116a0b4af5" + ], + [ + "sha256", + "ee1c500bafb04b66fc2296673a54a1ba38112bc30877e4a4351687e186d13889" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mcpbase.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/mcpbase.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 28898, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "cb9ddc2c-c2f9-51f1-a470-e18a0c99a71d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "7ed066d4617a34884a31c0006f3ef5b3" + ], + [ + "sha1", + "9bbfc0a4caa6b7adefa4522c8cb03d9734b0970b" + ], + [ + "sha256", + "abee86b54780ba560256e6d73b7855c121b8daa4003bbd27a0d723535fab1c31" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "unix.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/fr/unix.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18126, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "cbb2f90a-6020-5267-a433-a079632330a4": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c4fbc35e15521c79a3f47c67e5c844aa" + ], + [ + "sha1", + "9806086713591644ab67319681faae4a04ed546a" + ], + [ + "sha256", + "6c56d4ad67289acaeb6f8b80de8ece189c7045e683075d5384448ce3afb06f46" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WWWATCH.C", + "path": "FD13FULL.img/packages\\net\\ethtools.zip/SOURCE/ETHTOOLS/SOURCES.ZIP/WWWATCH.C", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 17104, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "cc0307d8-28f7-5916-bfd5-aa323eb0c7fe": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "364a2e8239c7db034a8e719308bee56f" + ], + [ + "sha1", + "02f08f0c5b333dd1aa4784043b3ba2357fd51db5" + ], + [ + "sha256", + "821cd7ecfdb2aab97fc344d763b3ba0d7618320898e277575edd8ea54c2993b3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-zh_TW.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-zh_TW.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 125733, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cc07f3d6-b704-5dc5-9695-97e57eb36850": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "6a1da9ed9fe25f0a45ea2da1f405c28f" + ], + [ + "sha1", + "7773d2061c9f7918d1e9c6a051b5a916e45fe229" + ], + [ + "sha256", + "d9be56df50c1a0f959c208edff32eae8062556c6a3c1d36728b8b19eb491cd8d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "m_option.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/m_option.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 49355, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "cc6c3318-8286-500d-8b16-859015a112fb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c1947ea85bdd06c6e0228db86169a39c" + ], + [ + "sha1", + "a35f582bf118a6c7e91bf1516eba257aa0560702" + ], + [ + "sha256", + "87d7955812ea6805b2266b192224ccb5cb47acd6a17cc11055c8efded900b7de" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1910", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1910", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 976, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cc7d0e2a-5caa-5c01-8460-5500cfcf4432": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "f6ce494e12f1da078d9a7d01801be628" + ], + [ + "sha1", + "ee1f2dfd81e6dbe9b390077d3b70ef8cee72fe1c" + ], + [ + "sha256", + "3ec196a206d42eda362e6a62bd76d54353cc2c7af9aaf93887d74f4587db5a8b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.dll", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/lib/x64/user32.lib/USER32.dll", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 45, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "ccc0c1c2-a93c-5e4b-b540-6bc42968bd5c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "41e79bf025f1c784d67574735359d3a2" + ], + [ + "sha1", + "c15e61ecbc2373258b7b63d5247f96a9d5feed08" + ], + [ + "sha256", + "1a1253b70f4219a22e4c15a1af02394ab9ffc19e2783fee2525adbfa594672e5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "F965.INC", + "path": "FD13FULL.img/packages\\net\\crynwr.zip/SOURCE/CRYNWR/SOURCES.ZIP/F965.INC", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7640, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cd58658f-01ce-59d1-ad57-b83a801102a3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ba4d27629eecea05a7c2b7c1a02fba75" + ], + [ + "sha1", + "b4a75da816315bae6004f0c9c97ff76852e7554d" + ], + [ + "sha256", + "86d00ef9da0fda5917a8f771ee7e3e2a7976c9240e7880391bb8d1cb2ea986c7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test716", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test716", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 840, + "subtype": "Tcl", + "type": "Text", + "version": "" + }, + "cd58a7eb-358d-5056-b548-659ba3fd4d04": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5d2cbb83f5e606cb8e4929f0b0806339" + ], + [ + "sha1", + "583436211511559d7dc685d72af151df82e75244" + ], + [ + "sha256", + "b8473d5c48110bebd0c8939f6ffb21963ee66b60230712787432215808ec611b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ls_err.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/watt32s-2.2-dev.10/util/ls_err.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 57344, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "cdc74262-32e5-5314-b8cc-6714e6b47b1c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "44e4665a6110a5d802160db1baca551e" + ], + [ + "sha1", + "16ad5432a7d5a63b0f9d5fd91247f399528d876a" + ], + [ + "sha256", + "2a89398ca4dba1d2acca80e720c33e72c50151410c87a66d11beb5cf3726d014" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "E3.EXE", + "path": "FD13FULL.img/packages\\edit\\e3.zip/EDIT/E3/E3.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 19464, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "ce60ff12-fc0c-59da-9efd-d38483cb0604": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "6b5da893645b737a4088f6d023bc4a59" + ], + [ + "sha1", + "fd7e5d4e26d2c7d10a7dc3ffe2e00c0e34e06d43" + ], + [ + "sha256", + "4e42456fa66ae7a53f9c58c678df7ba0df0764c7aa617e808219090e1b921ab9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PARSERV", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINL/PARSERV", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 43730, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "cea33567-2fa7-5af7-849e-5e4be75ea7d0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bd4d35cc3688d0b5b3e49102a290c6a7" + ], + [ + "sha1", + "1aa041c9b3b5d238478f43d7c2f853015b1e7d38" + ], + [ + "sha256", + "20b1a68b2248e9a2be403f422edf0c9eabe4f5aa9f94bf7fbb168813a4db7158" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.TXT", + "path": "FD13FULL.img/packages\\util\\wcd.zip/SOURCE/WCD/SOURCES.ZIP/DOC/README.TXT", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 16380, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cee6f5d9-43b4-5b9d-a0c9-f378027aa5b4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3c569af1cc2e15092646dce0cb0bbcf7" + ], + [ + "sha1", + "37d1be29a8ebb865c6e4d91a8f084929e2ed8b45" + ], + [ + "sha256", + "4666b7ec084b070f7949741030f8881aa25723f438dc9aa11ca41fa8c653fef2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ZIPCLOAK.EXE", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/BIN/ZIPCLOAK.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 53713, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "cf180d79-0a56-5a5d-a9f5-f0f768746c6d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0938efcacb1114fd32ff5d1f261930d9" + ], + [ + "sha1", + "5ac5f6e317972d088c50699d81997ce2774f1b81" + ], + [ + "sha256", + "228695763a097dd05233c9ed7fa6ce5821a2929512c7ecdb037fa966544aeaaa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SS.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/SS.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 104580, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "cf2b1308-b973-5ce8-bbe9-1658623ecfa4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "01e7cccc38498c0a05c463e46cb6084c" + ], + [ + "sha1", + "5991620e8ab3598c7bca0c0b032c0a2818726fff" + ], + [ + "sha256", + "4b4ff189c7ccb8af0bc68bbfa62db7d83ef77f4e1613826e6b0df789a94c1bd4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test550", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test550", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 956, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cf39183e-478f-5b75-a811-a8874ec780f6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3f3d4ba986a62f9b75dcfc3a7850353c" + ], + [ + "sha1", + "c2738cfc57cff8ca06eeba3f05c76859462522da" + ], + [ + "sha256", + "ebb7f2478749f5bb2adbcca99fd692c38644699982412fe37c7305bcd63052a7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "AUTHORS", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/AUTHORS", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 32557, + "subtype": "None", + "type": "Text", + "version": "" + }, + "cf3f3e9f-2100-5d00-ace9-7746c0855952": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "05545390de4f95dca776b3c59e9d403f" + ], + [ + "sha1", + "b0d4ce96665f1dd25027b817b3c62d8d6543bd1e" + ], + [ + "sha256", + "37cd77e72c8ce88eb557fade56f78647aa64e071e894d4263c41cf5a436afbbc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devssb.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devssb.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 10998, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "46e227240a29579cc0a61b2ba3a90610" + ], + [ + "sha1", + "f7109885f9ad78b8f310a66d1a54a9e1c1e9cf4e" + ], + [ + "sha256", + "dc8d3676e91e44628157353a58838a793d8a50c20be0c170d0dde3001147c266" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wget.texi", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/doc/wget.texi", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 144500, + "subtype": "TeX", + "type": "Text", + "version": "" + }, + "d048c2d8-33cc-5f8d-b19c-a19c75d805c5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "6569916c50641a9a46569c3e5b2972c5" + ], + [ + "sha1", + "6c8813fd7893105cf0f1ef96060b5223e7c353e2" + ], + [ + "sha256", + "1585ec3b02165114fab2030f8226639095825d8da8288ccf0100ae4237adc436" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "DEFAULTS.NH", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/SYS/WINNT/DEFAULTS.NH", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6692, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d0a56bd3-a315-5f6b-a7e5-ca8775d93567": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "68197b9c77afbd0aa32f9f8d764898bb" + ], + [ + "sha1", + "49a09bf5299f2a2b96e317d5449c8262b3006450" + ], + [ + "sha256", + "f4d6feebc7654c787f9474eb8e7f8e12e2a3664b3ce22ef320b15ebadbcb1d06" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "yuv4mpeg.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libmpdemux/yuv4mpeg.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 20380, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "d0b8b65b-22c3-5d47-a507-9d183cd8c406": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1d4e8f7c060cc44c1080338bde9d4d8f" + ], + [ + "sha1", + "71348261551360ac79984847eba947be0be19725" + ], + [ + "sha256", + "1a12d615d8a4b9c6f59ab7091db3cd8f85e7e4ebbba821d66ab2f92aaf04d2c3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "EXPORT.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/EXPORT.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 18918, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "d18c0f75-0a13-5694-b14c-8a1027f50550": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c8ea69595e5172554b18fd336e24f671" + ], + [ + "sha1", + "aca72ad28161d83d8416ddda4fcbb1f3bdff095d" + ], + [ + "sha256", + "c2544e79afa2e4651938e7f76aeba806f9330364cdd9cf77a31819c8d6392149" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "HTTP3.md", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/HTTP3.md", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3736, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d1a7a301-4072-5f02-a9e2-3c1cf534b793": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1c9ccbd723d8655d24019d689d936b2c" + ], + [ + "sha1", + "71212361c04ada9d6bef46e8548afee6fdd2ab0e" + ], + [ + "sha256", + "721dc9948e5c0e78132d3005f808c45ced07835e71f1602d0ce714a5f8192458" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "mchasm.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/mchasm.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 3021, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cc4165bd3bcb6278ec4cda5fcda6281a" + ], + [ + "sha1", + "0992c57f1a197e22ad5308eeac25a9c30bc82330" + ], + [ + "sha256", + "b5b603fd71086b15a81fb294297f634d242519828ba0f20d027d8a2a4d8c4f70" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "12fd8f38-1dad-4893-9bc8-61b013411a08", + "19968211-04bd-4e31-bd73-b7bc34f5c3c1", + "1c667af8-908b-4121-9089-42cb208f11da", + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10", + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "3f5fa9a9-18e3-4b89-a8d1-10c50a99c701", + "4846a5e7-71e6-4483-b2ee-e8b02c3e2fd0", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616", + "afbbe7b1-6ba7-4972-b436-0f6fd9dd4181", + "ffd3df16-b825-4672-ba88-4fbe0eda3a90" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Simple DirectMedia Layer", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.0.9.0", + "vulnerabilities": null + }, + "name": "SDL2.DLL", + "path": "FD13FULL.img/packages\\net\\gopherus.zip/SOURCE/GOPHERUS/SOURCES.ZIP/WIN/SDL2.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 1331712, + "subtype": "Dll", + "type": "PE+", + "version": "" + }, + "d22aea9f-a448-52ae-90ae-a5bd8050dd79": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "5749b928b54cc8d869d8f41bba8231a3" + ], + [ + "sha1", + "821aefdbf6f5d8b9890f5cb53df54230216a2497" + ], + [ + "sha256", + "913123f4dd6c17fc2ebaffbcee799092b4dbe93fcc05d1089cc30e98e6c56ddb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wget.info", + "path": "FD13FULL.img/packages\\net\\wget.zip/SOURCE/WGET/SOURCES.ZIP/doc/wget.info", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 182939, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d24406af-2fe4-5f2f-8fc2-5045008706a2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f100521cc317c04bb5f12086ac9a5154" + ], + [ + "sha1", + "eb523868b89638026e0a36a178d319d1618ca524" + ], + [ + "sha256", + "d8889f6ec52bf25260bbce462b01a386fdce0c9a673b2e23777cfde8acc2c106" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "std", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "STD.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/RDOS/STD.DLL", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 32256, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bb77e4974e74282ac58079b92989dd74" + ], + [ + "sha1", + "01c28a666bbdb57e96aa784330284c16ccda0674" + ], + [ + "sha256", + "b4867c3b21b68121406dde843e32510b6bc28fc66f1ae378f12e303e4b0371dd" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "public_suffix_list.dat", + "path": "FD13FULL.img/packages\\net\\links.zip/SOURCE/LINKS/SOURCES.ZIP/suffix/public_suffix_list.dat", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 236342, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d26b171c-79aa-5da0-8c24-f3a10685ee25": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "fb12e10c5f900d759de4c7d992b555bd" + ], + [ + "sha1", + "429ce31a164c73db0e3444c68ba9d47cc4e863ac" + ], + [ + "sha256", + "08cca5d4de9be11467b4c9cdce55755d6dbe6790d0a279abb739bf9db41fbedc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "stream_6", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/UTIL/TESTDISK/TESTDISK.PDF/stream_6", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8885, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d2fb46c1-98a2-5926-8196-9988e5ada7ed": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5b760471c60bf6f9a0ee5e23a77bb9d4" + ], + [ + "sha1", + "d23207de9b76952df160a4f8d818207fa1190c3e" + ], + [ + "sha256", + "eaa7f5491600205e06c2c9c3044f05fe902991c17802def1683850a2fd971042" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WLINK.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WLINK.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 439944, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "d336a0c1-df15-541f-b2c3-d09d56786629": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4ba72f951403043d77686462c4a74341" + ], + [ + "sha1", + "276affb1b1ceeee67694baf776a806c85f22678e" + ], + [ + "sha256", + "96749b0305f992deda4153f971a88d590adcb45fdc5d4f5042b470bd7558066b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fcmp.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/fcmp.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 3072, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "d3c08f6d-6fe6-5a7e-b00d-07c5c87c75c1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "20368cdc3376cb628c44aa54746a6d91" + ], + [ + "sha1", + "d0b607594b85d8964ca0ca1a186f6d2c637a5096" + ], + [ + "sha256", + "0d718124ea3cf7381a6a0788186fc20aa876235434bcf4fd314acb27a2141226" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CWHELP.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/CWHELP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 18092, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "d3c39063-5165-5c71-aa73-00cb792c72e2": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "01fd7d5eb1f4cbcb63869027d066fed3" + ], + [ + "sha1", + "df2051477c33c964fabbada09f9f25ad3c724035" + ], + [ + "sha256", + "cba5a0a8e77cfa31948cfc60b780aa5605e9da1053f63c83b779b2e5f027abfe" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MINE101.DAT", + "path": "FD13FULL.img/packages\\games\\fmines.zip/GAMES/FMINES/INSECTS/MINE101.DAT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 746974, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "d3e9ac7d-bea5-5af4-bc34-482d9482b433": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2ab6695c4624de41db79d41704573393" + ], + [ + "sha1", + "f85fae31b464f436cf8a140dedf347be4e8a862b" + ], + [ + "sha256", + "681221ca48da559862e16a4df523d4cfb1a9239abf43c1a140b29d886475161a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SERSERV.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/SERSERV.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 37888, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "d412561b-f2a4-5984-98e3-5c890602adf9": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "66fe60e9184d01efc903e74a57343516" + ], + [ + "sha1", + "aa37c5a592ca4509845e73e7c90a2eb86d86644b" + ], + [ + "sha256", + "7b0b287ab751a8210a969ca08d0f8b88e525c4fecae1a2aaee89236ffd6dbc13" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "formats.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/es/formats.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18291, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "d4313f7d-2512-5e89-990d-927fd735e3a8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4a949e6faa0f22283cc77aca2e8ac255" + ], + [ + "sha1", + "273cf9329906d93bfcae8c44c61405a233306b78" + ], + [ + "sha256", + "82e47188b1447cf04d09b04d2221f96bdd0dd8432199e6e75071f3479a833fb7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TheArtOfHttpScripting.md", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/TheArtOfHttpScripting.md", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28220, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d45c1e1c-1d7d-5f14-8795-1cbb688f1f4e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8af54aab9e9068012b0c2bc561cee87b" + ], + [ + "sha1", + "8cdc8a3ba8f0fe915e032520e2a0258bad102ee7" + ], + [ + "sha256", + "e0cc2368bdb83a8a0290ade11220d63fb610580a697c3021899d1b7452828bf4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FTPHELP.HTM", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/DOC/FTPHELP.HTM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2172, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "d4a7dfa8-b8e3-5ab7-bb94-3af1385a2069": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cfb7caa9002bd213430d03b97a4acc60" + ], + [ + "sha1", + "623e79a5a6b297445e7aa6a18eb6c5c6b7a3af58" + ], + [ + "sha256", + "c2fa7da9635eb4ff663c94193d410d300760d4f5deffae1dc894ada7b21e3295" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "changes2.5", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/docs/changes2.5", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 93252, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d4cb76c6-91a6-538c-836c-fea987180fc7": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "d014536004bc5ec9eca9f90ca8e8f0a7" + ], + [ + "sha1", + "5f0853d6b1789e2a42af070d557b16b309f17a2d" + ], + [ + "sha256", + "156e739c358f3766ad52508b2acde5086ab7339500b2cf42134a32e7137c95b3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "386PC.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/386PC.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4565, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "d4d5c395-c20b-5782-b566-f3af518b1df0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "634389e2a8eedff7f0b0dd92d7d1125b" + ], + [ + "sha1", + "8591bf26f78822896f21f0f7a0636c56422b87d1" + ], + [ + "sha256", + "3bb45dfa7b32b92cf463d622a4df39dc7dffbd2756b70383c2134748122d86c0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1331", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1331", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1708, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d4e3c7e1-b8ec-5176-a1a7-c5c06a4ac487": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a6d1915486833764fcd64622f260d52b" + ], + [ + "sha1", + "d77e8f1904d392905f2ea07e144de291a33872ba" + ], + [ + "sha256", + "b2a66c17a9d0caf6ff12e4608f3d7b6516d124f549725a51864df284e9b6025c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SICAD.VIM", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/SYNTAX/SICAD.VIM", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 19354, + "subtype": "VimL", + "type": "Text", + "version": "" + }, + "d513e85c-f288-519d-acd3-9d9478564ef8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "275b30364bbc5d91ba19c88f39d2ef27" + ], + [ + "sha1", + "f16cf9be79286bcd1848a093badc864bd481e67b" + ], + [ + "sha256", + "920b4bb68c180e23c267bd6852a6b41a8ccc62117509dbe78adf1f7fe258cb01" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "syslinux", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/mtools/syslinux", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 50064, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "d52e042a-4aaa-589c-9cbb-a8dd537436e7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UUE", + "hashes": [ + [ + "md5", + "99254016b482012219ae1d8dcc4007da" + ], + [ + "sha1", + "22a1d426e6afa8c71cd85a519a26e083d3465390" + ], + [ + "sha256", + "97ddfbcb188db43c7e6c9af0fc4e0748022adc5f86c5c3a10ed23dfd158a0b05" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "GEM_RSO.UU", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/WIN/GEM/GEM_RSO.UU", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 1250, + "subtype": "Archive", + "type": "Text", + "version": "Generic" + }, + "d5381ab6-ba54-5e60-94b3-780061a1938b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "266efaf801a55023ed3ab1250d42a8d6" + ], + [ + "sha1", + "05d6f43783ac610996e01e3b6dc822ca8c80202a" + ], + [ + "sha256", + "beb2d865b4f6c5c4ae5b7bbecca592ffcaa9e46a4b5f0cd2be0f6e4abb6d8392" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test257", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test257", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2429, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d5de4ab1-0a49-5201-95f9-3cc4751a7e1a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5b309a91d1a7475953a51c7703f1b66a" + ], + [ + "sha1", + "3e0e35dbc9541200c6bf676982dac657e0bec333" + ], + [ + "sha256", + "bca9394e6baf7b36344c01ec4465ff05c2bfe9e62de6be9e3e59b1770240040d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1325", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1325", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 1358, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d60b65bb-ab45-51e5-89cd-192901b939b8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "dc590691fcd01160c21f7d1e056264ed" + ], + [ + "sha1", + "20a1bcd5742389b41f4d15e09c23efe2c40c383a" + ], + [ + "sha256", + "4c7f1f0bb3b26a4b51db7c14176394e7cd52d378252256a2ce8e978007bcdc6e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WTSAPI32.LIB", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/LIB386/NT/WTSAPI32.LIB", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 13312, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "d65b3073-4873-5fb4-a202-02313d9062aa": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "97ad049707bd7b217acc8fe8e93e197d" + ], + [ + "sha1", + "09ddcc13eab9aca14f2d84c6ef25c2b804fab9bd" + ], + [ + "sha256", + "88e0b475a825f6a8a146c748524b85f157aaa4ad784ea10ccbade990ded2b4aa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "suffix.inc", + "path": "FD13FULL.img/packages\\net\\links.zip/SOURCE/LINKS/SOURCES.ZIP/suffix.inc", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 148395, + "subtype": "JavaScript", + "type": "Text", + "version": "" + }, + "d662eee2-65eb-557f-99dd-cb44cd3c7fbf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "613eb48e636d0d034509559380b356bc" + ], + [ + "sha1", + "861a523d5346f4664c10d540bdaa5b29868d075d" + ], + [ + "sha256", + "e40c83b0b207ed041a5cf84672bdb1517ae08fd3abf0162cf66c94706fd8225b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.1", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/README.1", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6915, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d6a680da-50d9-502a-8d12-278efdf3b622": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UUE", + "hashes": [ + [ + "md5", + "8ab679df0c552406e1e3d15935dd51cd" + ], + [ + "sha1", + "4c3249b1e80cd26b8ebf774856579b3420761129" + ], + [ + "sha256", + "ce29a8af42a67b6f124cfb78ba0ed2083a7afa134481215b426d9d40eaeb55f1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "GEM_RSC.UU", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/WIN/GEM/GEM_RSC.UU", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 14154, + "subtype": "Archive", + "type": "Text", + "version": "Generic" + }, + "d6a96a2d-f778-5174-b357-a1c1b6f91ed1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bc6e9decb8fc1b3dc9748463f0e34a15" + ], + [ + "sha1", + "d8bd596aeebd9e7e8e3140dc6a88a7f431510bcf" + ], + [ + "sha256", + "90ea8b862e1fe870cd81cd63eeda1cf07616a52cef2674bd1f80696dfeac6854" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vorbis.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavcodec/vorbis.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1518, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "d7502e03-14e5-5a56-8f72-d6bc5e976962": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "9b17a1bca9c86dc2a0ab12b435b94613" + ], + [ + "sha1", + "72f6fffc89744b73eafe49f08f0a5585ec470964" + ], + [ + "sha256", + "c4b9ba6543fc50c2803b0f35ea6861d77f03d1c891c66a9c004e3bca672b2067" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TestComment.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/test/TestComment.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2032, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "d76359b4-f401-5d99-aca1-a9a8b03bab76": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0db1ff14ccb953024ae65784df937ba2" + ], + [ + "sha1", + "8a66cabaa5c8f67a94ea25cb7463e741e80a3609" + ], + [ + "sha256", + "ce5e9b42410705725615621b96f8507f59c3905bf18303266ab136b8cf33d2d1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test259", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test259", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3215, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d76b353f-0817-526a-9c49-9dc0ab0a926f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "27222954e1b3f789d71cb9d64f44227b" + ], + [ + "sha1", + "12908133d4f9b31cfbf265acddf72eba4d9e383a" + ], + [ + "sha256", + "6e2b48b8c0aaea0337178ad43cd5fe17df5d143254471e3b9612810e18e4c960" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test169", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test169", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3817, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d7c42e63-776a-5a60-9428-774c0f4c4a85": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "74b82d175b13b36febec4f1b9d7fa86c" + ], + [ + "sha1", + "64f24960a5a2d7dac5cef546ed8ceb0126e06103" + ], + [ + "sha256", + "9c332da4f0eec42c0e65131990cfe3a28b0416e94da806a4a62a0bca0c30a661" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.ssl", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/docs/README.ssl", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3062, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za.exe.lzma_eos/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "d822cf76-166a-59ea-b12b-92baf320c114": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e124932c965c8243df6f914e33ae65ba" + ], + [ + "sha1", + "5edf0eaae7f44ff8f70e31fe5920206f081f68cd" + ], + [ + "sha256", + "70622f64dffb4d08c4653c3ea37f272235c2fd2aea17a563b4ffc230d82dbb39" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test16", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test16", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1245, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d82c5c2a-bd14-5671-a846-ef67d9cf9a66": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "318066428524a7c3efb0f8f983c7352d" + ], + [ + "sha1", + "01243f50057fe13ec67296d7e43f6a79988b386c" + ], + [ + "sha256", + "8f864926858364de04206dcd97b194a24c21fe4c3cc4af7526eb6e677a4d445b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "file_mpg.c", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/src/file_mpg.c", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 11606, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "d8329a6c-3985-5fbd-9f5e-a40c5882ca6f": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "2e8412b903695c6c235af4ea178734f6" + ], + [ + "sha1", + "b74cf2e270c3a0c38e85e4650549f95566e5ebed" + ], + [ + "sha256", + "6646a31fe6ea51f0d1de1f0860dacdfdfa27af78e46c2acc6230be8d9c3b5ff7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/it/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 42033, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "d8c2307e-649e-50f5-8b60-8342100bb2fb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "8f70808ec28a60480a1aad891cd05268" + ], + [ + "sha1", + "cea7348bad41511c328545a388e5d3d04008ad91" + ], + [ + "sha256", + "4497620ddde438dc510b4afee6c5563b005907fdca1a8c4ebd26b5aa4a465d35" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devices.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/es/devices.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 149729, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "d8d068f7-15f9-5718-857a-ef47c600a760": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "613eb48e636d0d034509559380b356bc" + ], + [ + "sha1", + "861a523d5346f4664c10d540bdaa5b29868d075d" + ], + [ + "sha256", + "e40c83b0b207ed041a5cf84672bdb1517ae08fd3abf0162cf66c94706fd8225b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/README", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6915, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d9526936-8189-5796-85ed-2b1ec1202e43": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "aa14abdadb70366ec0e3ffb82ddc34a2" + ], + [ + "sha1", + "9c912418d1ac5c3eae54f637ee15fd887f87bf3b" + ], + [ + "sha256", + "b7262c169551cbc97b35ebddd1a89cd778bd253f6ec50341d3fb090f6b99afc9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CHANGELO", + "path": "FD13FULL.img/packages\\archiver\\cabext.zip/DOC/CABEXT/CHANGELO", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 26949, + "subtype": "None", + "type": "Text", + "version": "" + }, + "d95e482f-0935-553e-a43f-3d3414d639a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b8a68aa1fbfad379702de87e6c3bf729" + ], + [ + "sha1", + "6490a00c8306fe6f06ec76086d29fe6c6b21e503" + ], + [ + "sha256", + "5dc1ab9832707774a9c8d73e90312a2eeb0ce98f3ea9e9fdbd53c7edec397852" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "install-linux.sh", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/ci/install-linux.sh", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2229, + "subtype": "Shell", + "type": "Text", + "version": "" + }, + "d9dccfdf-25ad-5181-a7e2-cc1da0dc43fc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "97e53e763d2f5a4d522af509e3d7e200" + ], + [ + "sha1", + "ceb882e4a5ad1401a5802ba4f3c5db2813c1ee79" + ], + [ + "sha256", + "460188ffd82a1c352d58309b5537ae963d0b9c8136ec26c9d5a1ed58b834287b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WHELP.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WHELP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 111970, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "d9f18215-9c15-5f1e-a8d7-bf56e3cc6fc6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d2a0e6523f57a762dde1e822e630b185" + ], + [ + "sha1", + "e904b58bd967b8ac38a19684d4648b7dfe0b73c7" + ], + [ + "sha256", + "e480ff3f476b0960d5600c6ae08d7331edc23ca0af90d9a5b41407e55532725a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "INSTR.SET", + "path": "FD13FULL.img/packages\\base\\debug.zip/SOURCE/DEBUG/SOURCES.ZIP/src/INSTR.SET", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9905, + "subtype": "None", + "type": "Text", + "version": "" + }, + "da82a28b-83e1-5e2d-8a1c-9a3208c862c5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "38ef48cba76d0ab69b675099767d12d8" + ], + [ + "sha1", + "e11c905cce811b79abea08aeb3bf343ca88169c7" + ], + [ + "sha256", + "2831c79dc3aaebcb8877de8aa5e849295c4850847e747cd2a9459f2c46415bf3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/pl/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5653, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "dac8cbca-bb31-56ba-9761-0dae35c01505": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "80249a2b99f7849e852d0711a96f675b" + ], + [ + "sha1", + "d7726cbfc99f8b7a465aafd9a3afe6f1ce42b435" + ], + [ + "sha256", + "59b5bf79dee1a6bdbbfff811c2780116dfede0ed5abdaf6e2472d282efd176cf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost0h-sv.key", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost0h-sv.key", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1679, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "dadded1d-b987-5aa0-b092-3e857a12fe16": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bf3f800a8e293ddb14da21389b21161f" + ], + [ + "sha1", + "4b75a0db2b3c648a2565f31626e29341c361a080" + ], + [ + "sha256", + "55dc4d5dbfeca21f640217d56ad025d23a207156f9abb85bab2be03944b5f35d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "EDLIN32.EXE", + "path": "FD13FULL.img/packages\\base\\edlin.zip/BIN/EDLIN32.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 37026, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "dade8fe8-fa7a-5600-bab9-d4e227593bdd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b672730b1231891f5b540b33e46dc779" + ], + [ + "sha1", + "1ee905c5ff2028a902c2d2aeea467a83e4832ff6" + ], + [ + "sha256", + "affd62ea8afd4ad3187ab48c2ebe1d5e1152ca0eea99a7722dc2b7df16caa277" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/de/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16860, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "dae9ba6c-c0f4-5138-a60f-209979712dcd": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9c41c145af36523c842cfee704004088" + ], + [ + "sha1", + "ae1d57f0d542cdb655272a8d27d77813c91cfd18" + ], + [ + "sha256", + "0b625cf8c9b7c67b387a9da026c9f4beef06c245206e613b546bc4a573d2f223" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playit.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playit.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 55467, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "db8ae340-ea38-572b-bef4-fd0ac46e5b0d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "533fd834ffc0e3b205693884257d9981" + ], + [ + "sha1", + "c965e576b9f35560776294ffceeb738ee6e6fcc4" + ], + [ + "sha256", + "635b90498d652ee5f8403171d3639eba5da43a01f816187bbffb575047edeac3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "idna-tr46.html", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/LFNFILES.ZIP/doc/test/idna-tr46.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1115, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "dc14088b-842d-556d-84ff-2f99d95f59a9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "Certutil", + "hashes": [ + [ + "md5", + "fa1969cbd94068aeb3431928975006a9" + ], + [ + "sha1", + "2b32bc516233d50330391c7b9eca95853509d425" + ], + [ + "sha256", + "83ec5804e64166b93d848b288e9a244ac45ea87ab9b63bff686cd5268824aa58" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "Server-localhost.nn-sv.pem", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost.nn-sv.pem", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7396, + "subtype": "None", + "type": "Text", + "version": "Generic" + }, + "dc570d60-3f6c-5a9e-8df9-e93a31b4655c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4625b43b58ec9faa2a6a93635ee00bce" + ], + [ + "sha1", + "1da59043c8088eee88603b291ac1a223a366443a" + ], + [ + "sha256", + "9b3804f64a5de4703fd97cef2d6e031a037fb1e99f0b2f140bfee57cec16f64f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1168", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1168", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1570, + "subtype": "None", + "type": "Text", + "version": "" + }, + "dc8d897a-042b-5188-b2da-b389e3891940": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0a55af9ddeede035130c247f0e1cfb82" + ], + [ + "sha1", + "9babd855a5dad53409b7bb7690b79cd18227e494" + ], + [ + "sha256", + "5d9a702240b46e31cdd4ab3864ee198af03ef3f4afed2cbccf7d43504c368ddb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test63", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test63", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 856, + "subtype": "None", + "type": "Text", + "version": "" + }, + "dc9d1b4c-c737-57e6-befe-b5b89cec05d5": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a284d918a9707f459d917f600e521978" + ], + [ + "sha1", + "06e7ac2a84bb2e54bfd4a55c853d709b719c99ce" + ], + [ + "sha256", + "6660e76e8eb7e1823d236c662bad41c348204d3a7bb6dd2bdd80b193397fe8ee" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "OS_WIN32.TXT", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/DOC/OS_WIN32.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16785, + "subtype": "None", + "type": "Text", + "version": "" + }, + "dc9e2fcf-8dba-5a70-ac92-7de7a4a2251e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "d570557fd9473eaeecd036989010ba04" + ], + [ + "sha1", + "b936d45dc0d67f4642163e1f7dafdf6845dabb4f" + ], + [ + "sha256", + "4e56911f5805e6b0c6c5a4a22576c63643d1a989ef35312d31d0d27f05ca0b9f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "video-codecs.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/en/video-codecs.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15760, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "dccb91d8-2e16-563c-a30f-e0084c2d8b55": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "1b59746ec5d9550ad6d8266db7d0fcb2" + ], + [ + "sha1", + "c6e17951cedb5934f658575fb071d16eb3098d23" + ], + [ + "sha256", + "1b0373b654805bd632ee4ce92bcb52bc0e23ecb1982eb29f6baec56cd1e00eaf" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "6561b124-ade5-488c-bcb5-2207a1115d3c", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "Open Watcom", + "publisher": "openwatcom.org", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "1.90", + "vulnerabilities": null + }, + "name": "MT7R19.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/MT7R19.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 30720, + "subtype": "Dll", + "type": "PE", + "version": "" + }, + "dcf716f5-b0bd-5a92-b9c6-38eaedd83a5b": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a0a8b5b6150450720c51d45b6c541060" + ], + [ + "sha1", + "48cd0f9e9a621544b8fa35e0857d63a13b895500" + ], + [ + "sha256", + "4a39070b919a1ecd8ce75599f4a0a153d849823314ea1945bc3063a4d0e2cf20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/ru/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 58017, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "dd31dafc-65d0-584c-b642-598c01c9abd3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "d014536004bc5ec9eca9f90ca8e8f0a7" + ], + [ + "sha1", + "5f0853d6b1789e2a42af070d557b16b309f17a2d" + ], + [ + "sha256", + "156e739c358f3766ad52508b2acde5086ab7339500b2cf42134a32e7137c95b3" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "386PC.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/386PC.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4565, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "dd468689-c2fa-5ed3-97cd-0126ea4390df": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "87d9cda0a64d6108812acc4dc2e5ba7d" + ], + [ + "sha1", + "7b3d1902e80d5df9e7038dce869b803b2cf6793c" + ], + [ + "sha256", + "2af3a455bcab37663f2fdef1c5a7a55959121b2d7969138b082f0885929aa1c2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "make.exe", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/bin/make.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 26624, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "dd6748f6-d110-5e8c-8a93-763baa76bd40": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e9d7b9657e8a6d1deec232ecf59b29e1" + ], + [ + "sha1", + "aae04384605d9e7806f7473dfb4d79be33e995ab" + ], + [ + "sha256", + "2f31f7ec7e2e9a116d48be9f8a233e98fe401c35bd5e8f62fa8d5a0fb5e0833f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WCC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WCC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 861276, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "dd77fd7a-7e69-5765-abd0-2bc3734b8c2c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "ae7b74755d59556757c7df18acb7b341" + ], + [ + "sha1", + "df6ebb5c8f06d8a5bc565c8a14b345212fe5eda9" + ], + [ + "sha256", + "f563fa5d731a32c7dd52e774727fa69c64f1506da033089b3a31a03731b47e37" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/en/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 23886, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "dd94414d-dc9b-56b5-94d1-9f6faef224ef": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4fd38d901cdbb2249d2b251a3cb58c72" + ], + [ + "sha1", + "bd03425d12f200a75bfce3c7e6f1fd1c85480d10" + ], + [ + "sha256", + "0c0c61cf6a62aced507b5fe02add449b5ce8313c80b6a30f234b775101485ad5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/pl/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16707, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "de09f468-84e0-52b9-8141-81cc3439d459": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ca2bb6d26be3d029004a093e877140d5" + ], + [ + "sha1", + "9cfa52d30a729b253f8d0cd899681f72c4f5ccaf" + ], + [ + "sha256", + "0199a39fabfc00dc4c64f05658c6c9b40b7f9fe1eb64a491cb694b16a4fb5949" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test318", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test318", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1864, + "subtype": "None", + "type": "Text", + "version": "" + }, + "de442f30-d599-5aeb-9936-d849c5470ca4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "25a3b594a3c936c688936a1bd9935eac" + ], + [ + "sha1", + "9870d0448ba00ab2440a9cf5989c3539898a7a22" + ], + [ + "sha256", + "6cc21bf2fe2ad87ded3fdbad760275a40ef326e7a53977afe3e247f01211758d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "appveyor.yml", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/appveyor.yml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5093, + "subtype": "PowerShell", + "type": "Text", + "version": "" + }, + "de8d8e83-ce7e-5f5a-baa9-9513714567bf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e568ce859959dda586fa1a6100cf0a08" + ], + [ + "sha1", + "515f8de8386c47ddd2dd93d6618ebccc2c7fead8" + ], + [ + "sha256", + "4cc0da863f03aef768c723750afefc827f6fa59249ee38c61687be038b93bbf6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1248", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1248", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 779, + "subtype": "None", + "type": "Text", + "version": "" + }, + "deca7c70-c109-55bc-88b2-ee52c3bdebbd": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "1492d7065e57f270a2df40bafa6706f8" + ], + [ + "sha1", + "e4ba09278c1a28f0db9ba2fce456d5cbe2eba48c" + ], + [ + "sha256", + "506a0d947b02910f18d4d30eed6e0fe71242b4060697f9acbb6a0de50c402067" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "GRAPHICS.C", + "path": "FD13FULL.img/packages\\util\\wcd.zip/SOURCE/WCD/SOURCES.ZIP/SRC/GRAPHICS.C", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 78208, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "dee95658-0cb8-5e1d-9b33-8b57a3be738d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "7za.exe", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za433_7zip_ppmd.7z/7za433_7zip_ppmd/bin/7za.exe", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "def278cd-248e-561b-bf8e-7c1bee9cfe8e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4d1ccb331269671dd38c5d683ee58184" + ], + [ + "sha1", + "4c11b14be7ba7b413dde0e736077f724fad4f75b" + ], + [ + "sha256", + "44d1c1867b686a758a272572897144524c92b6e36a603496a97466d8cf8d8dbb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ndis_ins.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/ndis_ins.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15334, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "df139d9f-07da-5752-9d6c-947a2c9d4acf": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "79fe11ec775979222c2b9250c23ce233" + ], + [ + "sha1", + "16db0c2e1578e93e8a94b1d378de7f587b83b270" + ], + [ + "sha256", + "e5f043815e9ac161a8c7c83ab9269334e0101ed8615dfdf321fbf4b2422f0d09" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "certs.inc", + "path": "FD13FULL.img/packages\\net\\links.zip/SOURCE/LINKS/SOURCES.ZIP/certs.inc", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 376708, + "subtype": "None", + "type": "Text", + "version": "" + }, + "df694fce-bfdf-572e-8033-443ca4f35426": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bb8faf5f93c0b90957078cec98d5e723" + ], + [ + "sha1", + "2577cebde42e49bcee3a3a76bc440c0eab361166" + ], + [ + "sha256", + "d076cc5eab6305c8ec30a1b2c10eccb0daf7625d6a01f610835bfe3d214ea671" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2032", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2032", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2486, + "subtype": "None", + "type": "Text", + "version": "" + }, + "df6b970c-2191-59eb-bb5c-7d0b4528df38": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "33f8cfa6d5f69a2d443ce6971dd5a910" + ], + [ + "sha1", + "ae73f1e8b58b3c8f99b9a65faa8b516cf3f924b2" + ], + [ + "sha256", + "7ec7b96e50fd8022d17321d28f4f98e78844318e763997b97353838b625186a1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "usage.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/cs/usage.xml", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 42961, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "e006a381-c4e1-5706-a3b3-fc5153a8716a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a992dcbeb09ca22912361d9c6a0ea083" + ], + [ + "sha1", + "41e01e7f37cafb31fa332d2c88483ced1559d7a6" + ], + [ + "sha256", + "c49cdfb75280a4f14215572f470c387087ac70b19ef7f9ebb7d67738bab5d232" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/setedit/WinNT/makeinfo/makeinfo.exe/unpacked_files/0", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 109056, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "e02b254c-1b98-5194-82e5-c59db0f883e4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "4fa968cd44679c3b49852ff8178d66f2" + ], + [ + "sha1", + "ca7b34767238fe046206de0c22e9df58cb71fda7" + ], + [ + "sha256", + "eccbc5923bcf6e0db8b6bbe256843ffae80d7260680812d96bba015094b15af2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "tvout.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/cs/tvout.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 16291, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "e07e352f-bd1e-5216-a144-5493d6f0bb0a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c0804cf413b9d27b385840f8d9d36514" + ], + [ + "sha1", + "c029123f402f5712565143c5aa64ebf923382c5a" + ], + [ + "sha256", + "ac27df9a417fb9b7a75ac59fdaa7e210dbad238cbed1949fc5eae16211d59312" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "pfilesel.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/pfilesel.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 67026, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "e087ef2e-cbd5-576c-b428-616c956554ae": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "2c7cc712e9289a13d9fb23ada745159a" + ], + [ + "sha1", + "733f3b90b55a24b1f4a9ada4e4b389e1b8eaa335" + ], + [ + "sha256", + "72e251f1d588464d8c10d75aa22a7749ae8e42ab0434b93c4f66e54621be09d7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "3com.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/EN/HHSTNDRD/HHSTNDRD.ZIP/network/3com.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2090, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "e10e8cd8-ef22-526c-a216-4269e6f57b22": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a00ae1c4589d88530d5e8ce60838e556" + ], + [ + "sha1", + "782338dfa89276ac08ac74279a1aa5305235ce53" + ], + [ + "sha256", + "e7636b268cde242bea2e469a457523c58f9c09e600144111ea9b77a0455c45f4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playmp.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playmp.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 78945, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "e2afa3e2-9379-5f03-a2b0-89a47afb4c12": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9aad66ef6de5c1ff9953250c11f800f0" + ], + [ + "sha1", + "588314fba68b98a4fc35a850f51e56b4db004d7b" + ], + [ + "sha256", + "d47c92ed3b41437fe56724d2acdf9aeddf2636f3842df6d2854212ee7dcb9d23" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "stream_dvd.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/stream/stream_dvd.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 35262, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e2cb2a64-dc5d-5446-a1be-f7df8d260e6c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9678293939cf02608bcbf6980a2a2f2a" + ], + [ + "sha1", + "862688d887fe727b101ea43876e2f08e47f58ac9" + ], + [ + "sha256", + "2a13d7093828452655330e806c8f8e3c9ec69e61033a62ce419f5ee907f0273a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WEMU387.386", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WEMU387.386", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 31037, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "e2de4cc6-c240-5709-aa74-b1cf11061733": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d8d5d8b9343c56f64978164a53cce0e4" + ], + [ + "sha1", + "605a2378c92d1ca9cb850bb403c60496346bcbdd" + ], + [ + "sha256", + "53a466b504371dcdda1504c90d8121d4823921f03554c3526995fb2bae7159f9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\net\\curl.zip/doc/curl/zlib/README", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 5185, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e2f91246-c9c2-5a5c-a902-a99cda146d5f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "539cae63d5d9921828b42da9ff128291" + ], + [ + "sha1", + "e27d17f0425015f7e5a63a90393f056a8b51c806" + ], + [ + "sha256", + "2f400a19712c7ff6e6bb51be8975391789af9983d545ade243798c1832c95e20" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "3763e742-c42e-4522-94f7-23b4f5265bc1", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "7-Zip", + "publisher": "Igor Pavlov", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "4.33beta", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\archiver\\p7zip.zip/SOURCE/P7ZIP/SOURCES.ZIP/p7zip_4.65/check/test/7za.exe.lzma/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 462336, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "e33e15bc-23a6-58d8-bf2e-f938d5674f0d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ff136ee4b7d89415b5a29e45f8457140" + ], + [ + "sha1", + "dbe148205b5aa39450e9fed0586aadaf6493f203" + ], + [ + "sha256", + "f33f60f4e45df10f50bd07aabbf557c78d2e3fbc59d9abb733821f6fbd275871" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ppc_regs.h", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/arch/powerpc/32/ppc_regs.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1168, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e37786ab-ad42-5d4f-b673-8ac1551993e3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "a4af8ead9aaaabf3a5f170ba0334d595" + ], + [ + "sha1", + "b8d49edce2a81ac1e6ff536846e6e6363baf113f" + ], + [ + "sha256", + "88f4b3eddd61be5341a9cc27d679500b84ca4a6b12d1ffcff2d7cbfe8f6a1f6e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "GENERIC.RC", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/SAMPLES/WIN/GENERIC/GENERIC.RC", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1883, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e378b4c2-d9fb-5fb6-aa1f-97d1e43e7c5a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "53e4213ccfe9dd79e35d910c19684aeb" + ], + [ + "sha1", + "c067df0d7a874b6dc5634facb338a0fd56aba14b" + ], + [ + "sha256", + "bc647b8ee0851f6d23978f09f0084c423b4d2736d099a4e123df34e2f1014bf2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "file_fs.c", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/src/file_fs.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3929, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e3bad866-1d8d-5e88-b4af-0ca994108c1c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "da57d1a291e3db4e1cada243c7c7e2e0" + ], + [ + "sha1", + "5c1b89dc93acecd0d2289743d1de152ea48c62d0" + ], + [ + "sha256", + "24c2ed0758271fe5889d5881f3ea7000f12a897c2f37c66e979e1a52aa9e224a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test561", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test561", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 968, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e3c58b91-31c6-5796-9552-490724de1923": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "LNK", + "hashes": [ + [ + "md5", + "8ba8444d1c7763fda2b2ceeadb28b5be" + ], + [ + "sha1", + "7af3bd2416d72fe41784f029772977075c75aebb" + ], + [ + "sha256", + "c457b10ebd03e08d641e0eaad2a04916522f71a185e01a87fb5f63b6127badc1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "MinEd-PF.lnk", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/setup_install/win/MinEd-PF.lnk", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1773, + "subtype": "None", + "type": "Binary", + "version": "Generic" + }, + "e44b7de9-d3d6-57c7-9c99-6b1037257a76": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "e3146ea68d3236b437d4189a8368153a" + ], + [ + "sha1", + "182ab26b57d7f54e79d58e4e4ddc4a0f46df5bf4" + ], + [ + "sha256", + "9b1bef87982dde989d9c02e215b08271919585629aa44706f8757ace8a31a69a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_TLSAUTH_TYPE.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_TLSAUTH_TYPE.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2806, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e528d079-a674-5c0c-bb3c-ba1369563212": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "17873d07fbdd334b942f61c40bb6af2c" + ], + [ + "sha1", + "b7a12721ec6a41356304ae4374edbf6edccdda0e" + ], + [ + "sha256", + "45d8b9d1ce806b310c5563a7615ec678e0236cd978b8330b765cba6211a9a020" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwmixf.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwmixf.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 25046, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "e58930d2-f1a9-5404-8557-c148d61b2607": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "x509Certificate", + "hashes": [ + [ + "md5", + "567e155dfcaca1ad194088c087f73fc2" + ], + [ + "sha1", + "0744c13a667c710061579ae9ea5a418a64d5661d" + ], + [ + "sha256", + "30b56d8596668971791fc6d1f649cf030ae036fa0bc6f37062cdeae726412136" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "1", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/stunnel.pem/unpacked_files/1", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1163, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "e5ce7cbe-80b6-5a8e-88f5-3152447a52d9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0d468c082378618ada0f2bc56db0594a" + ], + [ + "sha1", + "b26e2a69c41ae2fc8826993c8414d5b546c23ba8" + ], + [ + "sha256", + "e98aea81da57224d5610a168b7eb428c27971db843dad029d00b13d2ca8e4556" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "vorbis_enc.c", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/libavcodec/vorbis_enc.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 34588, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e5df9df4-edcf-58d5-8499-e0ced2c2cdbb": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "8c8b108def09d3497152e47e60a03f32" + ], + [ + "sha1", + "a24fedac4a5a761222f2da765e9477343e3230c7" + ], + [ + "sha256", + "e72600cf2740df0ea21e99b0f20ef43ab59590c0f3e53b6c912a2051385d9437" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_SOCKS5_AUTH.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_SOCKS5_AUTH.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2559, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e66c6823-0fb7-570e-afdd-38c295f8ca9e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5db2c9d818b684de78fc04b7ebc030c3" + ], + [ + "sha1", + "d50b1f2fde9fc841fdb31019b7c3b2340b190d4f" + ], + [ + "sha256", + "233ab664976866ca809738e08da95a1a5c1de31f76f9c93afa9ca5c19a030a6c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1", + "5ed655e4-a30d-4ff3-a106-21491138521b", + "923bcf86-c9a0-41af-a25c-3f9db1ad71dd", + "b1a13169-30fe-4ed1-a1fd-c660501084ee" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "isohybrid", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/utils/isohybrid", + "properties": [], + "quality": { + "effort": "low", + "priority": 2, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 20416, + "subtype": "Exe", + "type": "ELF32 Little", + "version": "" + }, + "e685a252-5d3a-5a19-acb1-df92b5d5175b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "22c3f70a76ce9b4591a3d57da1505bfc" + ], + [ + "sha1", + "6e38ffe0ede1e04fc716dd17bc975d615bb8ddaf" + ], + [ + "sha256", + "1f18059517ec87671e2a130cd6cd72b9a0574097b3d8af66a9b22e267b2a11db" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README.html", + "path": "FD13FULL.img/packages\\edit\\elvis.zip/SOURCE/ELVIS/SOURCES.ZIP/README.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 18336, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "e6c493f3-5dce-54f5-9c86-688838d9294e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b009ce1e3a693992006b1f240f33ea8e" + ], + [ + "sha1", + "e0665e719b77d1764eb2f4b2efdf6efa6e02370e" + ], + [ + "sha256", + "fd36541aa456ec51bcaf2f50b616ad9a931f92fb1e4a339af3a3c8021a63770d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.com", + "path": "FD13FULL.img/packages\\net\\lynx.zip/NET/LYNX/doc/samples/lynx.com", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2192, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e6e986b5-15a7-55f4-b8be-ecadd2bd7af2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2e196a3a7f358f5e683a673207f1eb49" + ], + [ + "sha1", + "f526acf3d07ce3143830b7f4f793fbd3a377af7a" + ], + [ + "sha256", + "30dbfdf963bcedd8373abb2f2ef54ceae2cc88858a3be197b4511819bde0b199" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2040", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2040", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1344, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e78562a4-b8f1-5903-bf85-c5b2a194e701": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "e575e41145ddcad8b2709698d47f82bf" + ], + [ + "sha1", + "9424e742fead2adf5e85a7701538b24c2eaea786" + ], + [ + "sha256", + "ccf91fa99e896007755de36316904cfce109514a204809266505b33336364b00" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/HTML/zh_CN/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5349, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "e7a653af-0e93-58bc-91b7-cad463dd05ad": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bcc7957d08e8db0a968f885c51bc761e" + ], + [ + "sha1", + "ab49877bf3f763298dd5cbd0399c22b3f7c87b35" + ], + [ + "sha256", + "595057a77db064a6806b052034ca4d37a2ffc833d0cae7566b1499e296c274eb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "urlapi.c", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/lib/urlapi.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 42173, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e802faca-73c8-5588-9965-fb9e9d4daefe": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "816bf4f24fb34f00af6a7e694b30882f" + ], + [ + "sha1", + "d3cb8a63f5decf65c7a6b2caf6e7f5b5f916eeb7" + ], + [ + "sha256", + "77231d8d1148b3df27751d2e2377a93ee7d2830c6bb1b39046e96dd15c2fc062" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test1560", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test1560", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 584, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e919645b-b728-58f0-8d53-393933de9e3e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ad572cd156fc85d4a5abe31c136a0fcd" + ], + [ + "sha1", + "8e4ee609bf76ab6affb07901a7f7e3e212386351" + ], + [ + "sha256", + "74863871d49fde3fddd83971cdf75cdb55f3f5eb9dddf0602d214b32bdd65fd5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2054", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2054", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1331, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e92e48c2-8618-5555-8fb3-84ab8cc24a01": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bc7946cd354ea7836057f4c23eb4cbfa" + ], + [ + "sha1", + "5fdeb9cace38560960f4a19a114238d3190cd09c" + ], + [ + "sha256", + "71f116433c78a445db4dab174b0ff0ea4a46efd08fef69ac7145763ead74d343" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1007, + "subtype": "None", + "type": "Text", + "version": "" + }, + "e96618d7-966d-5c58-8ff2-5c8a61beeadc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d70455c3edb963d2fbb1794534af2aed" + ], + [ + "sha1", + "007f08330ff01d4191f1db266ae2c618cd67aed7" + ], + [ + "sha256", + "765f14a1cbaf5f424557b464523d3f412d77d3ceaf2b0eb8b5194e73381e8120" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BC.EXE", + "path": "FD13FULL.img/packages\\unix\\gnubc.zip/BIN/BC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 70111, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "e97232bf-0e1d-507c-89b9-b7678576c27c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "9192b0d29e32e64cbe4f06076ecb45cf" + ], + [ + "sha1", + "2af770b571b0c8b08c6c8d0fec87542718ddd7ba" + ], + [ + "sha256", + "01c2c05e6de8cbac72f03d977b534b4de44ab552caaf9ee02604e47fab6ec61b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "unicows.c", + "path": "FD13FULL.img/packages\\net\\dillo.zip/SOURCE/DILLO/SOURCES.ZIP/src/unicows.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3970, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "e975ad9d-b2f9-54f5-98ba-4ed5c4341ef6": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "4921838bc99f14fcdeeb6651071b6b44" + ], + [ + "sha1", + "308b822a491e0ee1e17f10d99baa5bc213e6892e" + ], + [ + "sha256", + "a80e6f498f96e1fa517228ba1975f74be0ad125be7242a9b386ac60178d71b07" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "BBSPPP.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/I386/BBSPPP.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4593, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "ea086e4c-1d76-52ef-b3cb-6415a92675c3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "381ad01003ea9378f459c7420e0a88c2" + ], + [ + "sha1", + "b3d237b48aa251a3c3c5f2484d8203fa086cba32" + ], + [ + "sha256", + "48198fd24fb2a156927d4d760fd3efb9fcaf4ec44a01a741c6385cf9975eeae5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SHSURDRV.EXE", + "path": "FD13FULL.img/packages\\drivers\\shsufdrv.zip/BIN/SHSURDRV.EXE", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 24933, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "ea3a229b-1675-5090-9d34-983c81959627": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "af3ad19152d1f3b9ad6367194645fded" + ], + [ + "sha1", + "4401980281d69b88fa7fbe0a281f90861a3f1194" + ], + [ + "sha256", + "2f061245eca2ceee71f443c3ae915eb681c5ac4844ac9b0f229b56afedd51ffa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "1", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/doc/presentations/2017-05-16_CppNow2017/slides.html/unpacked_files/1", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 841, + "subtype": "CSS", + "type": "Text", + "version": "" + }, + "eacbf275-729a-5469-b142-1f3bbf453ba5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UUE", + "hashes": [ + [ + "md5", + "f990c5d3aca8ce8b268fdf65f0f34908" + ], + [ + "sha1", + "b1a7c649d4d8bd94c034f200de7d1e0db25a197b" + ], + [ + "sha256", + "285b4cf9eda19b81d2cfc10a8736444711d44ebdb716b7607b941f7ba01de7f0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TITLE.UU", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/WIN/GEM/TITLE.UU", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 26280, + "subtype": "Archive", + "type": "Text", + "version": "Generic" + }, + "eb027cf2-3e75-54d3-94bc-bdec936a9739": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bd5804a391890790460f2dc2e8ef7af7" + ], + [ + "sha1", + "4241c1688709ae20143a81ac15e71570aa249d3c" + ], + [ + "sha256", + "2ef24579ffd3f05be6005082cd22b8c44237b5f9078a66a209d1dbd9a6ef8b90" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "amd64-linux.elf-entry.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/amd64-linux.elf-entry.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 9746, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "eb3a4129-2ad9-5338-b99c-18f21b9afef1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e10058d4d77e1b5da8c0fd3e650d79c1" + ], + [ + "sha1", + "a5c9c00bf6f5f23636333109b8b06b5c5aa9099d" + ], + [ + "sha256", + "7bd33a5d181d2624397ced929041ed9d5f5048fa2591b6e0e1516137acf35ffb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WRC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WRC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 307759, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "ebbcbedd-e3c3-5ccd-af2c-d7d6267f6d4b": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "445cfa38ca262a31992335d42b68835a" + ], + [ + "sha1", + "93b104d103cc414123f3536aed383f7b92d11d0a" + ], + [ + "sha256", + "4dccc701d350f4c37bfbabbbb54e3fa66f8f8aa9b2a417a30e5fc6575ea734b5" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test.po", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/tvision/examples/i18n/test.po", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 101, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ebeb7d16-088e-5197-9ecb-fb6ea1b74bf0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "96f97d7d4b4ab686482307920dca1395" + ], + [ + "sha1", + "ebb8337e04b53f368d70f7a6d633ca0d497c2a2e" + ], + [ + "sha256", + "d009b97cd774e35f3dabf62084ba4e0d334a75d9f686f71242072d97b5d27069" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "fmlfn.drv", + "path": "FD13FULL.img/packages\\drivers\\doslfn.zip/SOURCE/DOSLFN/SOURCES.ZIP/fmlfn.drv", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 2560, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "ec9e6729-bd47-52da-8072-23f037b7f748": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "40088bd992c5a0b21b116a3bed3f24a3" + ], + [ + "sha1", + "c41a03eae54ac31239eb23c45540d17afff8c9ad" + ], + [ + "sha256", + "2bb8dce71fbd62f172d1dcd2e1bf7783467caf60e1ca48509d714f4db077577b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "benchmark.cpp", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/fixed_point/src/benchmark/benchmark.cpp", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6618, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "eca3d5fc-f183-5918-b1a3-5962107ff552": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bca16094ed2e2516e714855fe209d7ac" + ], + [ + "sha1", + "59eaf37e18f8864e7cd17fe1e9f7a7dcd77e6192" + ], + [ + "sha256", + "0ca9b5d4f453012bc0bb04d96ad096eabdbc50f2ed2b8a1d05892c370b48a2ed" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arcumx.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/arcumx.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6520, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "ecc51086-5dbe-5615-8929-e27d302b3d43": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "ZIP", + "hashes": [ + [ + "md5", + "14e0d4f1d195b67758eefaf75a1b7740" + ], + [ + "sha1", + "23af44b4be9bd84718ad60b19ba830ab80369ef4" + ], + [ + "sha256", + "94d9f9aec16f2964ec3323dc0f490b8b20be132b5a3f663dd74c29890595dca2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "zip.o", + "path": "FD13FULL.img/packages\\devel\\fpc.zip/DEVEL/FPC/units/go32v2/paszlib/zip.o", + "properties": [], + "quality": { + "effort": "high", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": false, + "size": 10328, + "subtype": "Archive", + "type": "Binary", + "version": "Generic" + }, + "ed2677c8-6e89-5282-8e43-6839822b93f8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4108cf387c4ec6a3f1d1466e1cf5e982" + ], + [ + "sha1", + "7b78d9aac8a4fbcbf0a67ba41bcd8f1a0db7997e" + ], + [ + "sha256", + "063144bf8051f8583c404cdf107f80b004bb72bd618efcbf72b233ef98f0321f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "page_32_content", + "path": "FD13FULL.img/packages\\archiver\\bz2.zip/DOC/BZ2/MANUAL.PDF/page_32_content", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2122, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ed3d2822-4941-5062-8933-8f46fd7e7c28": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5b5c4356b76fecf2aba0d6a4846cba18" + ], + [ + "sha1", + "359208ea26aa6a918b63911c2f486e54026459d8" + ], + [ + "sha256", + "056d95d02e55ab91ddf899df23a3b68b81d6d30ff49a2b78f3f33834c15c0fb9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "lynx.hlp", + "path": "FD13FULL.img/packages\\net\\lynx.zip/SOURCE/LYNX/SOURCES.ZIP/lynx.hlp", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 51580, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ed74d5c9-5ee2-56b8-9281-e4256e0139f7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "24aab4d7e3d9aee3c8a537ec6e372d75" + ], + [ + "sha1", + "d14c0a4755e5178c9307b334186b50e9e968bf53" + ], + [ + "sha256", + "36f328acb10c50416be1c0fa10990a018d3731a426eb6b585a8c284044a96a9e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WINT32.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WINT32.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1658, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "ee1dd18a-2813-5043-9790-18a8c22782c4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cb436fb6d16061e90fbf0391ff377ed8" + ], + [ + "sha1", + "7c574ed9307a260934993f9130a33605632f6e05" + ], + [ + "sha256", + "a40cb8c5ce22668118e8125eca72a6c30b8c72b34c397618fa2bbfda23f2b926" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test568", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test568", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2042, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ee4db8b9-f55a-5220-b4d5-ad92fa38a686": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a2898f177192dada81dcdca5f2beaba8" + ], + [ + "sha1", + "119c2e2739572efe38eec3cc0048834cc5de46a9" + ], + [ + "sha256", + "e3e934b2217a16b1849857ea27b608d8ac7a75719f43476caa24fda81c70b316" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_FTPPORT.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_FTPPORT.3", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3216, + "subtype": "None", + "type": "Text", + "version": "" + }, + "eea0cdf8-9aeb-5240-bc75-09eb36d71926": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "cf3e7453c0ba79f2048ac97823877c97" + ], + [ + "sha1", + "59ae9fcce280a20ec49c4f32ae0b688fcce2820f" + ], + [ + "sha256", + "5d4e736912c55cd4983b14f98db4faa7ef8cc2a8481537bfe0d96ec770e3d654" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/fr/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5622, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "eed47043-dc63-5110-a6c0-f17f26d7c066": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "677a0b8e9b956520649f9dedaec51eaf" + ], + [ + "sha1", + "835cab8cde699bcbb7265d08045d35d0e0df3b5c" + ], + [ + "sha256", + "a84f833cf4d644cab565add9f8846d2c9fdb92b21c5f67903bff72d7c0795979" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ZIP.EXE", + "path": "FD13FULL.img/packages\\archiver\\zip.zip/BIN/ZIP.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 93048, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "eef9193e-d694-57eb-9a51-ba383da4e6b1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "77847f4007d40194846eb83e48f99e0d" + ], + [ + "sha1", + "c620dd2973c217310b33a31e06e46c4e5865fb44" + ], + [ + "sha256", + "64faf8992143141aea08edc7e2b3fdc74968ec20649d0f8486732a256eb6ce4a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test85", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test85", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 969, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ef025681-9a01-5105-beb4-216103fa0fa3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3647d8aa04cc0e0d3301ab14b16b995f" + ], + [ + "sha1", + "dae3377b2678bd3abfed6be0063f406f9aa20d56" + ], + [ + "sha256", + "00322420134a77bbb623bd0eccac8bb0a86afab318ed067b2b1922b68e226b2e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test82", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test82", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 938, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ef7419e8-1ca2-52ea-8f20-f13e918c2858": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "338cc88d9e6234c9a18f62c7c40de1f7" + ], + [ + "sha1", + "02e7f181ce89542d16c4c8f88602158400127740" + ], + [ + "sha256", + "69ceba8cb4fce79cf70cdf73b16deac293c69d8228003cdd3dc77f7b5e9b7c73" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "parserv", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "PARSERV.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/PARSERV.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 41984, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "f0227785-7249-5e90-8e74-820349f42209": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "504cb3242d76117e3add2183c3b3be02" + ], + [ + "sha1", + "f47facdfa0d82515db10e4f79deaf34e9bd3c39f" + ], + [ + "sha256", + "01e70be8bab254d8894dab301c56aeb5770bd1e7472a124b1d41344cbcf7f0b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "pci.db", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/vidix/pci.db", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 548872, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f082dc0d-6a9a-577a-8069-5ef1d3230729": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "bd714916448bd96e92b4f96988dcb70e" + ], + [ + "sha1", + "0bbbb0e7c16e3c8507e4a50c9765bb149416f234" + ], + [ + "sha256", + "68f1c07c9b295d918a890fe47b0203c6a45e50bab6d6e121e8258c72ccd98f5d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "cd-dvd.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/es/cd-dvd.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 15411, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "f0b2f778-4a49-5ba8-943d-5a796da8d70d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "840bbced6969577421dcff347c009238" + ], + [ + "sha1", + "48dc73be868a6fd86dbd176405279518175e29ab" + ], + [ + "sha256", + "d00231e857aa821f9ca1519681463fafea852bb437c9b0ca49ab341bdee04b55" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FAQ", + "path": "FD13FULL.img/packages\\net\\curl.zip/doc/curl/FAQ", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 64796, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f1286b8a-e415-5829-8dc0-fe26ab83f553": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "bcaf06051faf5e14eaa4a248bd7a727b" + ], + [ + "sha1", + "558fa2fed2edd575f5763116cfe3ba75dc823cb5" + ], + [ + "sha256", + "66e864486b0223f015946c86109d0b728a06a38f68fb60cf3ee73dc82dae0c8d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test168", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test168", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2586, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f12c749e-a544-55e9-970d-51a15ee2b835": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "247b1d6e384d15632d212fa85b3b9c42" + ], + [ + "sha1", + "b4a358e37f5be513a6a22841d40885c9241961d1" + ], + [ + "sha256", + "1ecea10028371a4ed3dba5234b08f3d6a222e7de3d0932c5aee44edeafae6275" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WPROFW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WPROFW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 282696, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "f24242bf-15c8-5ed0-b050-e8915e45d7f7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7ccab78510fcc45c726aaf6c8d709671" + ], + [ + "sha1", + "622474491418921eb96fb5706f6f14c8a33941d1" + ], + [ + "sha256", + "914684dae82a1ef21e8343a7a5edd90850916439c1a250b9d164bd16258ec37e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test258", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test258", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3250, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f24ae22c-8ac5-552f-92ac-96b2bf4ee04c": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "7314b936ecc84a0025db2b0aa9a4a80b" + ], + [ + "sha1", + "cf719fd82ac013cac9606c002c00ce41aa3f31cf" + ], + [ + "sha256", + "35b74ed8dbcd6a23bfbe8c8c6974e24d6de25d976f1a47bd6ab413a534479a21" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "codecs.xml", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/DOCS/xml/pl/codecs.xml", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 25921, + "subtype": "XML", + "type": "Text", + "version": "" + }, + "f24af074-8c36-5806-a30a-271cb8b8a992": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d66f64a1b3a176819b39320198da8620" + ], + [ + "sha1", + "23f0167ebe34277a7f408ad33d3544367efddaa4" + ], + [ + "sha256", + "648d0269434671751a8b373d4b4c17d15ae3629b68f6306ad08cfe07e1ed4c1b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WATTCP.SAM", + "path": "FD13FULL.img/packages\\net\\wattcp.zip/BIN/WATTCP.SAM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27134, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f3687af1-9a54-584c-aca2-69f5efc19e96": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2af2f9656f5b7c722870d0f5b61c3fb0" + ], + [ + "sha1", + "f576e9f50d169c02df5373881381f599e2b4e6fb" + ], + [ + "sha256", + "969612c82a5509385382f1c5edd8f86505ae9fd5968e2c157ec2471e93994880" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "file_pfx.c", + "path": "FD13FULL.img/packages\\util\\testdisk.zip/SOURCE/TESTDISK/SOURCES.ZIP/src/file_pfx.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3059, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "f39d786d-7238-592f-9a84-f736f2e6baf7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "16ebe48545e7a99e0e7735bca29e1858" + ], + [ + "sha1", + "77b7cc02f4e5a3333e88d7c9730dfaf7bdedcbd4" + ], + [ + "sha256", + "f27c9cff7d765a818b4333e7d2aa784eef2e6dabc5f9fb1f663548137f69142b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "ot_tcpip.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/ot_tcpip.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3456, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "f3bf0183-1bf0-51c0-86da-6b5decc9d8a3": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "0fa15d99097dc0762612d875380272af" + ], + [ + "sha1", + "9ffb63556f89ee4ff0a2dc21b51451b50b6d25d0" + ], + [ + "sha256", + "c457aae8657f1d84421bd4ba94100c17d317f1ced3acbd3e0fc690978e3aa382" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.dll", + "path": "FD13FULL.img/packages\\apps\\doszip.zip/SOURCE/DOSZIP/SOURCES.ZIP/lib/x64/user32.lib/USER32.dll", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 47, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "f49705a1-e1ab-5b70-b4b6-0e1dcc7c302b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "1755e986cc6190c26851411e73ee37bb" + ], + [ + "sha1", + "1df39b82b7916b4063abb1ae163678f07e362782" + ], + [ + "sha256", + "5f56c565693a167afb42ba99b7bdee258a9b8e93fbcf01b4fd238e6e300f4fdb" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "novell.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/DE/HHSTNDRD/HHSTNDRD.ZIP/network/novell.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2891, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "f4b9b1a2-0a99-51a8-95dc-69e88a6922b9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "501f2698392589de72708b8488b02fbb" + ], + [ + "sha1", + "11b275b753ee1484cade44a3422eccd5d933e72d" + ], + [ + "sha256", + "f9caeb286a4dbf0efc4cf0def174158dc609f17f973a5a6a2467873610b6a22d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NETSERVW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/NETSERVW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 14208, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "f4f621bd-3c03-5b00-96e9-8452e8455323": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "656b96517edab17dcc14b8fbaf594064" + ], + [ + "sha1", + "924d4f82a4d74934c06951da8fb8fa854cfebeb1" + ], + [ + "sha256", + "a895e28a6109d3035c0e7df7d1bfff351281d35aadeac09df85bb64c9521107d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2025", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2025", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 7090, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f51867a3-2b2b-5192-bd85-fa48828cb631": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "72fce5fabbaa369dc6d367b82d5f6890" + ], + [ + "sha1", + "f5b0300aee49a84e207d190bffaa57c8f907071f" + ], + [ + "sha256", + "29f0ea4001c6a42917d7f965d4548f032d1303ef90ca0378b9ea8c7b79eabf12" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WDC.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WDC.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 688480, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "f5859a74-5396-5820-bc8a-285a72a0db86": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c861f1bfe64781e98bd60d89efecc444" + ], + [ + "sha1", + "7f5d37496b174404c706b0cdc647de3e389a2760" + ], + [ + "sha256", + "6e9518fbd88a0857fe861cd16a3558afde5b84068e7cfeaec5277f46123912b0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WIN_3D.DLL", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/SAMPLES/IDE/WIN386/WIN_3D.DLL", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 109830, + "subtype": "Exe", + "type": "PE16", + "version": "" + }, + "f5af9bdb-c4bd-5961-b088-8c1b8b3659f5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "68e31e114152a167032a623828967e99" + ], + [ + "sha1", + "f1d8280be3fce487b0ca584624b736ef01c1ff18" + ], + [ + "sha256", + "b2e2941e6eec0b0d11ee7f0a7246d098e99d938276a4a41ceb30523d514cde36" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "googletest-port-test.cc", + "path": "FD13FULL.img/packages\\games\\noudar.zip/SOURCE/NOUDAR/SOURCES.ZIP/noudar-core/lib/googletest/googletest/test/googletest-port-test.cc", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 40232, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "f5e1a089-562d-52fd-b7b2-1437149b59de": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "017165e16f32b3a26af6e594c857fdd9" + ], + [ + "sha1", + "714057e7c50e7b898c9103efefdd62a75713ec62" + ], + [ + "sha256", + "e324937a8279cf56a641e484258f30c09e33300b5bfc2e9876c1ffa31846b6b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "help_mp-en.h", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/SOURCE/MPLAYER/SOURCES.ZIP/help/help_mp-en.h", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 131415, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f6b75700-cb68-5478-a79b-8a9f03cb0df3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "DSAPrivateKey", + "hashes": [ + [ + "md5", + "c3f875d43c7cd7b0e3f064e2cc852edd" + ], + [ + "sha1", + "555cf9009cd4f5a1809c384dc60af52ea358909a" + ], + [ + "sha256", + "b4acd8a0498f51cad5891c0e015cd93664d3dce7c38fe29782cf0be123ccf0df" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/stunnel.pem/unpacked_files/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1192, + "subtype": "None", + "type": "Binary", + "version": "DER" + }, + "f6e83c60-0f5c-53f8-b023-5abd0c82e1d1": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "189f044e7084043b71d668472d2f1e4e" + ], + [ + "sha1", + "d4058f1b63ab3148a1d5c83780479416bb74fcb5" + ], + [ + "sha256", + "a223f7cdccecad26661c596a67c63bcb547a881b002e6037e243b8d4bdae03d1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLKEY.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLKEY.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2731, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UPX", + "hashes": [ + [ + "md5", + "43551bad0dd27b4d0407b86147b95d93" + ], + [ + "sha1", + "04e359150487768c587ac66b1f60588dae7b5997" + ], + [ + "sha256", + "5173a4566bc9c6ac9e66b8cc85e1bd6d70a2e76ab32e33c53ef3cdb218d91d72" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "1c667af8-908b-4121-9089-42cb208f11da", + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "makeinfo.exe", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/setedit/WinNT/makeinfo/makeinfo.exe", + "properties": [], + "quality": { + "effort": "medium", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 38400, + "subtype": "Exe", + "type": "PE", + "version": "0.60-4.x" + }, + "f746f6c5-5365-5da2-8dc1-d8e359efe345": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "RSAPrivateKey", + "hashes": [ + [ + "md5", + "3b263964f522152d68dd4ca43cae41da" + ], + [ + "sha1", + "d5f8c56ff79ad4829029a684b90c0092beb0c8db" + ], + [ + "sha256", + "dfae0debbd1d6819970233367546ece457818e604d3e407be0b1911cc1d4b572" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "0", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/certs/Server-localhost-lastSAN-sv.pem/embedded_secret/0", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1674, + "subtype": "None", + "type": "Text", + "version": "PEM" + }, + "f7958a76-1d51-59c2-b19d-0ce26660b4d7": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "62ef42f35e647081f2424a54a7292dab" + ], + [ + "sha1", + "c7d0887c0906c36caaea57001d4e033328e0e73e" + ], + [ + "sha256", + "05f77ad96f38a8215719be373631158a9da6b8c91c09f4fdc3cbf53eb1b3f1b8" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "C_README.IHP", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/C_README.IHP", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 255045, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "f79bb484-039a-5c52-9c4f-558d6bd6cb18": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "9d940d6df1673d9c8e277850bc829d89" + ], + [ + "sha1", + "f708d5f39fb462fd664b654340c75c183e514538" + ], + [ + "sha256", + "67d36e08fe5778798b80a28922e4e2e791f9d667a3c15f5e8bef1663f5ba6d46" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "SHSURDRV.NSM", + "path": "FD13FULL.img/packages\\drivers\\shsufdrv.zip/SOURCE/SHSUFDRV/SOURCES.ZIP/SHSURDRV.NSM", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 51167, + "subtype": "Assembly", + "type": "Text", + "version": "" + }, + "f83216d3-a3c3-526b-8a8c-9d0c3437e0e2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "913837976b2897e0d6a056465e58ba12" + ], + [ + "sha1", + "fc1e9c839f67dce171d725424ab9ccc894601f24" + ], + [ + "sha256", + "4b2202e7d6ef703a41df7959532be06f4be56c87149628caf56082dfafdc2554" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NTOOL.TXT", + "path": "FD13FULL.img/packages\\net\\ntool.zip/DOC/NTOOL/NTOOL.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 26129, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f88d015e-666e-54e6-bcb4-3ca4cfe5665a": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "c1f5917eb8a38cefc16bb65a22b9b012" + ], + [ + "sha1", + "8586be5aae246dc8cf22711af26a02df06fa6df0" + ], + [ + "sha256", + "5a5488e02e4ca3c0663718463bae4b36618e8b97ca166143d702cbccef214255" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "CURLOPT_PROXY_SSLCERT.3", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/docs/libcurl/opts/CURLOPT_PROXY_SSLCERT.3", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 2984, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f91a412a-07e0-5f3e-b422-c73205c11f77": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5303746ca72a04943672dac52be92163" + ], + [ + "sha1", + "aeb523309eb5f59303465d42e2d800655dec96e2" + ], + [ + "sha256", + "b4b394abab1d8f2729e95de5eec32bdea852e3b0456675a7d2143e6fec8a929b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test275", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test275", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1664, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f98474f7-1f8e-5976-ac70-141e5f9c4dc4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "944a28bd770ac46f1a0995f5fba5d83c" + ], + [ + "sha1", + "cedff0e7ab9fabb2fec8baac4ee16cc892b2a963" + ], + [ + "sha256", + "1a09937f90583e12e43aeba0e5ed422b77bc5a879a481c9dbf37b3f3e880b38b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "README", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/lib/zlib/README", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 5200, + "subtype": "None", + "type": "Text", + "version": "" + }, + "f991ccaa-e6f7-5cf5-80a5-fe7904f4e570": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0ad6014217155d661ca813acfc73993c" + ], + [ + "sha1", + "d0cd9bf3cf102b69d3d55f30c916fcbeba17ec66" + ], + [ + "sha256", + "9c0e72fcc2771509b70c6d80af34cad3b51eb78cea6d5aab91a4ef87b41caf3f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "es.po", + "path": "FD13FULL.img/packages\\edit\\setedit.zip/SOURCE/SETEDIT/SOURCES.ZIP/tvision/intl/es.po", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 14829, + "subtype": "None", + "type": "Text", + "version": "" + }, + "fa4a658b-4126-5ef4-81af-a5e082b9f5b6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b0dd43569db92224a4fbef8cc6c09128" + ], + [ + "sha1", + "3dc8fc910120de3d1768eb0c9aae842e1cdfe965" + ], + [ + "sha256", + "548cade9a90ca83ac72a2f10006eaea9d9feff1c4b8b65e5d69e8d6c564ccc49" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "overview.html", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/doc/overview.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8844, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "fa7a862c-3c39-53db-9a21-ddd43907a18d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c0f72d46cc94963b1d23451bbb3866e6" + ], + [ + "sha1", + "bcbf42e55f3dab8f2b97923a5336494ae9043047" + ], + [ + "sha256", + "7c0df73703e0bc1571f1489664d42d34874bb2bb2a890541f07df8abc9e8047d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "playwav.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/playwav.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 20485, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "fabc165b-de27-5e26-94c7-23fa6c2a90e8": { + "classification": { + "result": "", + "status": "Unknown" + }, + "format": "", + "hashes": [ + [ + "md5", + "acd3d22abe6123ddde59634c272aa74c" + ], + [ + "sha1", + "b3a3ba7f828eba015546fbaa7a8c58a02fca1af1" + ], + [ + "sha256", + "1be7efd40f8a518371581ad50ed2cb946cf975eace3e01fd6f404aa28d85b29d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "LAN.ACF", + "path": "FD13FULL.img/packages\\net\\arachne.zip/NET/ARACHNE/8086/LAN.ACF", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4078, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "fac437d9-3782-507e-aae9-ab59bc84b44a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "73d335137a3d90607b3e5cccc5106809" + ], + [ + "sha1", + "3f9c0b3f99623011bc84b140e091f31a36392303" + ], + [ + "sha256", + "6e5cf0c3fc3b5c71f26bb73fa73dc349b9fb1110993d22d47acfad96073d4301" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devpess.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devpess.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 6331, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "fb1609ed-0fbb-59f9-b3e2-e07b85767cc2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "b0dd43569db92224a4fbef8cc6c09128" + ], + [ + "sha1", + "3dc8fc910120de3d1768eb0c9aae842e1cdfe965" + ], + [ + "sha256", + "548cade9a90ca83ac72a2f10006eaea9d9feff1c4b8b65e5d69e8d6c564ccc49" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "overview.html", + "path": "FD13FULL.img/packages\\edit\\mined.zip/SOURCE/MINED/SOURCES.ZIP/usrshare/doc_user/overview.html", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 8844, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "fb64ddb1-d34d-5145-99b6-463cce8375a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UUE", + "hashes": [ + [ + "md5", + "ce4e2a9bc0493384e9998e6b33245d47" + ], + [ + "sha1", + "75329063c2e4d1b380d7e362c2d2e7890f597c0a" + ], + [ + "sha256", + "e8f857a5fe4e650921d6afb06cdc71303a2d097bf0adef1bcb5dd25579cf0fe0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "NHPMICO.UU", + "path": "FD13FULL.img/packages\\games\\nethack.zip/SOURCE/NETHACK/SOURCES.ZIP/SYS/OS2/NHPMICO.UU", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 1273, + "subtype": "Archive", + "type": "Text", + "version": "Generic" + }, + "fb7c2249-9b88-57ab-bf18-cb7623d4e8cb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "45cc74d088903f64469d69a6f93b3cec" + ], + [ + "sha1", + "91cd38de96d219b0033c34eb35c99529afc1a642" + ], + [ + "sha256", + "e9d0b8e2be68f866a952799f993c7802fc471952a770dd7aeae1ee0fe4c8c664" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "streaming.html", + "path": "FD13FULL.img/packages\\sound\\mplayer.zip/DOC/MPLAYER/LFNFILES.ZIP/HTML/cs/streaming.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5596, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "fbbde831-ec19-5298-9aae-566789810904": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c23d5c7573446b6ff7e5f32d14969b33" + ], + [ + "sha1", + "fc72b15a9a0d2030faae4512eb0e77a3f13dc378" + ], + [ + "sha256", + "9473ccc3daa8c7a69a839078f4a7a294452a63233946e08ffc63e7ba22d11225" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "USER32.LIB", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/LIB386/NT/USER32.LIB", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": false, + "size": 102912, + "subtype": "None", + "type": "Binary", + "version": "" + }, + "fc2a4351-27d6-592a-9b90-025113196935": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "ef27382eed3085d712254f04e7213768" + ], + [ + "sha1", + "ba9a95ad76cc19c4276f1c6ed6b53c3a60c1f28e" + ], + [ + "sha256", + "b34a079ad5ac30fd0050b05a5eecfec93118dd810097116ef6e29143ffbeb1d9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "wattcp.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/ES/HHSTNDRD/HHSTNDRD.ZIP/network/wattcp.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5514, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "fc363f9d-d830-5423-9f47-8c9e91da2352": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "1bac8b929562c45b6b035399dd0d256a" + ], + [ + "sha1", + "79f1632c28a5e920f188cd0cf450659f6aa57a3c" + ], + [ + "sha256", + "80d988341fe214094af02e3c471ad7e8397cfbfa3accab94782cb9b31822e9af" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "history.htm", + "path": "FD13FULL.img/packages\\base\\htmlhelp.zip/HELP/FR/HHSTNDRD/HHSTNDRD.ZIP/network/history.htm", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 27810, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "fc45c38d-ab03-57a9-baaf-bacf116556d9": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4a949e6faa0f22283cc77aca2e8ac255" + ], + [ + "sha1", + "273cf9329906d93bfcae8c44c61405a233306b78" + ], + [ + "sha256", + "82e47188b1447cf04d09b04d2221f96bdd0dd8432199e6e75071f3479a833fb7" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TheArtOfHttpScripting", + "path": "FD13FULL.img/packages\\net\\curl.zip/doc/curl/LFNFILES.ZIP/TheArtOfHttpScripting", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 28220, + "subtype": "None", + "type": "Text", + "version": "" + }, + "fc71d622-106a-5256-bb8f-c5be8cb34122": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "41db98765f417c03f11a6023a6e42c6b" + ], + [ + "sha1", + "a976b0f90ee424e1ed71f955261a5e6f91f25e93" + ], + [ + "sha256", + "d8c9d8cf4adda68b7b8ce3a544bed4a8d97ed097e5da658fb5160f96ee10a852" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "OS_390.TXT", + "path": "FD13FULL.img/packages\\edit\\vim.zip/EDIT/VIM/DOC/OS_390.TXT", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 4922, + "subtype": "None", + "type": "Text", + "version": "" + }, + "fc9afeb7-6d8d-5f28-842a-d5da3f99d05c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "5d69560a62baed55392e2707ead4cfbd" + ], + [ + "sha1", + "dd24b9692faa52bb7da0b8fe548ffe0a1369c000" + ], + [ + "sha256", + "daa9d836606d16c3d5d0a9a06aabd44317bdeb1c453323f7ac77e17a82570e4d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "devwsb32.dll", + "path": "FD13FULL.img/packages\\sound\\opencp.zip/SOUND/OPENCP/CP.PAK/devwsb32.dll", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 16563, + "subtype": "VXD", + "type": "PE", + "version": "" + }, + "fcb7f0a7-6453-5345-af0d-de215a71b07f": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3987df89de5711d49fa3ce1d331fbfac" + ], + [ + "sha1", + "a49179909e09e9395c08850824efb0f0c5b72828" + ], + [ + "sha256", + "ce62003e913cc4f373d5d41f8701b2dd0d3e9af0e5d3afaae31f768efbb38373" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test317", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test317", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 1833, + "subtype": "None", + "type": "Text", + "version": "" + }, + "fe38960b-b115-57c0-acdd-6346e34eedfb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ad6041e837d51a61c147ddea5670fef5" + ], + [ + "sha1", + "9d45f5d4c7d80300d0952bf77be35d63dbe37451" + ], + [ + "sha256", + "6e705ca521a58470a9d904f717da35c5be5900690205afac46f777bb2a8bd5b2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "rbtree.c", + "path": "FD13FULL.img/packages\\boot\\syslnx.zip/SOURCE/SYSLINUX/com32/sysdump/rbtree.c", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3753, + "subtype": "CCPP", + "type": "Text", + "version": "" + }, + "fe4300d5-b507-5c39-8d1c-a01caf9b7286": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "b90b7ed9c6eb717233d562d57bb1e1e2" + ], + [ + "sha1", + "b1966d854236750223c58c49226db482b4e7614c" + ], + [ + "sha256", + "f5c828c055393227b972c053813913b17230c7cd50957d71b4f338b2a401f921" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "test2074", + "path": "FD13FULL.img/packages\\net\\curl.zip/SOURCE/CURL/SOURCES.ZIP/tests/data/test2074", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 797, + "subtype": "None", + "type": "Text", + "version": "" + }, + "ff354840-8d88-5f42-be3f-fc9b8c6a139b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "UPX", + "hashes": [ + [ + "md5", + "780b595889421e9fdc95c81dca25d639" + ], + [ + "sha1", + "f2e333864d7a04235de2a7288882270b5bdce284" + ], + [ + "sha256", + "5d3c30fe066a95824b6f4a0268e8b3fcc667cacf7fae921fe14a3795ea563f53" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "642eaf6e-ebb7-4497-bacb-b6f36165b359" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "FIXSTUB.EXE", + "path": "FD13FULL.img/packages\\util\\pdtree.zip/SOURCE/PDTREE/SOURCES.ZIP/EXTRA/FIXSTUB.EXE", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 23552, + "subtype": "Exe", + "type": "PE", + "version": "0.60-4.x" + }, + "ff9556a6-25fe-5d3b-a9c6-9c762ccaee35": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7c1a5fc0496e444340887c56bd5541b7" + ], + [ + "sha1", + "6e1482e523a3447a2fa0febd1789ddfcd22100cf" + ], + [ + "sha256", + "35797ab2b3e72d0faed78deadabc39dddc617a420690210ab5adaf3a1e8e49a9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "WSAMPLEW.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINW/WSAMPLEW.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 3, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 45038, + "subtype": "Dll", + "type": "PE16", + "version": "" + }, + "ff966838-e686-5ba1-b3b6-2b3b520d4436": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "50e170ae4cafdf06f8b20ebbbc29e2c3" + ], + [ + "sha1", + "947174bbe1a51c68111d096cc95c12d98875cf8a" + ], + [ + "sha256", + "529b482c78187379adeafe10885893f7c5862ef8ee0678ed41d512abbe53016a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "267f3ad7-9995-4dca-9285-38d7c26d295d", + "4da709e1-77c2-40a9-b809-600f07b6d7d3", + "642eaf6e-ebb7-4497-bacb-b6f36165b359", + "a2233343-6a1c-43f9-bb1c-6739ab899616" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "tcpserv", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "Generic", + "vulnerabilities": null + }, + "name": "TCPSERV.EXE", + "path": "FD13FULL.img/packages\\devel\\watcomc.zip/DEVEL/WATCOMC/BINNT/TCPSERV.EXE", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 38400, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "ffe6eb65-ffaf-5945-8515-a58a33aabace": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "816ca0e58c8be5dcc144a2819db32f55" + ], + [ + "sha1", + "8a4c3413c7931dc546ffdf196c98867c9f3d6c50" + ], + [ + "sha256", + "2c8b9a06a959466c31853c198a65a5bcb17e741d66162c2e1df93f9d43d0556a" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "arm64-linux.elf-entry.S", + "path": "FD13FULL.img/packages\\devel\\upx.zip/SOURCE/UPX/SOURCES.ZIP/src/stub/src/arm64-linux.elf-entry.S", + "properties": [], + "quality": { + "effort": "low", + "priority": 4, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 10557, + "subtype": "Assembly", + "type": "Text", + "version": "" + } + }, + "cryptography": { + "algorithms": { + "002bdadc-8669-4df3-a4ba-89b46c649d5e": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 128, + "sources": [ + "pattern" + ], + "type": "secp128r2", + "violations": [] + }, + "00480928-311a-416c-8d93-ee1edf5c4625": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 384, + "sources": [ + "pattern" + ], + "type": "secp384r1", + "violations": [] + }, + "01c6e944-3efc-4761-98d8-d241a4762f41": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 384, + "sources": [ + "pattern" + ], + "type": "brainpoolP384r1", + "violations": [] + }, + "02bcc9e2-80ea-4c7e-b45d-ef7b0f7f1881": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 131, + "sources": [ + "pattern" + ], + "type": "sect131r2", + "violations": [] + }, + "078d71fd-fdf0-4462-8456-bb6ec1aca5b0": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 2, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde", + "3848f33d-4f37-54b7-8fb0-41df20102cda", + "55ce0143-bf25-5c64-8b17-32035971f816", + "5d7b2d98-bd6d-5eb3-929a-5a7ecc5575f6", + "65fc7c6d-e0d0-50ae-895d-ae3a2d5281b5", + "79514b15-f6ce-5dbf-97b5-5029cd50baf7", + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae", + "dee95658-0cb8-5e1d-9b33-8b57a3be738d", + "e2f91246-c9c2-5a5c-a902-a99cda146d5f" + ] + }, + "size": 256, + "sources": [ + "pattern" + ], + "type": "sha256", + "violations": [] + }, + "0a78437d-a93d-4fe6-88fe-cbbb628cf37d": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "sect239k1", + "violations": [] + }, + "0f8b87ab-ec52-4b63-a665-c446eac2e3f6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 409, + "sources": [ + "pattern" + ], + "type": "sect409r1", + "violations": [] + }, + "1072724f-92ab-4a86-92dc-779d83a65367": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 571, + "sources": [ + "pattern" + ], + "type": "sect571r1", + "violations": [] + }, + "1167eb4c-8f6d-4c1e-bcbe-b0a2fa74528a": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "certificate" + ], + "type": "ecdsa-with-SHA256", + "violations": [] + }, + "12ff3122-79db-4db7-8d72-a7a6396e31ea": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "certificate" + ], + "type": "sha512WithRSAEncryption", + "violations": [] + }, + "181ec17a-3c55-449f-97b5-38bb44084a1b": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 112, + "sources": [ + "pattern" + ], + "type": "secp112r2", + "violations": [] + }, + "18e416a1-60ed-46f0-afdf-35a8d6af63a0": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "c2tnb239v3", + "violations": [] + }, + "1eb3d700-35ce-404f-8b16-6ef6d074fbb9": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "certificate" + ], + "type": "ecdsa-with-SHA384", + "violations": [] + }, + "1f413b0e-4893-4436-8699-8d777dd2972f": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "brainpoolP160r1", + "violations": [] + }, + "1f6cf3e0-acd3-4b0e-a865-b68b57ae697f": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 283, + "sources": [ + "pattern" + ], + "type": "sect283k1", + "violations": [] + }, + "214e7b10-4091-403f-b447-80f25047fd12": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 113, + "sources": [ + "pattern" + ], + "type": "wap-wsg-idm-ecid-wtls1", + "violations": [] + }, + "27d5a271-6ea2-4fe1-a9a2-06b96b712903": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "secp256k1", + "violations": [] + }, + "28fa5b74-5047-4c33-b35d-041b915bddd9": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 176, + "sources": [ + "pattern" + ], + "type": "c2pnb176w1", + "violations": [] + }, + "2a9abf33-3d02-4071-8a7e-5a6569ab6d97": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "c2pnb163v1", + "violations": [] + }, + "30b770ed-3028-4b94-98f9-4cf206429a30": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 191, + "sources": [ + "pattern" + ], + "type": "c2tnb191v3", + "violations": [] + }, + "30dda326-d4fb-4da5-be37-7a470e77b0ff": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "secp160k1", + "violations": [] + }, + "3348a8ad-d18b-4dfb-bc56-8408b49e1937": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 191, + "sources": [ + "pattern" + ], + "type": "c2tnb191v1", + "violations": [] + }, + "36e48ef0-fcaf-4051-851b-f106f6374fe5": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 128, + "sources": [ + "pattern" + ], + "type": "ripemd128", + "violations": [] + }, + "3a68dee5-194b-4eb9-a2fe-1b370acb4a31": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 283, + "sources": [ + "pattern" + ], + "type": "sect283r1", + "violations": [] + }, + "3ae0a6dc-8989-4b8c-be75-894a5a2abec4": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 359, + "sources": [ + "pattern" + ], + "type": "c2tnb359v1", + "violations": [] + }, + "3cbb3859-7120-4afb-8715-957a601924b7": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "certificate" + ], + "type": "sha384WithRSAEncryption", + "violations": [] + }, + "42df5c93-606c-4d30-ac99-30bae36b5b4e": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "certificate" + ], + "type": "sha1WithRSAEncryption", + "violations": [] + }, + "44385200-bfa8-4793-ab92-598482e2bab3": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "haval", + "violations": [] + }, + "44982be1-97e6-4965-8ca6-f2fa1f18175b": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 521, + "sources": [ + "pattern" + ], + "type": "secp521r1", + "violations": [] + }, + "4523b90d-0533-4682-9253-2c8b065a10bd": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "brainpoolP256t1", + "violations": [] + }, + "483cb99c-e36f-4d00-aef3-266abe11b5ed": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 512, + "sources": [ + "pattern" + ], + "type": "whirlpool", + "violations": [] + }, + "492c1a0f-3eec-4c7e-9d3a-9ed1eaa3463f": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 571, + "sources": [ + "pattern" + ], + "type": "sect571k1", + "violations": [] + }, + "49c7b840-d28b-4b1f-9431-c4f0ac2c6a64": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md4", + "violations": [] + }, + "49f2b42f-9449-4075-9127-2a1b6e3af64b": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 233, + "sources": [ + "pattern" + ], + "type": "sect233k1", + "violations": [] + }, + "4a1692c6-d991-413a-b3cc-6adabbefbacb": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "prime239v2", + "violations": [] + }, + "4f53415a-b41b-4bef-a63a-69cb82be051a": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "prime239v3", + "violations": [] + }, + "50fb7639-1f52-4d03-a7d2-137e7ea1c4df": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 191, + "sources": [ + "pattern" + ], + "type": "c2tnb191v2", + "violations": [] + }, + "5d76f721-79a4-43b0-bb92-36016111c844": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 5, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 512, + "sources": [ + "pattern" + ], + "type": "sha512", + "violations": [] + }, + "6119dbd2-c670-49ba-8a5e-73d5238321d9": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 384, + "sources": [ + "pattern" + ], + "type": "brainpoolP384t1", + "violations": [] + }, + "674fd5ca-2f99-4443-9293-d173e5fd1aac": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": { + "component": [ + "0323632a-1b50-5e23-a86d-520ff8c006f8", + "14fd40b3-cab2-52ae-8344-839ef6ab8447", + "20b028e9-7597-5d4f-8059-5fd95a660569", + "262f2172-b284-5a46-ae60-b98b3b0103ea", + "2c672f3e-e325-5554-b483-763996d3497a", + "33ce70e6-9fef-5dee-aa9b-d6d68e7e250c", + "37c38e92-8827-5139-9178-0eb1a413c6ae", + "3bbbd236-85e2-5a7a-94f2-13b336c31cde", + "4b4ca1db-fc01-5b24-aa54-d2cfefa2801a", + "65337ddb-e794-5465-a2e4-a4b0bf817b52", + "7213433f-a16b-5f08-9680-0849ed73f523", + "8db4d475-8f0d-5581-b23c-5e89d937a161", + "b2fb4593-1dc9-5c00-8a19-22a822f7c688", + "c2777651-eb10-54b7-8190-be758385e16b", + "c7eb25c0-29a6-52d8-b9fe-678f99e81ce5", + "dac8cbca-bb31-56ba-9761-0dae35c01505", + "f6b75700-cb68-5478-a79b-8a9f03cb0df3", + "f746f6c5-5365-5da2-8dc1-d8e359efe345" + ] + }, + "size": 2048, + "sources": [ + "material" + ], + "type": "rsaEncryption", + "violations": [] + }, + "6adab6c5-e4ca-4656-bee1-4a4f2c4a44d9": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "brainpoolP192t1", + "violations": [] + }, + "6d689844-959d-4522-8e4d-d203d7406050": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 409, + "sources": [ + "pattern" + ], + "type": "sect409k1", + "violations": [] + }, + "703d14d8-8d82-4666-b973-bcb831940549": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "sect163r1", + "violations": [] + }, + "77c35a15-ff05-4d03-81f0-30caae47e9f3": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "secp160r1", + "violations": [] + }, + "78f11378-6ba4-4a76-b6ca-7e4fde468cee": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 431, + "sources": [ + "pattern" + ], + "type": "c2tnb431r1", + "violations": [] + }, + "79d24df8-7556-44ec-83fe-ca4a16ec3f91": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 224, + "sources": [ + "pattern" + ], + "type": "secp224k1", + "violations": [] + }, + "7c8aad0d-a799-4d66-b445-8802543cdb6f": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "prime192v1", + "violations": [] + }, + "7ca9e0ae-c085-4518-9a58-694c0268fdf3": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 113, + "sources": [ + "pattern" + ], + "type": "sect113r1", + "violations": [] + }, + "7de1eaf7-3a31-4dd1-9242-24e53dab0475": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "desx", + "violations": [] + }, + "8168c374-c747-412e-b859-30e6021a53e6": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "8067643b-ae41-558b-b21e-69cae13e4065" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md5", + "violations": [] + }, + "818853d4-d9a3-435c-9aa2-3675980cb6fd": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "Raw DES", + "violations": [] + }, + "818cf60e-482d-4473-bede-a26dbc65c3e6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "c2pnb163v3", + "violations": [] + }, + "842a0a51-be2a-4118-bdc2-1b0a5a946304": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 131, + "sources": [ + "pattern" + ], + "type": "sect131r1", + "violations": [] + }, + "86f58fcf-678a-4240-ac08-60a838d6ff34": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 304, + "sources": [ + "pattern" + ], + "type": "c2pnb304w1", + "violations": [] + }, + "87bf8c1b-1c47-4930-8d1c-c8f66a6a2117": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "brainpoolP256r1", + "violations": [] + }, + "88292017-28e0-46cc-8af2-03423677392d": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 233, + "sources": [ + "pattern" + ], + "type": "sect233r1", + "violations": [] + }, + "8eea3d56-5d3a-411e-96dd-f81750083f9e": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 128, + "sources": [ + "pattern" + ], + "type": "secp128r1", + "violations": [] + }, + "9d614e0f-9860-467c-8fb3-dd8c9297a344": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 512, + "sources": [ + "pattern" + ], + "type": "brainpoolP512t1", + "violations": [] + }, + "9f9416c0-329a-448b-bb7d-45105a5f44f6": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 224, + "sources": [ + "pattern" + ], + "type": "sha224", + "violations": [] + }, + "a1736d3c-dc96-45e7-bcb2-75f8211a40d7": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "sect163k1", + "violations": [] + }, + "a35d37e1-f8a4-41ef-aff7-ed450b0f8123": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "prime239v1", + "violations": [] + }, + "a7229924-2bbc-4f7a-911f-ccf3139a5da6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "brainpoolP192r1", + "violations": [] + }, + "a832fc87-ba17-4b5a-ab22-2e5b4ad36d98": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md2", + "violations": [] + }, + "ac4b61aa-5e3c-48d7-8db0-69cb2cedafc5": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "c2tnb239v2", + "violations": [] + }, + "add56ebf-1210-43d7-a15b-1bf0493e1a70": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 193, + "sources": [ + "pattern" + ], + "type": "sect193r1", + "violations": [] + }, + "adda6b2a-555c-402f-bac3-f0f3ebe73a31": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "blake2", + "violations": [] + }, + "af090c3e-1fa3-47bd-89d4-04bb2d1c8a3c": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "sect163r2", + "violations": [] + }, + "b630af9f-17bb-451c-9b08-e47be667ef44": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 272, + "sources": [ + "pattern" + ], + "type": "c2pnb272w1", + "violations": [] + }, + "badb4155-8668-448b-bdb0-e70d9c718ec6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "prime256v1", + "violations": [] + }, + "be6c19ff-e7f2-4d19-9473-31f9c6666b2a": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "secp160r2", + "violations": [] + }, + "c1a33cd0-a894-4f1a-9793-2677d01108b5": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 193, + "sources": [ + "pattern" + ], + "type": "sect193r2", + "violations": [] + }, + "c464649f-15cf-4672-8123-9cd4b40461f3": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 224, + "sources": [ + "pattern" + ], + "type": "brainpoolP224r1", + "violations": [] + }, + "c4c8f9b1-538f-4a6a-872e-c69b265485a3": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "seed", + "violations": [] + }, + "c7638736-2653-4637-a7a3-a21c2ade59ef": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "prime192v3", + "violations": [] + }, + "ca9d5217-3c34-4dff-8b4b-3ca0737fd59b": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 320, + "sources": [ + "pattern" + ], + "type": "brainpoolP320r1", + "violations": [] + }, + "cf404136-3b33-49e9-b785-2766f5007d29": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 512, + "sources": [ + "pattern" + ], + "type": "brainpoolP512r1", + "violations": [] + }, + "d0fe2650-67b1-4948-b62f-b26251ce0dd5": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "GOST 28147-89", + "violations": [] + }, + "d203f623-50ce-4343-80b1-aef15cc7ad40": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 113, + "sources": [ + "pattern" + ], + "type": "sect113r2", + "violations": [] + }, + "d7ca5426-1a18-4976-ba20-84af1a893e32": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 224, + "sources": [ + "pattern" + ], + "type": "secp224r1", + "violations": [] + }, + "db9bba0a-5d1d-41f1-acd8-debfdb3305a1": { + "functions": [ + "sign" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": { + "component": [ + "e58930d2-f1a9-5404-8557-c148d61b2607" + ] + }, + "size": 0, + "sources": [ + "certificate" + ], + "type": "sha256WithRSAEncryption", + "violations": [] + }, + "dd17e6de-e717-4d2b-958d-e44cef8e146e": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 112, + "sources": [ + "pattern" + ], + "type": "secp112r1", + "violations": [] + }, + "ddbde2fc-3792-46b1-b8f7-a606b59d0e50": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "brainpoolP160t1", + "violations": [] + }, + "dfac54de-caa4-48e5-bfeb-d0c0a55da165": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 239, + "sources": [ + "pattern" + ], + "type": "c2tnb239v1", + "violations": [] + }, + "e01251f5-b220-43a1-a030-3e2d2a3468e6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 320, + "sources": [ + "pattern" + ], + "type": "brainpoolP320t1", + "violations": [] + }, + "e0358840-ae88-4e27-8323-c1b9c2a16a1c": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "pattern" + ], + "type": "ripemd160", + "violations": [] + }, + "e330a00e-bad6-4b7c-8630-d9b8927fea8a": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 256, + "sources": [ + "pattern" + ], + "type": "blake256", + "violations": [] + }, + "e4bed13a-dbd5-4db1-8d19-16d7dd1301ac": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": { + "component": [ + "348dc476-7821-5424-bcac-ff917ec88960", + "c9be6d20-f6e2-53e8-917e-e3a5a8f326a8" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "des", + "violations": [] + }, + "e6426274-2882-4530-a6cd-9339d198dd51": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "cast5", + "violations": [] + }, + "eab9b8d7-a330-482c-ae9b-ff8939089ed8": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 163, + "sources": [ + "pattern" + ], + "type": "c2pnb163v2", + "violations": [] + }, + "eb49d325-b60d-482b-a16c-fdad96b087a2": { + "functions": [ + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "aes", + "violations": [] + }, + "eda2d860-7932-4116-8faa-db07549e8c6a": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 208, + "sources": [ + "pattern" + ], + "type": "c2pnb208w1", + "violations": [] + }, + "efcd5b08-e8de-4104-8164-64446f836f9b": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "secp192k1", + "violations": [] + }, + "f118727c-feb3-4b03-823f-56e4189c9578": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 368, + "sources": [ + "pattern" + ], + "type": "c2pnb368w1", + "violations": [] + }, + "f322d637-6180-4b54-836d-1f9ce46d5620": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": {}, + "size": 160, + "sources": [ + "behavior" + ], + "type": "sha1", + "violations": [] + }, + "f8efba11-1dc3-4d5f-a3dc-f1a60ae6c7d6": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 224, + "sources": [ + "pattern" + ], + "type": "brainpoolP224t1", + "violations": [] + }, + "fa90c6be-0fdd-4f1e-baa5-b2dfaa21abe7": { + "functions": [], + "mode": "unknown", + "pqc_level": 0, + "primitive": "pke", + "properties": [], + "references": {}, + "size": 192, + "sources": [ + "pattern" + ], + "type": "prime192v2", + "violations": [] + }, + "fbfdcd34-59b5-4c67-a09d-69b9087111a1": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "blowfish", + "violations": [] + }, + "fe672cf5-edbd-457a-813d-331fed82d448": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": {}, + "size": 0, + "sources": [ + "pattern" + ], + "type": "rc2", + "violations": [] + } + }, + "certificates": { + "02ed0eb28c14da45165c566791700d6451d7fb56f0b2ab1d3b8eb070e56edff5": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B7:63:E7:1A:DD:8D:E9:08:A6:55:83:A4:E0:6A:50:41:65:11:42:49" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2012 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - EC1" + ] + ], + "references": {}, + "serial_number": "a68b79290000000050d091f9", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2012 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - EC1" + ] + ], + "thumbprint": "02ed0eb28c14da45165c566791700d6451d7fb56f0b2ab1d3b8eb070e56edff5", + "type": "X.509", + "valid_from": "2012-12-18T15:25:36Z", + "valid_to": "2037-12-18T15:55:36Z", + "violations": [] + }, + "0376ab1d54c5f9803ce4b2e201a0ee7eef7b57b636e8a93c9b8d4860c96f5fa7": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9D:93:C6:53:8B:5E:CA:AF:3F:9F:1E:0F:E5:99:95:BC:24:F6:94:8F" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Commercial" + ] + ], + "references": {}, + "serial_number": "7777062726a9b17c", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Commercial" + ] + ], + "thumbprint": "0376ab1d54c5f9803ce4b2e201a0ee7eef7b57b636e8a93c9b8d4860c96f5fa7", + "type": "X.509", + "valid_from": "2010-01-29T14:06:06Z", + "valid_to": "2030-12-31T14:06:06Z", + "violations": [] + }, + "04048028bf1f2864d48f9ad4d83294366a828856553f3b14303f90147f5d40ef": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:1" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "65:CD:EB:AB:35:1E:00:3E:7E:D5:74:C0:1C:B4:73:47:0E:1A:64:2F" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://www.firmaprofesional.com/cps\n User Notice:\n Explicit Text: " + } + ], + "issuer": [ + [ + "countryName", + "ES" + ], + [ + "commonName", + "Autoridad de Certificacion Firmaprofesional CIF A62634068" + ] + ], + "references": {}, + "serial_number": "53ec3beefbb2485f", + "size": 0, + "subject": [ + [ + "countryName", + "ES" + ], + [ + "commonName", + "Autoridad de Certificacion Firmaprofesional CIF A62634068" + ] + ], + "thumbprint": "04048028bf1f2864d48f9ad4d83294366a828856553f3b14303f90147f5d40ef", + "type": "X.509", + "valid_from": "2009-05-20T08:38:15Z", + "valid_to": "2030-12-31T08:38:15Z", + "violations": [] + }, + "063e4afac491dfd332f3089b8542e94617d893d7fe944e10a7937ee29d9693c0": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:12" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "F9:24:AC:0F:B2:B5:F8:79:C0:FA:60:88:1B:C4:D9:4D:02:9E:17:19" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:F9:24:AC:0F:B2:B5:F8:79:C0:FA:60:88:1B:C4:D9:4D:02:9E:17:19\nDirName:/C=EU/L=Madrid (see current address at www.camerfirma.com\\/address)/serialNumber=A82743287/O=AC Camerfirma S.A./CN=Chambers of Commerce Root - 2008\nserial:A3:DA:42:7E:A4:B1:AE:DA" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://policy.camerfirma.com" + } + ], + "issuer": [ + [ + "countryName", + "EU" + ], + [ + "localityName", + "Madrid (see current address at www.camerfirma.com/address)" + ], + [ + "serialNumber", + "A82743287" + ], + [ + "organizationName", + "AC Camerfirma S.A." + ], + [ + "commonName", + "Chambers of Commerce Root - 2008" + ] + ], + "references": {}, + "serial_number": "a3da427ea4b1aeda", + "size": 0, + "subject": [ + [ + "countryName", + "EU" + ], + [ + "localityName", + "Madrid (see current address at www.camerfirma.com/address)" + ], + [ + "serialNumber", + "A82743287" + ], + [ + "organizationName", + "AC Camerfirma S.A." + ], + [ + "commonName", + "Chambers of Commerce Root - 2008" + ] + ], + "thumbprint": "063e4afac491dfd332f3089b8542e94617d893d7fe944e10a7937ee29d9693c0", + "type": "X.509", + "valid_from": "2008-08-01T12:29:50Z", + "valid_to": "2038-07-31T12:29:50Z", + "violations": [] + }, + "0687260331a72403d909f105e69bcf0d32e1bd2493ffc6d9206d11bcd6770739": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C4:A7:B1:A4:7B:2C:71:FA:DB:E1:4B:90:75:FF:C4:15:60:85:89:10" + } + ], + "issuer": [ + [ + "organizationName", + "Digital Signature Trust Co." + ], + [ + "commonName", + "DST Root CA X3" + ] + ], + "references": {}, + "serial_number": "44afb080d6a327ba893039862ef8406b", + "size": 0, + "subject": [ + [ + "organizationName", + "Digital Signature Trust Co." + ], + [ + "commonName", + "DST Root CA X3" + ] + ], + "thumbprint": "0687260331a72403d909f105e69bcf0d32e1bd2493ffc6d9206d11bcd6770739", + "type": "X.509", + "valid_from": "2000-09-30T21:12:19Z", + "valid_to": "2021-09-30T14:01:15Z", + "violations": [] + }, + "0753e940378c1bd5e3836e395daea5cb839e5046f1bd0eae1951cf10fec7c965": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D9:FE:21:40:6E:94:9E:BC:9B:3D:9C:7D:98:20:19:E5:8C:30:62:B2" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "D9:FE:21:40:6E:94:9E:BC:9B:3D:9C:7D:98:20:19:E5:8C:30:62:B2" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor RootCert CA-2" + ] + ], + "references": {}, + "serial_number": "25a1dfca33cb5902", + "size": 0, + "subject": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor RootCert CA-2" + ] + ], + "thumbprint": "0753e940378c1bd5e3836e395daea5cb839e5046f1bd0eae1951cf10fec7c965", + "type": "X.509", + "valid_from": "2016-02-04T12:32:23Z", + "valid_to": "2034-12-31T17:26:39Z", + "violations": [] + }, + "0a81ec5a929777f145904af38d5d509f66b5e2c58fcdb531058b0e17f3f0b41b": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "07:1F:D2:E7:9C:DA:C2:6E:A2:40:B4:B0:7A:50:10:50:74:C4:C8:BD" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Networking" + ] + ], + "references": {}, + "serial_number": "7c4f04391cd4992d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Networking" + ] + ], + "thumbprint": "0a81ec5a929777f145904af38d5d509f66b5e2c58fcdb531058b0e17f3f0b41b", + "type": "X.509", + "valid_from": "2010-01-29T14:08:24Z", + "valid_to": "2030-12-31T14:08:24Z", + "violations": [] + }, + "0c258a12a5674aef25f28ba7dcfaeceea348e541e6f5cc4ee63b71b361606ac3": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:12" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.chambersign.org/chambersroot.crl" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E3:94:F5:B1:4D:E9:DB:A1:29:5B:57:8B:4D:76:06:76:E1:D1:A2:8A" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "SSL CA, S/MIME CA, Object Signing CA" + }, + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:chambersroot@chambersign.org" + }, + { + "is_critical": false, + "name": "X509v3 Issuer Alternative Name", + "value": "email:chambersroot@chambersign.org" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.17326.10.3.1\n CPS: http://cps.chambersign.org/cps/chambersroot.html" + } + ], + "issuer": [ + [ + "countryName", + "EU" + ], + [ + "organizationName", + "AC Camerfirma SA CIF A82743287" + ], + [ + "organizationalUnitName", + "http://www.chambersign.org" + ], + [ + "commonName", + "Chambers of Commerce Root" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "EU" + ], + [ + "organizationName", + "AC Camerfirma SA CIF A82743287" + ], + [ + "organizationalUnitName", + "http://www.chambersign.org" + ], + [ + "commonName", + "Chambers of Commerce Root" + ] + ], + "thumbprint": "0c258a12a5674aef25f28ba7dcfaeceea348e541e6f5cc4ee63b71b361606ac3", + "type": "X.509", + "valid_from": "2003-09-30T16:13:43Z", + "valid_to": "2037-09-30T16:13:44Z", + "violations": [] + }, + "0c2cd63df7806fa399ede809116b575bf87989f06518f9808c860503178baf66": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "0B:58:E5:8B:C6:4C:15:37:A4:40:A9:30:A9:21:BE:47:36:5A:56:FF" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.comodoca.com/COMODOCertificationAuthority.crl" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO Certification Authority" + ] + ], + "references": {}, + "serial_number": "4e812d8a8265e00b02ee3e350246e53d", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO Certification Authority" + ] + ], + "thumbprint": "0c2cd63df7806fa399ede809116b575bf87989f06518f9808c860503178baf66", + "type": "X.509", + "valid_from": "2006-12-01T00:00:00Z", + "valid_to": "2029-12-31T23:59:59Z", + "violations": [] + }, + "0f993c8aef97baaf5687140ed59ad1821bb4afacf0aa9a58b5d57a338a3afbcb": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:10" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E3:73:2D:DF:CB:0E:28:0C:DE:DD:B3:A4:CA:79:B8:8E:BB:E8:30:89" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "SSL CA, S/MIME CA" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://www.certplus.com/CRL/class2.crl" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Class 2 Primary CA" + ] + ], + "references": {}, + "serial_number": "85bd4bf3d8dae369f694d75fc3a54423", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Class 2 Primary CA" + ] + ], + "thumbprint": "0f993c8aef97baaf5687140ed59ad1821bb4afacf0aa9a58b5d57a338a3afbcb", + "type": "X.509", + "valid_from": "1999-07-07T17:05:00Z", + "valid_to": "2019-07-06T23:59:59Z", + "violations": [] + }, + "125609aa301da0a249b97a8239cb6a34216f44dcac9f3954b14292f2e8c8608f": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FE:A1:E0:70:1E:2A:03:39:52:5A:42:BE:5C:91:85:7A:18:AA:4D:B5" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Inc" + ], + [ + "commonName", + "emSign Root CA - C1" + ] + ], + "references": {}, + "serial_number": "aecf00bac4cf32f843b2", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Inc" + ], + [ + "commonName", + "emSign Root CA - C1" + ] + ], + "thumbprint": "125609aa301da0a249b97a8239cb6a34216f44dcac9f3954b14292f2e8c8608f", + "type": "X.509", + "valid_from": "2018-02-18T18:30:00Z", + "valid_to": "2043-02-18T18:30:00Z", + "violations": [] + }, + "136335439334a7698016a0d324de72284e079d7b5220bb8fbd747816eebebaca": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:12" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B9:09:CA:9C:1E:DB:D3:6C:3A:6B:AE:ED:54:F1:5B:93:06:35:2E:5E" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:B9:09:CA:9C:1E:DB:D3:6C:3A:6B:AE:ED:54:F1:5B:93:06:35:2E:5E\nDirName:/C=EU/L=Madrid (see current address at www.camerfirma.com\\/address)/serialNumber=A82743287/O=AC Camerfirma S.A./CN=Global Chambersign Root - 2008\nserial:C9:CD:D3:E9:D5:7D:23:CE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://policy.camerfirma.com" + } + ], + "issuer": [ + [ + "countryName", + "EU" + ], + [ + "localityName", + "Madrid (see current address at www.camerfirma.com/address)" + ], + [ + "serialNumber", + "A82743287" + ], + [ + "organizationName", + "AC Camerfirma S.A." + ], + [ + "commonName", + "Global Chambersign Root - 2008" + ] + ], + "references": {}, + "serial_number": "c9cdd3e9d57d23ce", + "size": 0, + "subject": [ + [ + "countryName", + "EU" + ], + [ + "localityName", + "Madrid (see current address at www.camerfirma.com/address)" + ], + [ + "serialNumber", + "A82743287" + ], + [ + "organizationName", + "AC Camerfirma S.A." + ], + [ + "commonName", + "Global Chambersign Root - 2008" + ] + ], + "thumbprint": "136335439334a7698016a0d324de72284e079d7b5220bb8fbd747816eebebaca", + "type": "X.509", + "valid_from": "2008-08-01T12:31:40Z", + "valid_to": "2038-07-31T12:31:40Z", + "violations": [] + }, + "1465fa205397b876faa6f0a9958e5590e40fcc7faa4fb7c2c8677521fb5fb658": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "BF:5F:B7:D1:CE:DD:1F:86:F4:5B:55:AC:DC:D7:10:C2:0E:A9:88:E7" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:BF:5F:B7:D1:CE:DD:1F:86:F4:5B:55:AC:DC:D7:10:C2:0E:A9:88:E7\nDirName:/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority\nserial:00" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "organizationalUnitName", + "Starfield Class 2 Certification Authority" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "organizationalUnitName", + "Starfield Class 2 Certification Authority" + ] + ], + "thumbprint": "1465fa205397b876faa6f0a9958e5590e40fcc7faa4fb7c2c8677521fb5fb658", + "type": "X.509", + "valid_from": "2004-06-29T17:39:16Z", + "valid_to": "2034-06-29T17:39:16Z", + "violations": [] + }, + "152a402bfcdf2cd548054d2275b39c7fca3ec0978078b0f0ea76e561a6c7433e": { + "algorithm": "sha512WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A8:C1:C0:9B:91:A8:43:15:7C:5D:06:27:B4:2A:51:D8:97:0B:81:B1" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "A8:C1:C0:9B:91:A8:43:15:7C:5D:06:27:B4:2A:51:D8:97:0B:81:B1" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Certplus Root CA G1" + ] + ], + "references": {}, + "serial_number": "11205583e42d3e5456852d8337b72cdc4611", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Certplus Root CA G1" + ] + ], + "thumbprint": "152a402bfcdf2cd548054d2275b39c7fca3ec0978078b0f0ea76e561a6c7433e", + "type": "X.509", + "valid_from": "2014-05-26T00:00:00Z", + "valid_to": "2038-01-15T00:00:00Z", + "violations": [] + }, + "15d5b8774619ea7d54ce1ca6d0b0c403e037a917f131e8a04e1e6b7a71babce5": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C1:F1:26:BA:A0:2D:AE:85:81:CF:D3:F1:2A:12:BD:B8:0A:67:FD:BC" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R3" + ] + ], + "references": {}, + "serial_number": "6e47a9c76ca9732440890f0355dd8d1d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R3" + ] + ], + "thumbprint": "15d5b8774619ea7d54ce1ca6d0b0c403e037a917f131e8a04e1e6b7a71babce5", + "type": "X.509", + "valid_from": "2016-06-22T00:00:00Z", + "valid_to": "2036-06-22T00:00:00Z", + "violations": [] + }, + "15f0ba00a3ac7af3ac884c072b1011a077bd77c097f40164b2f8598abd83860c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "21:30:C9:FB:00:D7:4E:98:DA:87:AA:2A:D0:A7:2E:B1:40:31:A7:4C" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.netsolssl.com/NetworkSolutionsCertificateAuthority.crl" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Network Solutions L.L.C." + ], + [ + "commonName", + "Network Solutions Certificate Authority" + ] + ], + "references": {}, + "serial_number": "57cb336fc25c16e6471617e3903168e0", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Network Solutions L.L.C." + ], + [ + "commonName", + "Network Solutions Certificate Authority" + ] + ], + "thumbprint": "15f0ba00a3ac7af3ac884c072b1011a077bd77c097f40164b2f8598abd83860c", + "type": "X.509", + "valid_from": "2006-12-01T00:00:00Z", + "valid_to": "2029-12-31T23:59:59Z", + "violations": [] + }, + "16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E5:9D:59:30:82:47:58:CC:AC:FA:08:54:36:86:7B:3A:B5:04:4D:F0" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:3" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "IE" + ], + [ + "organizationName", + "Baltimore" + ], + [ + "organizationalUnitName", + "CyberTrust" + ], + [ + "commonName", + "Baltimore CyberTrust Root" + ] + ], + "references": {}, + "serial_number": "020000b9", + "size": 0, + "subject": [ + [ + "countryName", + "IE" + ], + [ + "organizationName", + "Baltimore" + ], + [ + "organizationalUnitName", + "CyberTrust" + ], + [ + "commonName", + "Baltimore CyberTrust Root" + ] + ], + "thumbprint": "16af57a9f676b0ab126095aa5ebadef22ab31119d644ac95cd4b93dbf3f26aeb", + "type": "X.509", + "valid_from": "2000-05-12T18:46:00Z", + "valid_to": "2025-05-12T23:59:00Z", + "violations": [] + }, + "1793927a0614549789adce2f8f34f7f0b66d0f3ae3a3b84d21ec15dbba4fadc7": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "75:71:A7:19:48:19:BC:9D:9D:EA:41:47:DF:94:C4:48:77:99:D3:79" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO ECC Certification Authority" + ] + ], + "references": {}, + "serial_number": "1f47afaa62007050544c019e9b63992a", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO ECC Certification Authority" + ] + ], + "thumbprint": "1793927a0614549789adce2f8f34f7f0b66d0f3ae3a3b84d21ec15dbba4fadc7", + "type": "X.509", + "valid_from": "2008-03-06T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "179fbc148a3dd00fd24ea13458cc43bfa7f59c8182d783a513f6ebec100c8924": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "3D:E6:29:48:9B:EA:07:CA:21:44:4A:26:DE:6E:DE:D2:83:D0:9F:59" + } + ], + "issuer": [ + [ + "organizationalUnitName", + "GlobalSign ECC Root CA - R5" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "references": {}, + "serial_number": "605949e0262ebb55f90a778a71f94ad86c", + "size": 0, + "subject": [ + [ + "organizationalUnitName", + "GlobalSign ECC Root CA - R5" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "thumbprint": "179fbc148a3dd00fd24ea13458cc43bfa7f59c8182d783a513f6ebec100c8924", + "type": "X.509", + "valid_from": "2012-11-13T00:00:00Z", + "valid_to": "2038-01-19T03:14:07Z", + "violations": [] + }, + "18ce6cfe7bf14e60b2e347b8dfe868cb31d02ebb3ada271569f50343b46db3a4": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "AB:B6:DB:D7:06:9E:37:AC:30:86:07:91:70:C7:9C:C4:19:B1:78:C0" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 3" + ] + ], + "references": {}, + "serial_number": "066c9fd5749736663f3b0b9ad9e89e7603f24a", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 3" + ] + ], + "thumbprint": "18ce6cfe7bf14e60b2e347b8dfe868cb31d02ebb3ada271569f50343b46db3a4", + "type": "X.509", + "valid_from": "2015-05-26T00:00:00Z", + "valid_to": "2040-05-26T00:00:00Z", + "violations": [] + }, + "18f1fc7f205df8adddeb7fe007dd57e3af375a9c4d8d73546bf4f1fed1e18d35": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.8024.0.3\n User Notice:\n Explicit Text: Any use of this Certificate constitutes acceptance of the QuoVadis Root CA 3 Certificate Policy / Certification Practice Statement.\n CPS: http://www.quovadisglobal.com/cps" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "F2:C0:13:E0:82:43:3E:FB:EE:2F:67:32:96:35:5C:DB:B8:CB:02:D0" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:F2:C0:13:E0:82:43:3E:FB:EE:2F:67:32:96:35:5C:DB:B8:CB:02:D0\nDirName:/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 3\nserial:05:C6" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 3" + ] + ], + "references": {}, + "serial_number": "05c6", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 3" + ] + ], + "thumbprint": "18f1fc7f205df8adddeb7fe007dd57e3af375a9c4d8d73546bf4f1fed1e18d35", + "type": "X.509", + "valid_from": "2006-11-24T19:11:23Z", + "valid_to": "2031-11-24T19:06:44Z", + "violations": [] + }, + "1ba5b2aa8c65401a82960118f80bec4f62304d83cec4713a19c39c011ea46db4": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B0:0C:F0:4C:30:F4:05:58:02:48:FD:33:E5:52:AF:4B:84:E3:66:52" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 2" + ] + ], + "references": {}, + "serial_number": "066c9fd29635869f0a0fe58678f85b26bb8a37", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 2" + ] + ], + "thumbprint": "1ba5b2aa8c65401a82960118f80bec4f62304d83cec4713a19c39c011ea46db4", + "type": "X.509", + "valid_from": "2015-05-26T00:00:00Z", + "valid_to": "2040-05-26T00:00:00Z", + "violations": [] + }, + "22a2c1f7bded704cc1e701b5f408c310880fe956b5de2a4a44f99c873a25a7c8": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "5B:CA:5E:E5:DE:D2:81:AA:CD:A8:2D:64:51:B6:D9:72:9B:97:E6:4F" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "5B:CA:5E:E5:DE:D2:81:AA:CD:A8:2D:64:51:B6:D9:72:9B:97:E6:4F" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com EV Root Certification Authority ECC" + ] + ], + "references": {}, + "serial_number": "2c299c5b16ed0595", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com EV Root Certification Authority ECC" + ] + ], + "thumbprint": "22a2c1f7bded704cc1e701b5f408c310880fe956b5de2a4a44f99c873a25a7c8", + "type": "X.509", + "valid_from": "2016-02-12T18:15:23Z", + "valid_to": "2041-02-12T18:15:23Z", + "violations": [] + }, + "2399561127a57125de8cefea610ddf2fa078b5c8067f4e828290bfb860e84b3c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "1.3.6.1.5.5.7.1.12", + "value": "0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B6:77:FA:69:48:47:9F:53:12:D5:C2:EA:07:32:76:07:D1:97:07:19" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2008 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Universal Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "401ac46421b31321030ebbe4121ac51d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2008 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Universal Root Certification Authority" + ] + ], + "thumbprint": "2399561127a57125de8cefea610ddf2fa078b5c8067f4e828290bfb860e84b3c", + "type": "X.509", + "valid_from": "2008-04-02T00:00:00Z", + "valid_to": "2037-12-01T23:59:59Z", + "violations": [] + }, + "2530cc8e98321502bad96f9b1fba1b099e2d299e0f4548bb914f363bc0d4531f": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:info@izenpe.com, DirName:/O=IZENPE S.A. - CIF A01337260-RMerc.Vitoria-Gasteiz T1055 F62 S8/street=Avda del Mediterraneo Etorbidea 14 - 01010 Vitoria-Gasteiz" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "1D:1C:65:0E:A8:F2:25:7B:B4:91:CF:E4:B1:B1:E6:BD:55:74:6C:05" + } + ], + "issuer": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "IZENPE S.A." + ], + [ + "commonName", + "Izenpe.com" + ] + ], + "references": {}, + "serial_number": "b0b75a16485fbfe1cbf58bd719e67d", + "size": 0, + "subject": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "IZENPE S.A." + ], + [ + "commonName", + "Izenpe.com" + ] + ], + "thumbprint": "2530cc8e98321502bad96f9b1fba1b099e2d299e0f4548bb914f363bc0d4531f", + "type": "X.509", + "valid_from": "2007-12-13T13:08:28Z", + "valid_to": "2037-12-13T08:27:25Z", + "violations": [] + }, + "27995829fe6a7515c1bfe848f9c4761db16c225929257bf40d0894f29ea8baf2": { + "algorithm": "sha512WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "6A:39:FA:42:22:F7:E6:89:00:4D:5E:7D:33:83:CB:B8:6E:77:86:AF" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "6A:39:FA:42:22:F7:E6:89:00:4D:5E:7D:33:83:CB:B8:6E:77:86:AF" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G2" + ] + ], + "references": {}, + "serial_number": "1120a1691bbfbdb9bd52968f23e848bf2611", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G2" + ] + ], + "thumbprint": "27995829fe6a7515c1bfe848f9c4761db16c225929257bf40d0894f29ea8baf2", + "type": "X.509", + "valid_from": "2014-05-26T00:00:00Z", + "valid_to": "2038-01-15T00:00:00Z", + "violations": [] + }, + "2a575471e31340bc21581cbd2cf13e158463203ece94bcf9d3cc196bf09a5472": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E4:AF:2B:26:71:1A:2B:48:27:85:2F:52:66:2C:EF:F0:89:13:71:3E" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R1" + ] + ], + "references": {}, + "serial_number": "6e47a9c54b470c0dec33d089b91cf4e1", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R1" + ] + ], + "thumbprint": "2a575471e31340bc21581cbd2cf13e158463203ece94bcf9d3cc196bf09a5472", + "type": "X.509", + "valid_from": "2016-06-22T00:00:00Z", + "valid_to": "2036-06-22T00:00:00Z", + "violations": [] + }, + "2a99f5bc1174b73cbb1d620884e01c34e51ccb3978da125f0e33268883bf4158": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "EF:91:4C:F5:A5:C3:30:E8:2F:08:EA:D3:71:22:A4:92:68:78:74:D9" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "EF:91:4C:F5:A5:C3:30:E8:2F:08:EA:D3:71:22:A4:92:68:78:74:D9" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certinomis" + ], + [ + "organizationalUnitName", + "0002 433998903" + ], + [ + "commonName", + "Certinomis - Root CA" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certinomis" + ], + [ + "organizationalUnitName", + "0002 433998903" + ], + [ + "commonName", + "Certinomis - Root CA" + ] + ], + "thumbprint": "2a99f5bc1174b73cbb1d620884e01c34e51ccb3978da125f0e33268883bf4158", + "type": "X.509", + "valid_from": "2013-10-21T09:17:18Z", + "valid_to": "2033-10-21T09:17:18Z", + "violations": [] + }, + "2cabeafe37d06ca22aba7391c0033d25982952c453647349763a3ab5ad6ccf69": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "AE:6C:05:A3:93:13:E2:A2:E7:E2:D7:1C:D6:C7:F0:7F:C8:67:53:A0" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "AE:6C:05:A3:93:13:E2:A2:E7:E2:D7:1C:D6:C7:F0:7F:C8:67:53:A0" + } + ], + "issuer": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R6" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "references": {}, + "serial_number": "45e6bb038333c3856548e6ff4551", + "size": 0, + "subject": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R6" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "thumbprint": "2cabeafe37d06ca22aba7391c0033d25982952c453647349763a3ab5ad6ccf69", + "type": "X.509", + "valid_from": "2014-12-10T00:00:00Z", + "valid_to": "2034-12-10T00:00:00Z", + "violations": [] + }, + "2ce1cb0bf9d2f9e102993fbe215152c3b2dd0cabde1c68e5319b839154dbb7f5": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "7C:0C:32:1F:A7:D9:30:7F:C4:7D:68:A3:62:A8:A1:CE:AB:07:5B:27" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "commonName", + "Starfield Root Certificate Authority - G2" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "commonName", + "Starfield Root Certificate Authority - G2" + ] + ], + "thumbprint": "2ce1cb0bf9d2f9e102993fbe215152c3b2dd0cabde1c68e5319b839154dbb7f5", + "type": "X.509", + "valid_from": "2009-09-01T00:00:00Z", + "valid_to": "2037-12-31T23:59:59Z", + "violations": [] + }, + "2e44102ab58cb85419451c8e19d9acf3662cafbc614b6a53960a30f7d0e2eb41": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "06:9A:9B:1F:53:7D:F1:F5:A4:C8:D3:86:3E:A1:73:59:B4:F7:44:21" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "06:9A:9B:1F:53:7D:F1:F5:A4:C8:D3:86:3E:A1:73:59:B4:F7:44:21" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "TN" + ], + [ + "organizationName", + "Agence Nationale de Certification Electronique" + ], + [ + "commonName", + "TunTrust Root CA" + ] + ], + "references": {}, + "serial_number": "1302d5e2404c92468616675db4bbbbb26b3efc13", + "size": 0, + "subject": [ + [ + "countryName", + "TN" + ], + [ + "organizationName", + "Agence Nationale de Certification Electronique" + ], + [ + "commonName", + "TunTrust Root CA" + ] + ], + "thumbprint": "2e44102ab58cb85419451c8e19d9acf3662cafbc614b6a53960a30f7d0e2eb41", + "type": "X.509", + "valid_from": "2019-04-26T08:57:56Z", + "valid_to": "2044-04-26T08:57:56Z", + "violations": [] + }, + "2e7bf16cc22485a7bbe2aa8696750761b0ae39be3b2fe9d0cc6d4ef73491425c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "F9:60:BB:D4:E3:D5:34:F6:B8:F5:06:80:25:A7:73:DB:46:69:A8:9E" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "F9:60:BB:D4:E3:D5:34:F6:B8:F5:06:80:25:A7:73:DB:46:69:A8:9E" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com EV Root Certification Authority RSA R2" + ] + ], + "references": {}, + "serial_number": "56b629cd34bc78f6", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com EV Root Certification Authority RSA R2" + ] + ], + "thumbprint": "2e7bf16cc22485a7bbe2aa8696750761b0ae39be3b2fe9d0cc6d4ef73491425c", + "type": "X.509", + "valid_from": "2017-05-31T18:14:37Z", + "valid_to": "2042-05-30T18:14:37Z", + "violations": [] + }, + "30b56d8596668971791fc6d1f649cf030ae036fa0bc6f37062cdeae726412136": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "DNS:localhost" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "SSL Server" + }, + { + "is_critical": false, + "name": "Netscape Comment", + "value": "CURL stunnel server test certificate" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "5D:A5:DB:5A:C8:6D:31:A6:B0:E3:4D:47:50:AA:87:A9:B2:DE:9F:37" + }, + { + "is_critical": false, + "name": "Subject Information Access", + "value": "ad dvcs - URI:https://localhost:8433/509" + }, + { + "is_critical": false, + "name": "Authority Information Access", + "value": "ad dvcs - URI:https://localhost:8433/509" + } + ], + "issuer": [ + [ + "countryName", + "SE" + ], + [ + "stateOrProvinceName", + "Solna" + ], + [ + "localityName", + "Mooo" + ], + [ + "organizationName", + "Haxx" + ], + [ + "organizationalUnitName", + "Coolx" + ], + [ + "commonName", + "storbror" + ], + [ + "commonName", + "localhost" + ] + ], + "references": { + "component": [ + "e58930d2-f1a9-5404-8557-c148d61b2607" + ] + }, + "serial_number": "f7e2c88ce3d80a67", + "size": 0, + "subject": [ + [ + "countryName", + "SE" + ], + [ + "stateOrProvinceName", + "Solna" + ], + [ + "localityName", + "Mooo" + ], + [ + "organizationName", + "Haxx" + ], + [ + "organizationalUnitName", + "Coolx" + ], + [ + "commonName", + "storbror" + ], + [ + "commonName", + "localhost" + ] + ], + "thumbprint": "30b56d8596668971791fc6d1f649cf030ae036fa0bc6f37062cdeae726412136", + "type": "X.509", + "valid_from": "2018-08-31T23:39:18Z", + "valid_to": "2028-08-28T23:39:18Z", + "violations": [] + }, + "30d0895a9a448a262091635522d1f52010b5867acae12c78ef958fd4f4389f2f": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E3:71:E0:9E:D8:A7:42:D9:DB:71:91:6B:94:93:EB:C3:A3:D1:14:A3" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "IdenTrust" + ], + [ + "commonName", + "IdenTrust Public Sector Root CA 1" + ] + ], + "references": {}, + "serial_number": "0a0142800000014523cf467c00000002", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "IdenTrust" + ], + [ + "commonName", + "IdenTrust Public Sector Root CA 1" + ] + ], + "thumbprint": "30d0895a9a448a262091635522d1f52010b5867acae12c78ef958fd4f4389f2f", + "type": "X.509", + "valid_from": "2014-01-16T17:53:32Z", + "valid_to": "2034-01-16T17:53:32Z", + "violations": [] + }, + "31ad6648f8104138c738f39ea4320133393e3a18cc02296ef97c2ac9ef6731d0": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B3:DB:48:A4:F9:A1:C5:D8:AE:36:41:CC:11:63:69:62:29:BC:4B:C6" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root G3" + ] + ], + "references": {}, + "serial_number": "055556bcf25ea43535c3a40fd5ab4572", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root G3" + ] + ], + "thumbprint": "31ad6648f8104138c738f39ea4320133393e3a18cc02296ef97c2ac9ef6731d0", + "type": "X.509", + "valid_from": "2013-08-01T12:00:00Z", + "valid_to": "2038-01-15T12:00:00Z", + "violations": [] + }, + "3417bb06cc6007da1b961c920b8ab4ce3fad820e4aa30b9acbc4a74ebdcebc65": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "82:D1:85:73:30:E7:35:04:D3:8E:02:92:FB:E5:A4:D1:C4:21:E8:CD" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "82:D1:85:73:30:E7:35:04:D3:8E:02:92:FB:E5:A4:D1:C4:21:E8:CD" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com Root Certification Authority ECC" + ] + ], + "references": {}, + "serial_number": "75e6dfcbc1685ba8", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com Root Certification Authority ECC" + ] + ], + "thumbprint": "3417bb06cc6007da1b961c920b8ab4ce3fad820e4aa30b9acbc4a74ebdcebc65", + "type": "X.509", + "valid_from": "2016-02-12T18:14:03Z", + "valid_to": "2041-02-12T18:14:03Z", + "violations": [] + }, + "358df39d764af9e1b766e9c972df352ee15cfac227af6ad1d70e8e4a6edcba02": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C8:CB:99:72:70:52:0C:F8:E6:BE:B2:04:57:29:2A:CF:42:10:ED:35" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Microsoft Corporation" + ], + [ + "commonName", + "Microsoft ECC Root Certificate Authority 2017" + ] + ], + "references": {}, + "serial_number": "66f23daf87de8bb14aea0c573101c2ec", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Microsoft Corporation" + ], + [ + "commonName", + "Microsoft ECC Root Certificate Authority 2017" + ] + ], + "thumbprint": "358df39d764af9e1b766e9c972df352ee15cfac227af6ad1d70e8e4a6edcba02", + "type": "X.509", + "valid_from": "2019-12-18T23:06:45Z", + "valid_to": "2042-07-18T23:16:04Z", + "violations": [] + }, + "363f3c849eab03b0a2a0f636d7b86d04d3ac7fcfe26a0a9121ab9795f6e176df": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "65:C0:8D:25:F5:0C:BA:97:77:90:3F:9E:2E:E0:5A:F5:CE:D5:E1:E4" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 1 Public Primary Certification Authority - G4" + ] + ], + "references": {}, + "serial_number": "216e33a5cbd388a46f2907b4273cc4d8", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 1 Public Primary Certification Authority - G4" + ] + ], + "thumbprint": "363f3c849eab03b0a2a0f636d7b86d04d3ac7fcfe26a0a9121ab9795f6e176df", + "type": "X.509", + "valid_from": "2011-10-05T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "37d51006c512eaab626421f1ec8c92013fc5f82ae98ee533eb4619b8deb4d06c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "2C:D5:50:41:97:15:8B:F0:8F:36:61:5B:4A:FB:6B:D9:99:C9:33:92" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Primary Certification Authority" + ] + ], + "references": {}, + "serial_number": "18acb56afd69b6153a636cafdafac4a1", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Primary Certification Authority" + ] + ], + "thumbprint": "37d51006c512eaab626421f1ec8c92013fc5f82ae98ee533eb4619b8deb4d06c", + "type": "X.509", + "valid_from": "2006-11-27T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "3b222e566711e992300dc0b15ab9473dafdef8c84d0cef7d3317b4c1821d1436": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "50:AF:CC:07:87:15:47:6F:38:C5:B4:65:D1:DE:95:AA:E9:DF:9C:CC" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "50:AF:CC:07:87:15:47:6F:38:C5:B4:65:D1:DE:95:AA:E9:DF:9C:CC" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 2.16.756.1.89.1.1.1.1\n CPS: http://repository.swisssign.com/" + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Platinum CA - G2" + ] + ], + "references": {}, + "serial_number": "4eb200670c035d4f", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Platinum CA - G2" + ] + ], + "thumbprint": "3b222e566711e992300dc0b15ab9473dafdef8c84d0cef7d3317b4c1821d1436", + "type": "X.509", + "valid_from": "2006-10-25T08:36:00Z", + "valid_to": "2036-10-25T08:36:00Z", + "violations": [] + }, + "3c4fb0b95ab8b30032f432b86f535fe172c185d0fd39865837cf36187fa6f428": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "54:AD:FA:C7:92:57:AE:CA:35:9C:2E:12:FB:E4:BA:5D:20:DC:94:57" + } + ], + "issuer": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden Root CA - G3" + ] + ], + "references": {}, + "serial_number": "98a239", + "size": 0, + "subject": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden Root CA - G3" + ] + ], + "thumbprint": "3c4fb0b95ab8b30032f432b86f535fe172c185d0fd39865837cf36187fa6f428", + "type": "X.509", + "valid_from": "2013-11-14T11:28:42Z", + "valid_to": "2028-11-13T23:00:00Z", + "violations": [] + }, + "3c5f81fea5fab82c64bfa2eaecafcde8e077fc8620a7cae537163df36edbf378": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "CB:0F:C6:DF:42:43:CC:3D:CB:B5:48:23:A1:1A:7A:A6:2A:BB:34:68" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "CB:0F:C6:DF:42:43:CC:3D:CB:B5:48:23:A1:1A:7A:A6:2A:BB:34:68" + }, + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:info@e-szigno.hu" + } + ], + "issuer": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "Microsec Ltd." + ], + [ + "commonName", + "Microsec e-Szigno Root CA 2009" + ], + [ + "emailAddress", + "info@e-szigno.hu" + ] + ], + "references": {}, + "serial_number": "c27e43044e473f19", + "size": 0, + "subject": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "Microsec Ltd." + ], + [ + "commonName", + "Microsec e-Szigno Root CA 2009" + ], + [ + "emailAddress", + "info@e-szigno.hu" + ] + ], + "thumbprint": "3c5f81fea5fab82c64bfa2eaecafcde8e077fc8620a7cae537163df36edbf378", + "type": "X.509", + "valid_from": "2009-06-16T11:30:18Z", + "valid_to": "2029-12-30T11:30:18Z", + "violations": [] + }, + "3e84ba4342908516e77573c0992f0979ca084e4685681ff195ccba8a229b8a76": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "12:F2:5A:3E:EA:56:1C:BF:CD:06:AC:F1:F1:25:C9:A9:4B:D4:14:99" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Client Authentication, TLS Web Server Authentication, Code Signing, E-mail Protection, Time Stamping, OCSP Signing" + } + ], + "issuer": [ + [ + "countryName", + "EE" + ], + [ + "organizationName", + "AS Sertifitseerimiskeskus" + ], + [ + "commonName", + "EE Certification Centre Root CA" + ], + [ + "emailAddress", + "pki@sk.ee" + ] + ], + "references": {}, + "serial_number": "5480f9a073ed3f004cca89d8e371e64a", + "size": 0, + "subject": [ + [ + "countryName", + "EE" + ], + [ + "organizationName", + "AS Sertifitseerimiskeskus" + ], + [ + "commonName", + "EE Certification Centre Root CA" + ], + [ + "emailAddress", + "pki@sk.ee" + ] + ], + "thumbprint": "3e84ba4342908516e77573c0992f0979ca084e4685681ff195ccba8a229b8a76", + "type": "X.509", + "valid_from": "2010-10-30T10:10:30Z", + "valid_to": "2030-12-17T23:59:59Z", + "violations": [] + }, + "3e9099b5015e8f486c00bcea9d111ee721faba355a89bcf1df69561e3dc6325c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "45:EB:A2:AF:F4:92:CB:82:31:2D:51:8B:A7:A7:21:9D:F3:6D:C8:0F" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root CA" + ] + ], + "references": {}, + "serial_number": "0ce7e0e517d846fe8fe560fc1bf03039", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root CA" + ] + ], + "thumbprint": "3e9099b5015e8f486c00bcea9d111ee721faba355a89bcf1df69561e3dc6325c", + "type": "X.509", + "valid_from": "2006-11-10T00:00:00Z", + "valid_to": "2031-11-10T00:00:00Z", + "violations": [] + }, + "3f99cc474acfce4dfed58794665e478d1547739f2e780f1bb4ca9b133097d401": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C9:1B:53:81:12:FE:04:D5:16:D1:AA:BC:9A:6F:B7:A0:95:19:6E:CA" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions CA" + ], + [ + "commonName", + "HARICA TLS ECC Root CA 2021" + ] + ], + "references": {}, + "serial_number": "67749d8d77d83b6adb22f4ff59e2bfce", + "size": 0, + "subject": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions CA" + ], + [ + "commonName", + "HARICA TLS ECC Root CA 2021" + ] + ], + "thumbprint": "3f99cc474acfce4dfed58794665e478d1547739f2e780f1bb4ca9b133097d401", + "type": "X.509", + "valid_from": "2021-02-19T11:01:10Z", + "valid_to": "2045-02-13T11:01:09Z", + "violations": [] + }, + "40f6af0346a99aa1cd1d555a4e9cce62c7f9634603ee406615833dc8c8d00367": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FB:EF:0D:86:9E:B0:E3:DD:A9:B9:F1:21:17:7F:3E:FC:F0:77:2B:1A" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "IN" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Technologies Limited" + ], + [ + "commonName", + "emSign Root CA - G1" + ] + ], + "references": {}, + "serial_number": "31f5e4620c6c58edd6d8", + "size": 0, + "subject": [ + [ + "countryName", + "IN" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Technologies Limited" + ], + [ + "commonName", + "emSign Root CA - G1" + ] + ], + "thumbprint": "40f6af0346a99aa1cd1d555a4e9cce62c7f9634603ee406615833dc8c8d00367", + "type": "X.509", + "valid_from": "2018-02-18T18:30:00Z", + "valid_to": "2043-02-18T18:30:00Z", + "violations": [] + }, + "41c923866ab4cad6b7ad578081582e020797a6cbdf4fff78ce8396b38937d7f5": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B3:03:7E:AE:36:BC:B0:79:D1:DC:94:26:B6:11:BE:21:B2:69:86:94" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "Copyright (c) 2005" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GA CA" + ] + ], + "references": {}, + "serial_number": "413d72c7f46b1f81437df1d22854df9a", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "Copyright (c) 2005" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GA CA" + ] + ], + "thumbprint": "41c923866ab4cad6b7ad578081582e020797a6cbdf4fff78ce8396b38937d7f5", + "type": "X.509", + "valid_from": "2005-12-11T16:03:44Z", + "valid_to": "2037-12-11T16:09:51Z", + "violations": [] + }, + "4200f5043ac8590ebb527d209ed1503029fbcbd41ca1b506ec27f15ade7dac69": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.20.2", + "value": "...C.A" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "AF:44:04:C2:41:7E:48:83:DB:4E:39:02:EC:EC:84:7A:E6:CE:C9:A4" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.securetrust.com/SGCA.crl" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "SecureTrust Corporation" + ], + [ + "commonName", + "Secure Global CA" + ] + ], + "references": {}, + "serial_number": "075622a4e8d48a894df413c8f0f8eaa5", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "SecureTrust Corporation" + ], + [ + "commonName", + "Secure Global CA" + ] + ], + "thumbprint": "4200f5043ac8590ebb527d209ed1503029fbcbd41ca1b506ec27f15ade7dac69", + "type": "X.509", + "valid_from": "2006-11-07T19:42:28Z", + "valid_to": "2029-12-31T19:52:06Z", + "violations": [] + }, + "4348a0e9444c78cb265e058d5e8944b4d84f9662bd26db257f8934a443c70161": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "03:DE:50:35:56:D1:4C:BB:66:F0:A3:E2:1B:1B:C3:97:B2:3D:D1:55" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root CA" + ] + ], + "references": {}, + "serial_number": "083be056904246b1a1756ac95991c74a", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root CA" + ] + ], + "thumbprint": "4348a0e9444c78cb265e058d5e8944b4d84f9662bd26db257f8934a443c70161", + "type": "X.509", + "valid_from": "2006-11-10T00:00:00Z", + "valid_to": "2031-11-10T00:00:00Z", + "violations": [] + }, + "43df5774b03e7fef5fe40d931a7bedf1bb2e6b42738c4e6d3841103d3aa7f339": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "6A:72:26:7A:D0:1E:EF:7D:E7:3B:69:51:D4:6C:8D:9F:90:12:66:AB" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2009 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - G2" + ] + ], + "references": {}, + "serial_number": "4a538c28", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2009 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - G2" + ] + ], + "thumbprint": "43df5774b03e7fef5fe40d931a7bedf1bb2e6b42738c4e6d3841103d3aa7f339", + "type": "X.509", + "valid_from": "2009-07-07T17:25:54Z", + "valid_to": "2030-12-07T17:55:54Z", + "violations": [] + }, + "43f257412d440d627476974f877da8f1fc2444565a367ae60eddc27a412531ae": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Non Repudiation, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "89:82:67:7D:C4:9D:26:70:00:4B:B4:50:48:7C:DE:3D:AE:04:6E:7D" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.usertrust.com/UTN-USERFirst-ClientAuthenticationandEmail.crl" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Client Authentication, E-mail Protection" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "UT" + ], + [ + "localityName", + "Salt Lake City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "organizationalUnitName", + "http://www.usertrust.com" + ], + [ + "commonName", + "UTN-USERFirst-Client Authentication and Email" + ] + ], + "references": {}, + "serial_number": "44be0c8b500024b411d336252567c989", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "UT" + ], + [ + "localityName", + "Salt Lake City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "organizationalUnitName", + "http://www.usertrust.com" + ], + [ + "commonName", + "UTN-USERFirst-Client Authentication and Email" + ] + ], + "thumbprint": "43f257412d440d627476974f877da8f1fc2444565a367ae60eddc27a412531ae", + "type": "X.509", + "valid_from": "1999-07-09T17:28:50Z", + "valid_to": "2019-07-09T17:36:58Z", + "violations": [] + }, + "44b545aa8a25e65a73ca15dc27fc36d24c1cb9953a066539b11582dc487b4833": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B4:22:0B:82:99:24:01:0E:9C:BB:E4:0E:FD:BF:FB:97:20:93:99:2A" + } + ], + "issuer": [ + [ + "countryName", + "GR" + ], + [ + "localityName", + "Athens" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions ECC RootCA 2015" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "GR" + ], + [ + "localityName", + "Athens" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions ECC RootCA 2015" + ] + ], + "thumbprint": "44b545aa8a25e65a73ca15dc27fc36d24c1cb9953a066539b11582dc487b4833", + "type": "X.509", + "valid_from": "2015-07-07T10:37:12Z", + "valid_to": "2040-06-30T10:37:12Z", + "violations": [] + }, + "45140b3247eb9cc8c5b4f0d7b53091f73292089e6e5a63e2749dd3aca9198eda": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "3A:9A:85:07:10:67:28:B6:EF:F6:BD:05:41:6E:20:C1:94:DA:0F:DE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "GoDaddy.com, Inc." + ], + [ + "commonName", + "Go Daddy Root Certificate Authority - G2" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "GoDaddy.com, Inc." + ], + [ + "commonName", + "Go Daddy Root Certificate Authority - G2" + ] + ], + "thumbprint": "45140b3247eb9cc8c5b4f0d7b53091f73292089e6e5a63e2749dd3aca9198eda", + "type": "X.509", + "valid_from": "2009-09-01T00:00:00Z", + "valid_to": "2037-12-31T23:59:59Z", + "violations": [] + }, + "46edc3689046d53a453fb3104ab80dcaec658b2660ea1629dd7e867990648716": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "65:3F:C7:8A:86:C6:3C:DD:3C:54:5C:35:F8:3A:ED:52:0C:47:57:C8" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Gebze - Kocaeli" + ], + [ + "organizationName", + "Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK" + ], + [ + "organizationalUnitName", + "Kamu Sertifikasyon Merkezi - Kamu SM" + ], + [ + "commonName", + "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Gebze - Kocaeli" + ], + [ + "organizationName", + "Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK" + ], + [ + "organizationalUnitName", + "Kamu Sertifikasyon Merkezi - Kamu SM" + ], + [ + "commonName", + "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" + ] + ], + "thumbprint": "46edc3689046d53a453fb3104ab80dcaec658b2660ea1629dd7e867990648716", + "type": "X.509", + "valid_from": "2013-11-25T08:25:55Z", + "valid_to": "2043-10-25T08:25:55Z", + "violations": [] + }, + "49351b903444c185ccdc5c693d24d8555cb208d6a8141307699f4af063199d78": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "56:99:07:1E:D3:AC:0C:69:64:B4:0C:50:47:DE:43:2C:BE:20:C0:FB" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Ankara" + ], + [ + "organizationName", + "TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş." + ], + [ + "commonName", + "TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5" + ] + ], + "references": {}, + "serial_number": "8e17fe242081", + "size": 0, + "subject": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Ankara" + ], + [ + "organizationName", + "TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş." + ], + [ + "commonName", + "TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı H5" + ] + ], + "thumbprint": "49351b903444c185ccdc5c693d24d8555cb208d6a8141307699f4af063199d78", + "type": "X.509", + "valid_from": "2013-04-30T08:07:01Z", + "valid_to": "2023-04-28T08:07:01Z", + "violations": [] + }, + "49e7a442acf0ea6287050054b52564b650e4f49e42e348d6aa38e039e957b1c1": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FD:DA:14:C4:9F:30:DE:21:BD:1E:42:39:FC:AB:63:23:49:E0:F1:84" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%202009,O=D-Trust%20GmbH,C=DE?certificaterevocationlist\nFull Name:\n URI:http://www.d-trust.net/crl/d-trust_root_class_3_ca_2_2009.crl" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root Class 3 CA 2 2009" + ] + ], + "references": {}, + "serial_number": "0983f3", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root Class 3 CA 2 2009" + ] + ], + "thumbprint": "49e7a442acf0ea6287050054b52564b650e4f49e42e348d6aa38e039e957b1c1", + "type": "X.509", + "valid_from": "2009-11-05T08:35:58Z", + "valid_to": "2029-11-05T08:35:58Z", + "violations": [] + }, + "4b03f45807ad70f21bfc2cae71c9fde4604c064cf5ffb686bae5dbaad7fdd34c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "AD:6C:AA:94:60:9C:ED:E4:FF:FA:3E:0A:74:2B:63:03:F7:B6:59:BF" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "Certification Services Division" + ], + [ + "organizationalUnitName", + "(c) 2008 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA - G3" + ] + ], + "references": {}, + "serial_number": "600197b746a7eab4b49ad64b2ff790fb", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "Certification Services Division" + ], + [ + "organizationalUnitName", + "(c) 2008 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA - G3" + ] + ], + "thumbprint": "4b03f45807ad70f21bfc2cae71c9fde4604c064cf5ffb686bae5dbaad7fdd34c", + "type": "X.509", + "valid_from": "2008-04-02T00:00:00Z", + "valid_to": "2037-12-01T23:59:59Z", + "violations": [] + }, + "4d2491414cfe956746ec4cefa6cf6f72e28a1329432f9d8a907ac4cb5dadc15a": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FE:AB:00:90:98:9E:24:FC:A9:CC:1A:8A:FB:27:B8:BF:30:6E:A8:3B" + } + ], + "issuer": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden EV Root CA" + ] + ], + "references": {}, + "serial_number": "98968d", + "size": 0, + "subject": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden EV Root CA" + ] + ], + "thumbprint": "4d2491414cfe956746ec4cefa6cf6f72e28a1329432f9d8a907ac4cb5dadc15a", + "type": "X.509", + "valid_from": "2010-12-08T11:19:29Z", + "valid_to": "2022-12-08T11:10:28Z", + "violations": [] + }, + "4f4ea24dcea5a2fb44d3caa2544995c35b571fb5634d39a242a1c0e5a34d0f3e": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0dfb66925257", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "thumbprint": "4f4ea24dcea5a2fb44d3caa2544995c35b571fb5634d39a242a1c0e5a34d0f3e", + "type": "X.509", + "valid_from": "2018-09-19T07:08:01Z", + "valid_to": "2035-02-22T07:08:01Z", + "violations": [] + }, + "4fa3126d8d3a11d1c4855a4f807cbad6cf919d3a5a88b03bea2c6372d93c40c9": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "03:5C:AB:73:81:87:A8:CC:B0:A6:D5:94:E2:36:96:49:FF:05:99:2C" + } + ], + "issuer": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "commonName", + "GlobalSign Root R46" + ] + ], + "references": {}, + "serial_number": "11d2bbb9d723189e405f0a9d2dd0df2567d1", + "size": 0, + "subject": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "commonName", + "GlobalSign Root R46" + ] + ], + "thumbprint": "4fa3126d8d3a11d1c4855a4f807cbad6cf919d3a5a88b03bea2c6372d93c40c9", + "type": "X.509", + "valid_from": "2019-03-20T00:00:00Z", + "valid_to": "2046-03-20T00:00:00Z", + "violations": [] + }, + "4ff460d54b9c86dabfbcfc5712e0400d2bed3fbc4d4fbdaa86e06adcd2a9ad7a": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "3A:E1:09:86:D4:CF:19:C2:96:76:74:49:76:DC:E0:35:C6:63:63:9A" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "New Jersey" + ], + [ + "localityName", + "Jersey City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "commonName", + "USERTrust ECC Certification Authority" + ] + ], + "references": {}, + "serial_number": "5c8b99c55a94c5d27156decd8980cc26", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "New Jersey" + ], + [ + "localityName", + "Jersey City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "commonName", + "USERTrust ECC Certification Authority" + ] + ], + "thumbprint": "4ff460d54b9c86dabfbcfc5712e0400d2bed3fbc4d4fbdaa86e06adcd2a9ad7a", + "type": "X.509", + "valid_from": "2010-02-01T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "513b2cecb810d4cde5dd85391adfc6c2dd60d87bb736d2b521484aa47a0ebef6": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "0A:85:A9:77:65:05:98:7C:40:81:F8:0F:97:2C:38:F1:0A:EC:3C:CF" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "SECOM Trust Systems CO.,LTD." + ], + [ + "organizationalUnitName", + "Security Communication RootCA2" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "SECOM Trust Systems CO.,LTD." + ], + [ + "organizationalUnitName", + "Security Communication RootCA2" + ] + ], + "thumbprint": "513b2cecb810d4cde5dd85391adfc6c2dd60d87bb736d2b521484aa47a0ebef6", + "type": "X.509", + "valid_from": "2009-05-29T05:00:39Z", + "valid_to": "2029-05-29T05:00:39Z", + "violations": [] + }, + "52f0e1c4e58ec629291b60317f074671b85d7ea80d5b07273463534b32b40234": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "BB:AF:7E:02:3D:FA:A6:F1:3C:84:8E:AD:EE:38:98:EC:D9:32:32:D4" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO RSA Certification Authority" + ] + ], + "references": {}, + "serial_number": "4caaf9cadb636fe01ff74ed85b03869d", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "COMODO CA Limited" + ], + [ + "commonName", + "COMODO RSA Certification Authority" + ] + ], + "thumbprint": "52f0e1c4e58ec629291b60317f074671b85d7ea80d5b07273463534b32b40234", + "type": "X.509", + "valid_from": "2010-01-19T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "54455f7129c20b1447c418f997168f24c58fc5023bf5da5be2eb6e1dd8902ed5": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.171.1.1.1.10\n CPS: https://repository.luxtrust.lu" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "FF:18:28:76:F9:48:05:2C:A1:AE:F1:2B:1B:2B:B2:53:F8:4B:7C:B3" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FF:18:28:76:F9:48:05:2C:A1:AE:F1:2B:1B:2B:B2:53:F8:4B:7C:B3" + } + ], + "issuer": [ + [ + "countryName", + "LU" + ], + [ + "organizationName", + "LuxTrust S.A." + ], + [ + "commonName", + "LuxTrust Global Root 2" + ] + ], + "references": {}, + "serial_number": "0a7ea6df4b449eda6a24859ee6b815d3167fbbb1", + "size": 0, + "subject": [ + [ + "countryName", + "LU" + ], + [ + "organizationName", + "LuxTrust S.A." + ], + [ + "commonName", + "LuxTrust Global Root 2" + ] + ], + "thumbprint": "54455f7129c20b1447c418f997168f24c58fc5023bf5da5be2eb6e1dd8902ed5", + "type": "X.509", + "valid_from": "2015-03-05T13:21:57Z", + "valid_to": "2035-03-05T13:21:57Z", + "violations": [] + }, + "552f7bdcf1a7af9e6ce672017f4f12abf77240c78e761ac203d1d9d20ac89988": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "EC:D7:E3:82:D2:71:5D:64:4C:DF:2E:67:3F:E7:BA:98:AE:1C:0F:4F" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Trusted Root G4" + ] + ], + "references": {}, + "serial_number": "059b1b579e8e2132e23907bda777755c", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Trusted Root G4" + ] + ], + "thumbprint": "552f7bdcf1a7af9e6ce672017f4f12abf77240c78e761ac203d1d9d20ac89988", + "type": "X.509", + "valid_from": "2013-08-01T12:00:00Z", + "valid_to": "2038-01-15T12:00:00Z", + "violations": [] + }, + "554153b13d2cf9ddb753bfbe1a4e0ae08d0aa4187058fe60a2b862b2e4b87bcb": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "01:B9:2F:EF:BF:11:86:60:F2:4F:D0:41:6E:AB:73:1F:E7:D2:6E:49" + } + ], + "issuer": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "FNMT-RCM" + ], + [ + "organizationalUnitName", + "Ceres" + ], + [ + "organizationIdentifier", + "VATES-Q2826004J" + ], + [ + "commonName", + "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" + ] + ], + "references": {}, + "serial_number": "62f6326ce5c4e3685c1b62dd9c2e9d95", + "size": 0, + "subject": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "FNMT-RCM" + ], + [ + "organizationalUnitName", + "Ceres" + ], + [ + "organizationIdentifier", + "VATES-Q2826004J" + ], + [ + "commonName", + "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" + ] + ], + "thumbprint": "554153b13d2cf9ddb753bfbe1a4e0ae08d0aa4187058fe60a2b862b2e4b87bcb", + "type": "X.509", + "valid_from": "2018-12-20T09:37:33Z", + "valid_to": "2043-12-20T09:37:33Z", + "violations": [] + }, + "55903859c8c0c3ebb8759ece4e2557225ff5758bbd38ebd48276601e1bd58097": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "55:A9:84:89:D2:C1:32:BD:18:CB:6C:A6:07:4E:C8:E7:9D:BE:82:90" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global ECC P384 Certification Authority" + ] + ], + "references": {}, + "serial_number": "08bd85976c9927a48068473b", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global ECC P384 Certification Authority" + ] + ], + "thumbprint": "55903859c8c0c3ebb8759ece4e2557225ff5758bbd38ebd48276601e1bd58097", + "type": "X.509", + "valid_from": "2017-08-23T19:36:43Z", + "valid_to": "2042-08-23T19:36:43Z", + "violations": [] + }, + "55926084ec963a64b96e2abe01ce0ba86a64fbfebcc7aab5afc155b37fd76066": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "52:D8:88:3A:C8:9F:78:66:ED:89:F3:7B:38:70:94:C9:02:02:36:D0" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "52:D8:88:3A:C8:9F:78:66:ED:89:F3:7B:38:70:94:C9:02:02:36:D0" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "IT" + ], + [ + "localityName", + "Milan" + ], + [ + "organizationName", + "Actalis S.p.A./03358520967" + ], + [ + "commonName", + "Actalis Authentication Root CA" + ] + ], + "references": {}, + "serial_number": "570a119742c4e3cc", + "size": 0, + "subject": [ + [ + "countryName", + "IT" + ], + [ + "localityName", + "Milan" + ], + [ + "organizationName", + "Actalis S.p.A./03358520967" + ], + [ + "commonName", + "Actalis Authentication Root CA" + ] + ], + "thumbprint": "55926084ec963a64b96e2abe01ce0ba86a64fbfebcc7aab5afc155b37fd76066", + "type": "X.509", + "valid_from": "2011-09-22T11:22:02Z", + "valid_to": "2030-09-22T11:22:02Z", + "violations": [] + }, + "568d6905a2c88708a4b3025190edcfedb1974a606a13c6e5290fcb2ae63edab5": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9C:5F:00:DF:AA:01:D7:30:2B:38:88:A2:B8:6D:4A:9C:F2:11:91:83" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "commonName", + "Starfield Services Root Certificate Authority - G2" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Arizona" + ], + [ + "localityName", + "Scottsdale" + ], + [ + "organizationName", + "Starfield Technologies, Inc." + ], + [ + "commonName", + "Starfield Services Root Certificate Authority - G2" + ] + ], + "thumbprint": "568d6905a2c88708a4b3025190edcfedb1974a606a13c6e5290fcb2ae63edab5", + "type": "X.509", + "valid_from": "2009-09-01T00:00:00Z", + "valid_to": "2037-12-31T23:59:59Z", + "violations": [] + }, + "56c77128d98c18d91b4cfdffbc25ee9103d4758ea2abad826a90f3457d460eb4": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "97:46:21:57:21:35:DA:36:55:C7:F3:F1:37:70:E5:08:F6:93:29:B6" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "97:46:21:57:21:35:DA:36:55:C7:F3:F1:37:70:E5:08:F6:93:29:B6" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G1" + ] + ], + "references": {}, + "serial_number": "1120b39055397d7f366d64c2a79f6b638e67", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G1" + ] + ], + "thumbprint": "56c77128d98c18d91b4cfdffbc25ee9103d4758ea2abad826a90f3457d460eb4", + "type": "X.509", + "valid_from": "2014-05-26T08:45:50Z", + "valid_to": "2038-01-15T00:00:00Z", + "violations": [] + }, + "59769007f7685d0fcd50872f9f95d5755a5b2b457d81f3692b610a98672f0e1b": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "TAIWAN-CA" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "TWCA Global Root CA" + ] + ], + "references": {}, + "serial_number": "0cbe", + "size": 0, + "subject": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "TAIWAN-CA" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "TWCA Global Root CA" + ] + ], + "thumbprint": "59769007f7685d0fcd50872f9f95d5755a5b2b457d81f3692b610a98672f0e1b", + "type": "X.509", + "valid_from": "2012-06-27T06:28:33Z", + "valid_to": "2030-12-31T15:59:59Z", + "violations": [] + }, + "5a2fc03f0c83b090bbfa40604b0988446c7636183df9846e17101a447fb8efd6": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "17:9D:CD:1E:8B:D6:39:2B:70:D3:5C:D4:A0:B8:1F:B0:00:FC:C5:61" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "17:9D:CD:1E:8B:D6:39:2B:70:D3:5C:D4:A0:B8:1F:B0:00:FC:C5:61" + } + ], + "issuer": [ + [ + "countryName", + "HK" + ], + [ + "stateOrProvinceName", + "Hong Kong" + ], + [ + "localityName", + "Hong Kong" + ], + [ + "organizationName", + "Hongkong Post" + ], + [ + "commonName", + "Hongkong Post Root CA 3" + ] + ], + "references": {}, + "serial_number": "08165f8a4ca5ec00c99340dfc4c6ae23b81c5aa4", + "size": 0, + "subject": [ + [ + "countryName", + "HK" + ], + [ + "stateOrProvinceName", + "Hong Kong" + ], + [ + "localityName", + "Hong Kong" + ], + [ + "organizationName", + "Hongkong Post" + ], + [ + "commonName", + "Hongkong Post Root CA 3" + ] + ], + "thumbprint": "5a2fc03f0c83b090bbfa40604b0988446c7636183df9846e17101a447fb8efd6", + "type": "X.509", + "valid_from": "2017-06-03T02:29:46Z", + "valid_to": "2042-06-03T02:29:46Z", + "violations": [] + }, + "5a885db19c01d912c5759388938cafbbdf031ab2d48e91ee15589b42971d039c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "44:9E:48:F5:CC:6D:48:D4:A0:4B:7F:FE:59:24:2F:83:97:99:9A:86" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "44:9E:48:F5:CC:6D:48:D4:A0:4B:7F:FE:59:24:2F:83:97:99:9A:86" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor ECA-1" + ] + ], + "references": {}, + "serial_number": "84822c5f1c62d040", + "size": 0, + "subject": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor ECA-1" + ] + ], + "thumbprint": "5a885db19c01d912c5759388938cafbbdf031ab2d48e91ee15589b42971d039c", + "type": "X.509", + "valid_from": "2016-02-04T12:32:33Z", + "valid_to": "2029-12-31T17:28:07Z", + "violations": [] + }, + "5c58468d55f58e497e743982d2b50010b6d165374acf83a7d4a32db768c4408e": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "08:76:CD:CB:07:FF:24:F6:C5:CD:ED:BB:90:BC:E2:84:37:46:75:F7" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Technologies S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Network CA" + ] + ], + "references": {}, + "serial_number": "0444c0", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Technologies S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Network CA" + ] + ], + "thumbprint": "5c58468d55f58e497e743982d2b50010b6d165374acf83a7d4a32db768c4408e", + "type": "X.509", + "valid_from": "2008-10-22T12:07:37Z", + "valid_to": "2029-12-31T12:07:37Z", + "violations": [] + }, + "5cc3d78e4e1d5e45547a04e6873e64f90cf9536d1ccc2ef800f355c4c5fd70fd": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "E3:FE:2D:FD:28:D0:0B:B5:BA:B6:A2:C4:BF:06:AA:05:8C:93:FB:2F" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E3:FE:2D:FD:28:D0:0B:B5:BA:B6:A2:C4:BF:06:AA:05:8C:93:FB:2F" + } + ], + "issuer": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "China Financial Certification Authority" + ], + [ + "commonName", + "CFCA EV ROOT" + ] + ], + "references": {}, + "serial_number": "184accd6", + "size": 0, + "subject": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "China Financial Certification Authority" + ], + [ + "commonName", + "CFCA EV ROOT" + ] + ], + "thumbprint": "5cc3d78e4e1d5e45547a04e6873e64f90cf9536d1ccc2ef800f355c4c5fd70fd", + "type": "X.509", + "valid_from": "2012-08-08T03:07:01Z", + "valid_to": "2029-12-31T03:07:01Z", + "violations": [] + }, + "5d56499be4d2e08bcfcad08a3e38723d50503bde706948e42f55603019e528ae": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "ED:44:19:C0:D3:F0:06:8B:EE:A4:7B:BE:42:E7:26:54:C8:8E:36:76" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "IdenTrust" + ], + [ + "commonName", + "IdenTrust Commercial Root CA 1" + ] + ], + "references": {}, + "serial_number": "0a0142800000014523c844b500000002", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "IdenTrust" + ], + [ + "commonName", + "IdenTrust Commercial Root CA 1" + ] + ], + "thumbprint": "5d56499be4d2e08bcfcad08a3e38723d50503bde706948e42f55603019e528ae", + "type": "X.509", + "valid_from": "2014-01-16T18:12:23Z", + "valid_to": "2034-01-16T18:12:23Z", + "violations": [] + }, + "5edb7ac43b82a06a8761e8d7be4979ebf2611f7dd79bf91c1c6b566a219ed766": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "15:5F:35:57:51:55:FB:25:B2:AD:03:69:FC:01:A3:FA:BE:11:55:D5" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "organizationalUnitName", + "(c) 2007 GeoTrust Inc. - For authorized use only" + ], + [ + "commonName", + "GeoTrust Primary Certification Authority - G2" + ] + ], + "references": {}, + "serial_number": "3cb2f4480a00e2feeb243b5e603ec36b", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "organizationalUnitName", + "(c) 2007 GeoTrust Inc. - For authorized use only" + ], + [ + "commonName", + "GeoTrust Primary Certification Authority - G2" + ] + ], + "thumbprint": "5edb7ac43b82a06a8761e8d7be4979ebf2611f7dd79bf91c1c6b566a219ed766", + "type": "X.509", + "valid_from": "2007-11-05T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "62dd0be9b9f50a163ea0f8e75c053b1eca57ea55c8688f647c6881f2c8357b95": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "5B:25:7B:96:A4:65:51:7E:B8:39:F3:C0:78:66:5E:E8:3A:E7:F0:EE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "5B:25:7B:96:A4:65:51:7E:B8:39:F3:C0:78:66:5E:E8:3A:E7:F0:EE" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 2.16.756.1.89.1.2.1.1\n CPS: http://repository.swisssign.com/" + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Gold CA - G2" + ] + ], + "references": {}, + "serial_number": "bb401c43f55e4fb0", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Gold CA - G2" + ] + ], + "thumbprint": "62dd0be9b9f50a163ea0f8e75c053b1eca57ea55c8688f647c6881f2c8357b95", + "type": "X.509", + "valid_from": "2006-10-25T08:30:35Z", + "valid_to": "2036-10-25T08:30:35Z", + "violations": [] + }, + "657cfe2fa73faa38462571f332a2363a46fce7020951710702cdfbb6eeda3305": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "82:21:2D:66:C6:D7:A0:E0:15:EB:CE:4C:09:77:C4:60:9E:54:6E:03" + } + ], + "issuer": [ + [ + "countryName", + "RO" + ], + [ + "organizationName", + "CERTSIGN SA" + ], + [ + "organizationalUnitName", + "certSIGN ROOT CA G2" + ] + ], + "references": {}, + "serial_number": "110034b64ec6362d36", + "size": 0, + "subject": [ + [ + "countryName", + "RO" + ], + [ + "organizationName", + "CERTSIGN SA" + ], + [ + "organizationalUnitName", + "certSIGN ROOT CA G2" + ] + ], + "thumbprint": "657cfe2fa73faa38462571f332a2363a46fce7020951710702cdfbb6eeda3305", + "type": "X.509", + "valid_from": "2017-02-06T09:27:35Z", + "valid_to": "2042-02-06T09:27:35Z", + "violations": [] + }, + "668c83947da63b724bece1743c31a0e6aed0db8ec5b31be377bb784f91b6716f": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://www.pkioverheid.nl/policies/root-policy-G2" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "91:68:32:87:15:1D:89:E2:B5:F1:AC:36:28:34:8D:0B:7C:62:88:EB" + } + ], + "issuer": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden Root CA - G2" + ] + ], + "references": {}, + "serial_number": "98968c", + "size": 0, + "subject": [ + [ + "countryName", + "NL" + ], + [ + "organizationName", + "Staat der Nederlanden" + ], + [ + "commonName", + "Staat der Nederlanden Root CA - G2" + ] + ], + "thumbprint": "668c83947da63b724bece1743c31a0e6aed0db8ec5b31be377bb784f91b6716f", + "type": "X.509", + "valid_from": "2008-03-26T11:18:17Z", + "valid_to": "2020-03-25T11:03:10Z", + "violations": [] + }, + "687fa451382278fff0c8b11f8d43d576671c6eb2bceab413fb83d965d06d2ff2": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "AD:BD:98:7A:34:B4:26:F7:FA:C4:26:54:EF:03:BD:E0:24:CB:54:1A" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:AD:BD:98:7A:34:B4:26:F7:FA:C4:26:54:EF:03:BD:E0:24:CB:54:1A\nDirName:/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root\nserial:01" + } + ], + "issuer": [ + [ + "countryName", + "SE" + ], + [ + "organizationName", + "AddTrust AB" + ], + [ + "organizationalUnitName", + "AddTrust External TTP Network" + ], + [ + "commonName", + "AddTrust External CA Root" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "SE" + ], + [ + "organizationName", + "AddTrust AB" + ], + [ + "organizationalUnitName", + "AddTrust External TTP Network" + ], + [ + "commonName", + "AddTrust External CA Root" + ] + ], + "thumbprint": "687fa451382278fff0c8b11f8d43d576671c6eb2bceab413fb83d965d06d2ff2", + "type": "X.509", + "valid_from": "2000-05-30T10:48:38Z", + "valid_to": "2020-05-30T10:48:38Z", + "violations": [] + }, + "69ddd7ea90bb57c93e135dc85ea6fcd5480b603239bdc454fc758b2a26cf7f79": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "1.3.6.1.5.5.7.1.12", + "value": "0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B3:16:91:FD:EE:A6:6E:E4:B5:2E:49:8F:87:78:81:80:EC:E5:B1:B5" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2007 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G4" + ] + ], + "references": {}, + "serial_number": "2f80fe238c0e220f486712289187acb3", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2007 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G4" + ] + ], + "thumbprint": "69ddd7ea90bb57c93e135dc85ea6fcd5480b603239bdc454fc758b2a26cf7f79", + "type": "X.509", + "valid_from": "2007-11-05T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "69fac9bd55fb0ac78d53bbee5cf1d597989fd0aaab20a25151bdf1733ee7d122": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "15:38:83:0F:3F:2C:3F:70:33:1E:CD:46:FE:07:8C:20:E0:D7:C3:B7" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VISA" + ], + [ + "organizationalUnitName", + "Visa International Service Association" + ], + [ + "commonName", + "Visa eCommerce Root" + ] + ], + "references": {}, + "serial_number": "1386354d1d3f06f2c1f96505d5901c62", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VISA" + ], + [ + "organizationalUnitName", + "Visa International Service Association" + ], + [ + "commonName", + "Visa eCommerce Root" + ] + ], + "thumbprint": "69fac9bd55fb0ac78d53bbee5cf1d597989fd0aaab20a25151bdf1733ee7d122", + "type": "X.509", + "valid_from": "2002-06-26T02:18:36Z", + "valid_to": "2022-06-24T00:16:12Z", + "violations": [] + }, + "6b328085625318aa50d173c98d8bda09d57e27413d114cf787a0f5d06c030cf6": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "8D:06:66:74:24:76:3A:F3:89:F7:BC:D6:BD:47:7D:2F:BC:10:5F:4B" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Asseco Data Systems S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum EC-384 CA" + ] + ], + "references": {}, + "serial_number": "788f275c81125220a504d02dddba73f4", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Asseco Data Systems S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum EC-384 CA" + ] + ], + "thumbprint": "6b328085625318aa50d173c98d8bda09d57e27413d114cf787a0f5d06c030cf6", + "type": "X.509", + "valid_from": "2018-03-26T07:24:54Z", + "valid_to": "2043-03-26T07:24:54Z", + "violations": [] + }, + "6b9c08e86eb0f767cfad65cd98b62149e5494a67f5845e7bd1ed019f27b86bd6": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "35:0F:C8:36:63:5E:E2:A3:EC:F9:3B:66:15:CE:51:52:E3:91:9A:3D" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GB CA" + ] + ], + "references": {}, + "serial_number": "76b1205274f0858746b3f8231af6c2c0", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GB CA" + ] + ], + "thumbprint": "6b9c08e86eb0f767cfad65cd98b62149e5494a67f5845e7bd1ed019f27b86bd6", + "type": "X.509", + "valid_from": "2014-12-01T15:00:32Z", + "valid_to": "2039-12-01T15:10:31Z", + "violations": [] + }, + "6c61dac3a2def031506be036d2a6fe401994fbd13df9c8d466599274c446ec98": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:4" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "CC:FA:67:93:F0:B6:B8:D0:A5:C0:1E:F3:53:FD:8C:53:DF:83:D7:96" + } + ], + "issuer": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "NetLock Kft." + ], + [ + "organizationalUnitName", + "Tanúsítványkiadók (Certification Services)" + ], + [ + "commonName", + "NetLock Arany (Class Gold) Főtanúsítvány" + ] + ], + "references": {}, + "serial_number": "49412ce40010", + "size": 0, + "subject": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "NetLock Kft." + ], + [ + "organizationalUnitName", + "Tanúsítványkiadók (Certification Services)" + ], + [ + "commonName", + "NetLock Arany (Class Gold) Főtanúsítvány" + ] + ], + "thumbprint": "6c61dac3a2def031506be036d2a6fe401994fbd13df9c8d466599274c446ec98", + "type": "X.509", + "valid_from": "2008-12-11T15:08:21Z", + "valid_to": "2028-12-06T15:08:21Z", + "violations": [] + }, + "6cc05041e6445e74696c4cfbc9f80f543b7eabbb44b4ce6f787c6a9971c42f17": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "DA:83:63:02:79:8E:DA:4C:C6:3C:23:14:D8:8F:C3:20:AB:28:60:59" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "DA:83:63:02:79:8E:DA:4C:C6:3C:23:14:D8:8F:C3:20:AB:28:60:59" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Certplus Root CA G2" + ] + ], + "references": {}, + "serial_number": "1120d991ceaea3e8c5e7ffe902afcf73bc55", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Certplus" + ], + [ + "commonName", + "Certplus Root CA G2" + ] + ], + "thumbprint": "6cc05041e6445e74696c4cfbc9f80f543b7eabbb44b4ce6f787c6a9971c42f17", + "type": "X.509", + "valid_from": "2014-05-26T00:00:00Z", + "valid_to": "2038-01-15T00:00:00Z", + "violations": [] + }, + "6dc47172e01cbcb0bf62580d895fe2b8ac9ad4f873801e0c10b9c837d21eb177": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "55:E4:81:D1:11:80:BE:D8:89:B9:08:A3:31:F9:A1:24:09:16:B9:70" + } + ], + "issuer": [ + [ + "organizationName", + "Entrust.net" + ], + [ + "organizationalUnitName", + "www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)" + ], + [ + "organizationalUnitName", + "(c) 1999 Entrust.net Limited" + ], + [ + "commonName", + "Entrust.net Certification Authority (2048)" + ] + ], + "references": {}, + "serial_number": "3863def8", + "size": 0, + "subject": [ + [ + "organizationName", + "Entrust.net" + ], + [ + "organizationalUnitName", + "www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)" + ], + [ + "organizationalUnitName", + "(c) 1999 Entrust.net Limited" + ], + [ + "commonName", + "Entrust.net Certification Authority (2048)" + ] + ], + "thumbprint": "6dc47172e01cbcb0bf62580d895fe2b8ac9ad4f873801e0c10b9c837d21eb177", + "type": "X.509", + "valid_from": "1999-12-24T17:50:51Z", + "valid_to": "2029-07-24T14:15:12Z", + "violations": [] + }, + "70a73f7f376b60074248904534b11482d5bf0e698ecc498df52577ebf2e93b9a": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9D:C0:67:A6:0C:22:D9:26:F5:45:AB:A6:65:52:11:27:D8:45:AC:63" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Premium" + ] + ], + "references": {}, + "serial_number": "6d8c1446b1a60aee", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Premium" + ] + ], + "thumbprint": "70a73f7f376b60074248904534b11482d5bf0e698ecc498df52577ebf2e93b9a", + "type": "X.509", + "valid_from": "2010-01-29T14:10:36Z", + "valid_to": "2040-12-31T14:10:36Z", + "violations": [] + }, + "71cca5391f9e794b04802530b363e121da8a3043bb26662fea4dca7fc951a4bd": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "80:4C:D6:EB:74:FF:49:36:A3:D5:D8:FC:B5:3E:C5:6A:F0:94:1D:8C" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R4" + ] + ], + "references": {}, + "serial_number": "6e47a9c88b94b6e8bb3b2ad8a2b2c199", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R4" + ] + ], + "thumbprint": "71cca5391f9e794b04802530b363e121da8a3043bb26662fea4dca7fc951a4bd", + "type": "X.509", + "valid_from": "2016-06-22T00:00:00Z", + "valid_to": "2036-06-22T00:00:00Z", + "violations": [] + }, + "73c176434f1bc6d5adf45b0e76e727287c8de57616c1e6e6141a2b2cbc7d8e4c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Private Key Usage Period", + "value": "Not Before: Nov 27 20:23:42 2006 GMT, Not After: Nov 27 20:53:42 2026 GMT" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "68:90:E4:67:A4:A6:53:80:C7:86:66:A4:F1:F7:4B:43:FB:84:BD:6D" + }, + { + "is_critical": false, + "name": "1.2.840.113533.7.65.0", + "value": "0...V7.1:4.0...." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "www.entrust.net/CPS is incorporated by reference" + ], + [ + "organizationalUnitName", + "(c) 2006 Entrust, Inc." + ], + [ + "commonName", + "Entrust Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "456b5054", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "www.entrust.net/CPS is incorporated by reference" + ], + [ + "organizationalUnitName", + "(c) 2006 Entrust, Inc." + ], + [ + "commonName", + "Entrust Root Certification Authority" + ] + ], + "thumbprint": "73c176434f1bc6d5adf45b0e76e727287c8de57616c1e6e6141a2b2cbc7d8e4c", + "type": "X.509", + "valid_from": "2006-11-27T20:23:42Z", + "valid_to": "2026-11-27T20:53:42Z", + "violations": [] + }, + "7431e5f4c3c1ce4690774f0b61e05440883ba9a01ed00ba6abd7806ed3b118cf": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "B1:3E:C3:69:03:F8:BF:47:01:D4:98:26:1A:08:02:EF:63:64:2B:C3" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert High Assurance EV Root CA" + ] + ], + "references": {}, + "serial_number": "02ac5c266a0b409b8f0b79f2ae462577", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert High Assurance EV Root CA" + ] + ], + "thumbprint": "7431e5f4c3c1ce4690774f0b61e05440883ba9a01ed00ba6abd7806ed3b118cf", + "type": "X.509", + "valid_from": "2006-11-10T00:00:00Z", + "valid_to": "2031-11-10T00:00:00Z", + "violations": [] + }, + "7600295eefe85b9e1fd624db76062aaaae59818a54d2774cd4c0b2c01131e1b3": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "CC:CC:EF:CC:29:60:A4:3B:B1:92:B6:3C:FA:32:62:8F:AC:25:15:3B" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "setCext-hashedRoot", + "value": "0/0-...0...+......0...g*........\"...(6....2.1:.Qe" + } + ], + "issuer": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "Government Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "1f9d595ad72fc20644a5800869e35ef6", + "size": 0, + "subject": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "Government Root Certification Authority" + ] + ], + "thumbprint": "7600295eefe85b9e1fd624db76062aaaae59818a54d2774cd4c0b2c01131e1b3", + "type": "X.509", + "valid_from": "2002-12-05T13:23:33Z", + "valid_to": "2032-12-05T13:23:33Z", + "violations": [] + }, + "7908b40314c138100b518d0735807ffbfcf8518a0095337105ba386b153dd927": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "4A:A0:AA:58:84:D3:5E:3C" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "FI" + ], + [ + "organizationName", + "Sonera" + ], + [ + "commonName", + "Sonera Class2 CA" + ] + ], + "references": {}, + "serial_number": "1d", + "size": 0, + "subject": [ + [ + "countryName", + "FI" + ], + [ + "organizationName", + "Sonera" + ], + [ + "commonName", + "Sonera Class2 CA" + ] + ], + "thumbprint": "7908b40314c138100b518d0735807ffbfcf8518a0095337105ba386b153dd927", + "type": "X.509", + "valid_from": "2001-04-06T07:29:40Z", + "valid_to": "2021-04-06T07:29:40Z", + "violations": [] + }, + "7d05ebb682339f8c9451ee094eebfefa7953a114edb2f44949452fab7d2fc185": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "CE:C3:4A:B9:99:55:F2:B8:DB:60:BF:A9:7E:BD:56:B5:97:36:A7:D6" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root G2" + ] + ], + "references": {}, + "serial_number": "0b931c3ad63967ea6723bfc3af9af44b", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root G2" + ] + ], + "thumbprint": "7d05ebb682339f8c9451ee094eebfefa7953a114edb2f44949452fab7d2fc185", + "type": "X.509", + "valid_from": "2013-08-01T12:00:00Z", + "valid_to": "2038-01-15T12:00:00Z", + "violations": [] + }, + "7e37cb8b4c47090cab36551ba6f45db840680fba166a952db100717f43053fc2": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "CB:D0:BD:A9:E1:98:05:51:A1:4D:37:A2:83:79:CE:8D:1D:2A:E4:84" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root G3" + ] + ], + "references": {}, + "serial_number": "0ba15afa1ddfa0b54944afcd24a06cec", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Assured ID Root G3" + ] + ], + "thumbprint": "7e37cb8b4c47090cab36551ba6f45db840680fba166a952db100717f43053fc2", + "type": "X.509", + "valid_from": "2013-08-01T12:00:00Z", + "valid_to": "2038-01-15T12:00:00Z", + "violations": [] + }, + "83806c4c46b74f363e3c637c63d3da6232a6f17e88d3103549a821b75ba55107": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "DNS:localhost" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment, Key Agreement" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D2:36:0A:53:12:B2:99:64:47:05:53:D2:17:69:12:FC:8E:DB:D7:07" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0dfb66c1f053", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "localhost" + ] + ], + "thumbprint": "83806c4c46b74f363e3c637c63d3da6232a6f17e88d3103549a821b75ba55107", + "type": "X.509", + "valid_from": "2018-09-19T07:13:14Z", + "valid_to": "2026-12-06T07:13:14Z", + "violations": [] + }, + "8560f91c3624daba9570b5fea0dbe36ff11a8323be9486854fb3f34a5571198d": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "48:87:14:AC:E3:C3:9E:90:60:3A:D7:CA:89:EE:D3:AD:8C:B4:50:66" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GC CA" + ] + ], + "references": {}, + "serial_number": "212a560caeda0cab4045bf2ba22d3aea", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "WISeKey" + ], + [ + "organizationalUnitName", + "OISTE Foundation Endorsed" + ], + [ + "commonName", + "OISTE WISeKey Global Root GC CA" + ] + ], + "thumbprint": "8560f91c3624daba9570b5fea0dbe36ff11a8323be9486854fb3f34a5571198d", + "type": "X.509", + "valid_from": "2017-05-09T09:48:34Z", + "valid_to": "2042-05-09T09:58:33Z", + "violations": [] + }, + "85666a562ee0be5ce925c1d8890a6f76a87ec16d4d7d5f29ea7419cf20123b69": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "DD:04:09:07:A2:F5:7A:7D:52:53:12:92:95:EE:38:80:25:0D:A6:59" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "DD:04:09:07:A2:F5:7A:7D:52:53:12:92:95:EE:38:80:25:0D:A6:59" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com Root Certification Authority RSA" + ] + ], + "references": {}, + "serial_number": "7b2c9bd316803299", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Texas" + ], + [ + "localityName", + "Houston" + ], + [ + "organizationName", + "SSL Corporation" + ], + [ + "commonName", + "SSL.com Root Certification Authority RSA" + ] + ], + "thumbprint": "85666a562ee0be5ce925c1d8890a6f76a87ec16d4d7d5f29ea7419cf20123b69", + "type": "X.509", + "valid_from": "2016-02-12T17:39:39Z", + "valid_to": "2041-02-12T17:39:39Z", + "violations": [] + }, + "85a0dd7dd720adb7ff05f83d542b209dc7ff4528f7d677b18389fea5e5c49e86": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "1A:84:62:BC:48:4C:33:25:04:D4:EE:D0:F6:03:C4:19:46:D1:94:6B" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:1A:84:62:BC:48:4C:33:25:04:D4:EE:D0:F6:03:C4:19:46:D1:94:6B\nDirName:/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2\nserial:05:09" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 2" + ] + ], + "references": {}, + "serial_number": "0509", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 2" + ] + ], + "thumbprint": "85a0dd7dd720adb7ff05f83d542b209dc7ff4528f7d677b18389fea5e5c49e86", + "type": "X.509", + "valid_from": "2006-11-24T18:27:00Z", + "valid_to": "2031-11-24T18:23:33Z", + "violations": [] + }, + "86a1ecba089c4a8d3bbe2734c612ba341d813e043cf9e8a862cd5c57a36bbe6b": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "7C:5D:02:84:13:D4:CC:8A:9B:81:CE:17:1C:2E:29:1E:9C:48:63:42" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "IN" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Technologies Limited" + ], + [ + "commonName", + "emSign ECC Root CA - G3" + ] + ], + "references": {}, + "serial_number": "3cf607a968700eda8b84", + "size": 0, + "subject": [ + [ + "countryName", + "IN" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Technologies Limited" + ], + [ + "commonName", + "emSign ECC Root CA - G3" + ] + ], + "thumbprint": "86a1ecba089c4a8d3bbe2734c612ba341d813e043cf9e8a862cd5c57a36bbe6b", + "type": "X.509", + "valid_from": "2018-02-18T18:30:00Z", + "valid_to": "2043-02-18T18:30:00Z", + "violations": [] + }, + "88497f01602f3154246ae28c4d5aef10f1d87ebb76626f4ae0b7f95ba7968799": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:ec_acc@catcert.net" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A0:C3:8B:44:AA:37:A5:45:BF:97:80:5A:D1:F1:78:A2:9B:E9:5D:8D" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.15096.1.3.1.10\n CPS: https://www.catcert.net/verarrel\n User Notice:\n Explicit Text: Vegeu https://www.catcert.net/verarrel " + } + ], + "issuer": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "Agencia Catalana de Certificacio (NIF Q-0801176-I)" + ], + [ + "organizationalUnitName", + "Serveis Publics de Certificacio" + ], + [ + "organizationalUnitName", + "Vegeu https://www.catcert.net/verarrel (c)03" + ], + [ + "organizationalUnitName", + "Jerarquia Entitats de Certificacio Catalanes" + ], + [ + "commonName", + "EC-ACC" + ] + ], + "references": {}, + "serial_number": "-11d4c2142bde21eb579d53fb0c223bff", + "size": 0, + "subject": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "Agencia Catalana de Certificacio (NIF Q-0801176-I)" + ], + [ + "organizationalUnitName", + "Serveis Publics de Certificacio" + ], + [ + "organizationalUnitName", + "Vegeu https://www.catcert.net/verarrel (c)03" + ], + [ + "organizationalUnitName", + "Jerarquia Entitats de Certificacio Catalanes" + ], + [ + "commonName", + "EC-ACC" + ] + ], + "thumbprint": "88497f01602f3154246ae28c4d5aef10f1d87ebb76626f4ae0b7f95ba7968799", + "type": "X.509", + "valid_from": "2003-01-07T23:00:00Z", + "valid_to": "2031-01-07T22:59:59Z", + "violations": [] + }, + "88ef81de202eb018452e43f864725cea5fbd1fc2d9d205730709c5d8b8690f46": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C6:17:D0:BC:A8:EA:02:43:F2:1B:06:99:5D:2B:90:20:B9:D7:9C:E4" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 3 G3" + ] + ], + "references": {}, + "serial_number": "2ef59b0228a7db7affd5a3a9eebd03a0cf126a1d", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 3 G3" + ] + ], + "thumbprint": "88ef81de202eb018452e43f864725cea5fbd1fc2d9d205730709c5d8b8690f46", + "type": "X.509", + "valid_from": "2012-01-12T20:26:32Z", + "valid_to": "2042-01-12T20:26:32Z", + "violations": [] + }, + "88f438dcf8ffd1fa8f429115ffe5f82ae1e06e0c70c375faad717b34a49e7265": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D2:9F:88:DF:A1:CD:2C:BD:EC:F5:3B:01:01:93:33:27:B2:EB:60:4B" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "KR" + ], + [ + "organizationName", + "NAVER BUSINESS PLATFORM Corp." + ], + [ + "commonName", + "NAVER Global Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "0194301ea20bddf5c5332ab1434471f8d6504d0d", + "size": 0, + "subject": [ + [ + "countryName", + "KR" + ], + [ + "organizationName", + "NAVER BUSINESS PLATFORM Corp." + ], + [ + "commonName", + "NAVER Global Root Certification Authority" + ] + ], + "thumbprint": "88f438dcf8ffd1fa8f429115ffe5f82ae1e06e0c70c375faad717b34a49e7265", + "type": "X.509", + "valid_from": "2017-08-18T08:58:42Z", + "valid_to": "2037-08-18T23:59:59Z", + "violations": [] + }, + "8a866fd1b276b57e578e921c65828a2bed58e9f2f288054134b7f1f4bfc9cc74": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A3:97:D6:F3:5E:A2:10:E1:AB:45:9F:3C:17:64:3C:EE:01:70:9C:CC" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 1 G3" + ] + ], + "references": {}, + "serial_number": "78585f2ead2c194be3370735341328b596d46593", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 1 G3" + ] + ], + "thumbprint": "8a866fd1b276b57e578e921c65828a2bed58e9f2f288054134b7f1f4bfc9cc74", + "type": "X.509", + "valid_from": "2012-01-12T17:27:44Z", + "valid_to": "2042-01-12T17:27:44Z", + "violations": [] + }, + "8c7209279ac04e275e16d07fd3b775e80154b5968046e31f52dd25766324e9a7": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "95:B1:B4:F0:94:B6:BD:C7:DA:D1:11:09:21:BE:C1:AF:49:FD:10:7B" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:95:B1:B4:F0:94:B6:BD:C7:DA:D1:11:09:21:BE:C1:AF:49:FD:10:7B\nDirName:/C=SE/O=AddTrust AB/OU=AddTrust TTP Network/CN=AddTrust Class 1 CA Root\nserial:01" + } + ], + "issuer": [ + [ + "countryName", + "SE" + ], + [ + "organizationName", + "AddTrust AB" + ], + [ + "organizationalUnitName", + "AddTrust TTP Network" + ], + [ + "commonName", + "AddTrust Class 1 CA Root" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "SE" + ], + [ + "organizationName", + "AddTrust AB" + ], + [ + "organizationalUnitName", + "AddTrust TTP Network" + ], + [ + "commonName", + "AddTrust Class 1 CA Root" + ] + ], + "thumbprint": "8c7209279ac04e275e16d07fd3b775e80154b5968046e31f52dd25766324e9a7", + "type": "X.509", + "valid_from": "2000-05-30T10:38:31Z", + "valid_to": "2020-05-30T10:38:31Z", + "violations": [] + }, + "8d722f81a9c113c0791df136a2966db26c950a971db46b4199f4ea54b78bfb9f": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "7B:5B:45:CF:AF:CE:CB:7A:FD:31:92:1A:6A:B6:F3:46:EB:57:48:50" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "Certification Services Division" + ], + [ + "organizationalUnitName", + "(c) 2006 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA" + ] + ], + "references": {}, + "serial_number": "344ed55720d5edec49f42fce37db2b6d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "Certification Services Division" + ], + [ + "organizationalUnitName", + "(c) 2006 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA" + ] + ], + "thumbprint": "8d722f81a9c113c0791df136a2966db26c950a971db46b4199f4ea54b78bfb9f", + "type": "X.509", + "valid_from": "2006-11-17T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "8da084fcf99ce07722f89b3205939806fa5cb811e1c813f6a108c7d336b3408e": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D4:A2:FC:9F:B3:C3:D8:03:D3:57:5C:07:A4:D0:24:A7:C0:F2:00:D4" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://www.trustcenter.de/crl/v2/tc_class_3_ca_II.crl\n URI:ldap://www.trustcenter.de/CN=TC%20TrustCenter%20Class%203%20CA%20II,O=TC%20TrustCenter%20GmbH,OU=rootcerts,DC=trustcenter,DC=de?certificateRevocationList?base?" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "TC TrustCenter GmbH" + ], + [ + "organizationalUnitName", + "TC TrustCenter Class 3 CA" + ], + [ + "commonName", + "TC TrustCenter Class 3 CA II" + ] + ], + "references": {}, + "serial_number": "4a4700010002e5a05dd63f0051bf", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "TC TrustCenter GmbH" + ], + [ + "organizationalUnitName", + "TC TrustCenter Class 3 CA" + ], + [ + "commonName", + "TC TrustCenter Class 3 CA II" + ] + ], + "thumbprint": "8da084fcf99ce07722f89b3205939806fa5cb811e1c813f6a108c7d336b3408e", + "type": "X.509", + "valid_from": "2006-01-12T14:41:57Z", + "valid_to": "2025-12-31T22:59:59Z", + "violations": [] + }, + "8ecde6884f3d87b1125ba31ac3fcb13d7016de7f57cc904fe1cb97c6ae98196e": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "84:18:CC:85:34:EC:BC:0C:94:94:2E:08:59:9C:C7:B2:10:4E:0A:08" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 1" + ] + ], + "references": {}, + "serial_number": "066c9fcf99bf8c0a39e2f0788a43e696365bca", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 1" + ] + ], + "thumbprint": "8ecde6884f3d87b1125ba31ac3fcb13d7016de7f57cc904fe1cb97c6ae98196e", + "type": "X.509", + "valid_from": "2015-05-26T00:00:00Z", + "valid_to": "2038-01-17T00:00:00Z", + "violations": [] + }, + "8fe4fb0af93a4d0d67db0bebb23e37c71bf325dcbcdd240ea04daf58b47e1840": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "ED:E7:6F:76:5A:BF:60:EC:49:5B:C6:A5:77:BB:72:16:71:9B:C4:3D" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 2 G3" + ] + ], + "references": {}, + "serial_number": "445734245b81899b35f2ceb82b3b5ba726f07528", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "commonName", + "QuoVadis Root CA 2 G3" + ] + ], + "thumbprint": "8fe4fb0af93a4d0d67db0bebb23e37c71bf325dcbcdd240ea04daf58b47e1840", + "type": "X.509", + "valid_from": "2012-01-12T18:59:32Z", + "valid_to": "2042-01-12T18:59:32Z", + "violations": [] + }, + "91e2f5788d5810eba7ba58737de1548a8ecacd014598bc0b143e041b17052552": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "BF:59:20:36:00:79:A0:A0:22:6B:8C:D5:F2:61:D2:B8:2C:CB:82:4A" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "T-Systems Enterprise Services GmbH" + ], + [ + "organizationalUnitName", + "T-Systems Trust Center" + ], + [ + "commonName", + "T-TeleSec GlobalRoot Class 2" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "T-Systems Enterprise Services GmbH" + ], + [ + "organizationalUnitName", + "T-Systems Trust Center" + ], + [ + "commonName", + "T-TeleSec GlobalRoot Class 2" + ] + ], + "thumbprint": "91e2f5788d5810eba7ba58737de1548a8ecacd014598bc0b143e041b17052552", + "type": "X.509", + "valid_from": "2008-10-01T10:40:14Z", + "valid_to": "2033-10-01T23:59:59Z", + "violations": [] + }, + "92a9d9833fe1944db366e8bfae7a95b6480c2d6c6c2a1be65d4236b608fca1bb": { + "algorithm": "sha1WithRSAEncryption", + "extensions": null, + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 2 Public Primary Certification Authority - G3" + ] + ], + "references": {}, + "serial_number": "6170cb498c5f984529e7b0a6d9505b7a", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 2 Public Primary Certification Authority - G3" + ] + ], + "thumbprint": "92a9d9833fe1944db366e8bfae7a95b6480c2d6c6c2a1be65d4236b608fca1bb", + "type": "X.509", + "valid_from": "1999-10-01T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "945bbc825ea554f489d1fd51a73ddf2ea624ac7019a05205225c22a78ccfa8b4": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A3:41:06:AC:90:6D:D1:4A:EB:75:A5:4A:10:99:B3:B1:A1:8B:4A:F7" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global ECC P256 Certification Authority" + ] + ], + "references": {}, + "serial_number": "0d6a5f083f285c3e5195df5d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global ECC P256 Certification Authority" + ] + ], + "thumbprint": "945bbc825ea554f489d1fd51a73ddf2ea624ac7019a05205225c22a78ccfa8b4", + "type": "X.509", + "valid_from": "2017-08-23T19:35:10Z", + "valid_to": "2042-08-23T19:35:10Z", + "violations": [] + }, + "960adf0063e96356750c2965dd0a0867da0b9cbd6e77714aeafb2349ab393da3": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://www2.public-trust.com/crl/ct/ctroot.crl" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "B6:08:7B:0D:7A:CC:AC:20:4C:86:56:32:5E:CF:AB:6E:85:2D:70:57" + } + ], + "issuer": [ + [ + "organizationName", + "Cybertrust, Inc" + ], + [ + "commonName", + "Cybertrust Global Root" + ] + ], + "references": {}, + "serial_number": "0400000000010f85aa2d48", + "size": 0, + "subject": [ + [ + "organizationName", + "Cybertrust, Inc" + ], + [ + "commonName", + "Cybertrust Global Root" + ] + ], + "thumbprint": "960adf0063e96356750c2965dd0a0867da0b9cbd6e77714aeafb2349ab393da3", + "type": "X.509", + "valid_from": "2006-12-15T08:00:00Z", + "valid_to": "2021-12-15T08:00:00Z", + "violations": [] + }, + "96b83488b072241cd68b302dfae17618259ba44192c98277a6bd87bd3082910a": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "DNS:localhost1, DNS:localhost2, DNS:localhost" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment, Key Agreement" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "4E:54:63:95:A1:58:0C:FA:BD:3E:58:26:AF:AF:A4:F3:66:1A:CB:25" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0e4db9c624b0", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "localhost.nn" + ] + ], + "thumbprint": "96b83488b072241cd68b302dfae17618259ba44192c98277a6bd87bd3082910a", + "type": "X.509", + "valid_from": "2019-11-02T12:53:25Z", + "valid_to": "2028-01-19T12:53:25Z", + "violations": [] + }, + "96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "79:B4:59:E6:7B:B6:E5:E4:01:73:80:08:88:C8:1A:58:F6:E9:9B:6E" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Internet Security Research Group" + ], + [ + "commonName", + "ISRG Root X1" + ] + ], + "references": {}, + "serial_number": "8210cfb0d240e3594463e0bb63828b00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Internet Security Research Group" + ], + [ + "commonName", + "ISRG Root X1" + ] + ], + "thumbprint": "96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6", + "type": "X.509", + "valid_from": "2015-06-04T11:04:38Z", + "valid_to": "2035-06-04T11:04:38Z", + "violations": [] + }, + "97552015f5ddfc3c8788c006944555408894450084f100867086bc1a2bb58dc8": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "99:E0:19:67:0D:62:DB:76:B3:DA:3D:B8:5B:E8:FD:42:D2:31:0E:87" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global Certification Authority" + ] + ], + "references": {}, + "serial_number": "05f70e86da49f346352ebab2", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "Illinois" + ], + [ + "localityName", + "Chicago" + ], + [ + "organizationName", + "Trustwave Holdings, Inc." + ], + [ + "commonName", + "Trustwave Global Certification Authority" + ] + ], + "thumbprint": "97552015f5ddfc3c8788c006944555408894450084f100867086bc1a2bb58dc8", + "type": "X.509", + "valid_from": "2017-08-23T19:34:12Z", + "valid_to": "2042-08-23T19:34:12Z", + "violations": [] + }, + "9a114025197c5bb95d94e63d55cd43790847b646b23cdf11ada4a00eff15fb48": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C9:80:77:E0:62:92:82:F5:46:9C:F3:BA:F7:4C:C3:DE:B8:A3:AD:39" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "NO" + ], + [ + "organizationName", + "Buypass AS-983163327" + ], + [ + "commonName", + "Buypass Class 2 Root CA" + ] + ], + "references": {}, + "serial_number": "02", + "size": 0, + "subject": [ + [ + "countryName", + "NO" + ], + [ + "organizationName", + "Buypass AS-983163327" + ], + [ + "commonName", + "Buypass Class 2 Root CA" + ] + ], + "thumbprint": "9a114025197c5bb95d94e63d55cd43790847b646b23cdf11ada4a00eff15fb48", + "type": "X.509", + "valid_from": "2010-10-26T08:38:03Z", + "valid_to": "2040-10-26T08:38:03Z", + "violations": [] + }, + "9a296a5182d1d451a2e37f439b74daafa267523329f90f9a0d2007c334e23c9a": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "DC:2E:1F:D1:61:37:79:E4:AB:D5:D5:B3:12:71:68:3D:6A:68:9C:22" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "DC:2E:1F:D1:61:37:79:E4:AB:D5:D5:B3:12:71:68:3D:6A:68:9C:22" + } + ], + "issuer": [ + [ + "countryName", + "AT" + ], + [ + "organizationName", + "e-commerce monitoring GmbH" + ], + [ + "commonName", + "GLOBALTRUST 2020" + ] + ], + "references": {}, + "serial_number": "5a4bbd5afb4f8a5bfa65e5", + "size": 0, + "subject": [ + [ + "countryName", + "AT" + ], + [ + "organizationName", + "e-commerce monitoring GmbH" + ], + [ + "commonName", + "GLOBALTRUST 2020" + ] + ], + "thumbprint": "9a296a5182d1d451a2e37f439b74daafa267523329f90f9a0d2007c334e23c9a", + "type": "X.509", + "valid_from": "2020-02-10T00:00:00Z", + "valid_to": "2040-06-10T00:00:00Z", + "violations": [] + }, + "9a6ec012e1a7da9dbe34194d478ad7c0db1822fb071df12981496ed104384113": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "Authority Information Access", + "value": "CA Issuers - URI:http://www.accv.es/fileadmin/Archivos/certificados/raizaccv1.crt\nOCSP - URI:http://ocsp.accv.es" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D2:87:B4:E3:DF:37:27:93:55:F6:56:EA:81:E5:36:CC:8C:1E:3F:BD" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "D2:87:B4:E3:DF:37:27:93:55:F6:56:EA:81:E5:36:CC:8C:1E:3F:BD" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n User Notice:\n Explicit Text: \n CPS: http://www.accv.es/legislacion_c.htm" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://www.accv.es/fileadmin/Archivos/certificados/raizaccv1_der.crl" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:accv@accv.es" + } + ], + "issuer": [ + [ + "commonName", + "ACCVRAIZ1" + ], + [ + "organizationalUnitName", + "PKIACCV" + ], + [ + "organizationName", + "ACCV" + ], + [ + "countryName", + "ES" + ] + ], + "references": {}, + "serial_number": "5ec3b7a6437fa4e0", + "size": 0, + "subject": [ + [ + "commonName", + "ACCVRAIZ1" + ], + [ + "organizationalUnitName", + "PKIACCV" + ], + [ + "organizationName", + "ACCV" + ], + [ + "countryName", + "ES" + ] + ], + "thumbprint": "9a6ec012e1a7da9dbe34194d478ad7c0db1822fb071df12981496ed104384113", + "type": "X.509", + "valid_from": "2011-05-05T09:37:37Z", + "valid_to": "2030-12-31T09:37:37Z", + "violations": [] + }, + "9acfab7e43c8d880d06b262a94deeee4b4659989c3d0caf19baf6405e41ab7df": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "1.3.6.1.5.5.7.1.12", + "value": "0_.].[0Y0W0U..image/gif0!0.0...+..............k...j.H.,{..0%.#http://logo.verisign.com/vslogo.gif" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "7F:D3:65:A7:C2:DD:EC:BB:F0:30:09:F3:43:39:FA:02:AF:33:31:33" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2006 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G5" + ] + ], + "references": {}, + "serial_number": "18dad19e267de8bb4a2158cdcc6b3b4a", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 2006 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G5" + ] + ], + "thumbprint": "9acfab7e43c8d880d06b262a94deeee4b4659989c3d0caf19baf6405e41ab7df", + "type": "X.509", + "valid_from": "2006-11-08T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "9bea11c976fe014764c1be56a6f914b5a560317abd9988393382e5161aa0493c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "81:C4:8C:CC:F5:E4:30:FF:A5:0C:08:5F:8C:15:67:21:74:01:DF:DF" + } + ], + "issuer": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "UniTrust" + ], + [ + "commonName", + "UCA Global G2 Root" + ] + ], + "references": {}, + "serial_number": "5ddfb1da5aa3ed5dbe5a6520650390ef", + "size": 0, + "subject": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "UniTrust" + ], + [ + "commonName", + "UCA Global G2 Root" + ] + ], + "thumbprint": "9bea11c976fe014764c1be56a6f914b5a560317abd9988393382e5161aa0493c", + "type": "X.509", + "valid_from": "2016-03-11T00:00:00Z", + "valid_to": "2040-12-31T00:00:00Z", + "violations": [] + }, + "9d190b2e314566685be8a889e27aa8c7d7ae1d8aaddba3c1ecf9d24863cd34b9": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "33:41:E8:C8:39:12:15:93:48:F2:96:32:2E:5A:F5:DA:94:5F:53:60" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 1 Public Primary Certification Authority - G6" + ] + ], + "references": {}, + "serial_number": "243275f21d2fd20933f7b46acad0f398", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 1 Public Primary Certification Authority - G6" + ] + ], + "thumbprint": "9d190b2e314566685be8a889e27aa8c7d7ae1d8aaddba3c1ecf9d24863cd34b9", + "type": "X.509", + "valid_from": "2011-10-18T00:00:00Z", + "valid_to": "2037-12-01T23:59:59Z", + "violations": [] + }, + "a0234f3bc8527ca5628eec81ad5d69895da5680dc91d1cb8477f33f878b95b0b": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "76:F3:55:E1:FA:A4:36:FB:F0:9F:5C:62:71:ED:3C:F4:47:38:10:2B" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Universal CA 2" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Universal CA 2" + ] + ], + "thumbprint": "a0234f3bc8527ca5628eec81ad5d69895da5680dc91d1cb8477f33f878b95b0b", + "type": "X.509", + "valid_from": "2004-03-04T05:00:00Z", + "valid_to": "2029-03-04T05:00:00Z", + "violations": [] + }, + "a040929a02ce53b4acf4f2ffc6981ce4496f755e6d45fe0b2a692bcd52523f36": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "71:15:67:C8:C8:C9:BD:75:5D:72:D0:38:18:6A:9D:F3:71:24:54:0B" + } + ], + "issuer": [ + [ + "countryName", + "GR" + ], + [ + "localityName", + "Athens" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions RootCA 2015" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "GR" + ], + [ + "localityName", + "Athens" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions RootCA 2015" + ] + ], + "thumbprint": "a040929a02ce53b4acf4f2ffc6981ce4496f755e6d45fe0b2a692bcd52523f36", + "type": "X.509", + "valid_from": "2015-07-07T10:11:21Z", + "valid_to": "2040-06-30T10:11:21Z", + "violations": [] + }, + "a0459b9f63b22559f5fa5d4c6db3f9f72ff19342033578f073bf1d1b46cbb912": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "DA:BB:2E:AA:B0:0C:B8:88:26:51:74:5C:6D:03:D3:C0:D8:8F:7A:D6" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "DA:BB:2E:AA:B0:0C:B8:88:26:51:74:5C:6D:03:D3:C0:D8:8F:7A:D6" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Universal CA" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Universal CA" + ] + ], + "thumbprint": "a0459b9f63b22559f5fa5d4c6db3f9f72ff19342033578f073bf1d1b46cbb912", + "type": "X.509", + "valid_from": "2004-03-04T05:00:00Z", + "valid_to": "2029-03-04T05:00:00Z", + "violations": [] + }, + "a1339d33281a0b56e557d3d32b1ce7f9367eb094bd5fa72a7e5004c8ded7cafe": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "2E:16:A9:4A:18:B5:CB:CC:F5:6F:50:F3:23:5F:F8:5D:E7:AC:F0:C8" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Krajowa Izba Rozliczeniowa S.A." + ], + [ + "commonName", + "SZAFIR ROOT CA2" + ] + ], + "references": {}, + "serial_number": "3e8a5d07ec55d232d5b7e3b65f01eb2ddce4d6e4", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Krajowa Izba Rozliczeniowa S.A." + ], + [ + "commonName", + "SZAFIR ROOT CA2" + ] + ], + "thumbprint": "a1339d33281a0b56e557d3d32b1ce7f9367eb094bd5fa72a7e5004c8ded7cafe", + "type": "X.509", + "valid_from": "2015-10-19T07:43:30Z", + "valid_to": "2035-10-19T07:43:30Z", + "violations": [] + }, + "a1a86d04121eb87f027c66f53303c28e5739f943fc84b38ad6af009035dd9457": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "3F:90:C8:7D:C7:15:6F:F3:24:8F:A9:C3:2F:4B:A2:0F:21:B2:2F:E7" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20CA%203%202013,O=D-Trust%20GmbH,C=DE?certificaterevocationlist\nFull Name:\n URI:http://crl.d-trust.net/crl/d-trust_root_ca_3_2013.crl" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root CA 3 2013" + ] + ], + "references": {}, + "serial_number": "0fddac", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root CA 3 2013" + ] + ], + "thumbprint": "a1a86d04121eb87f027c66f53303c28e5739f943fc84b38ad6af009035dd9457", + "type": "X.509", + "valid_from": "2013-09-20T08:25:51Z", + "valid_to": "2028-09-20T08:25:51Z", + "violations": [] + }, + "a4310d50af18a6447190372a86afaf8b951ffb431d837f1e5688b45971ed1557": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9A:D8:00:30:00:E7:6B:7F:85:18:EE:8B:B6:CE:8A:0C:F8:11:E1:BB" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "(c) 2007 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA - G2" + ] + ], + "references": {}, + "serial_number": "35fc265cd9844fc93d263d579baed756", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "thawte, Inc." + ], + [ + "organizationalUnitName", + "(c) 2007 thawte, Inc. - For authorized use only" + ], + [ + "commonName", + "thawte Primary Root CA - G2" + ] + ], + "thumbprint": "a4310d50af18a6447190372a86afaf8b951ffb431d837f1e5688b45971ed1557", + "type": "X.509", + "valid_from": "2007-11-05T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "a45ede3bbbf09c8ae15c72efc07268d693a21c996fd51e67ca079460fd6d8873": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "Authority Information Access", + "value": "OCSP - URI:https://ocsp.quovadisoffshore.com" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.8024.0.1\n User Notice:\n Explicit Text: Reliance on the QuoVadis Root Certificate by any party assumes acceptance of the then applicable standard terms and conditions of use, certification practices, and the QuoVadis Certificate Policy.\n CPS: http://www.quovadis.bm" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "8B:4B:6D:ED:D3:29:B9:06:19:EC:39:39:A9:F0:97:84:6A:CB:EF:DF" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:8B:4B:6D:ED:D3:29:B9:06:19:EC:39:39:A9:F0:97:84:6A:CB:EF:DF\nDirName:/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority\nserial:3A:B6:50:8B" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "organizationalUnitName", + "Root Certification Authority" + ], + [ + "commonName", + "QuoVadis Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "3ab6508b", + "size": 0, + "subject": [ + [ + "countryName", + "BM" + ], + [ + "organizationName", + "QuoVadis Limited" + ], + [ + "organizationalUnitName", + "Root Certification Authority" + ], + [ + "commonName", + "QuoVadis Root Certification Authority" + ] + ], + "thumbprint": "a45ede3bbbf09c8ae15c72efc07268d693a21c996fd51e67ca079460fd6d8873", + "type": "X.509", + "valid_from": "2001-03-19T18:33:33Z", + "valid_to": "2021-03-17T18:33:33Z", + "violations": [] + }, + "a6c51e0da5ca0a9309d2e4c0e40c2af9107aae8203857fe198e3e769e343085c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D1:09:D0:E9:D7:CE:79:74:54:F9:3A:30:B3:F4:6D:2C:03:03:1B:68" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://www.certicamara.com/dpc/\n User Notice:\n Explicit Text: Limitaciones de garant�as de este certificado se pueden encontrar en la DPC." + } + ], + "issuer": [ + [ + "countryName", + "CO" + ], + [ + "organizationName", + "Sociedad Cameral de Certificación Digital - Certicámara S.A." + ], + [ + "commonName", + "AC Raíz Certicámara S.A." + ] + ], + "references": {}, + "serial_number": "077e52937be015e357f0698ccbec0c", + "size": 0, + "subject": [ + [ + "countryName", + "CO" + ], + [ + "organizationName", + "Sociedad Cameral de Certificación Digital - Certicámara S.A." + ], + [ + "commonName", + "AC Raíz Certicámara S.A." + ] + ], + "thumbprint": "a6c51e0da5ca0a9309d2e4c0e40c2af9107aae8203857fe198e3e769e343085c", + "type": "X.509", + "valid_from": "2006-11-27T20:46:29Z", + "valid_to": "2030-04-02T21:42:02Z", + "violations": [] + }, + "a84b12e9334b9d518d8ddcf5eb7cf4d8d186dccd752e9fb6fc94fbe599eb3a12": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "DNS:localhost.nn" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment, Key Agreement" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "DA:FC:ED:BF:82:CB:15:D8:7E:A1:4B:98:23:8E:83:2A:11:6E:49:C9" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0dfb66caf19e", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "localhost.nn" + ] + ], + "thumbprint": "a84b12e9334b9d518d8ddcf5eb7cf4d8d186dccd752e9fb6fc94fbe599eb3a12", + "type": "X.509", + "valid_from": "2018-09-19T07:14:12Z", + "valid_to": "2026-12-06T07:14:12Z", + "violations": [] + }, + "ae4457b40d9eda96677b0d3c92d57b5177abd7ac1037958356d1e094518be5f2": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://fedir.comsign.co.il/crl/ComSignCA.crl" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "4B:01:9B:3E:56:1A:65:36:76:CB:7B:97:AA:92:05:EE:32:E7:28:31" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "4B:01:9B:3E:56:1A:65:36:76:CB:7B:97:AA:92:05:EE:32:E7:28:31" + } + ], + "issuer": [ + [ + "commonName", + "ComSign CA" + ], + [ + "organizationName", + "ComSign" + ], + [ + "countryName", + "IL" + ] + ], + "references": {}, + "serial_number": "1413968314558cea7b63e5fc34877744", + "size": 0, + "subject": [ + [ + "commonName", + "ComSign CA" + ], + [ + "organizationName", + "ComSign" + ], + [ + "countryName", + "IL" + ] + ], + "thumbprint": "ae4457b40d9eda96677b0d3c92d57b5177abd7ac1037958356d1e094518be5f2", + "type": "X.509", + "valid_from": "2004-03-24T11:32:18Z", + "valid_to": "2029-03-19T15:02:18Z", + "violations": [] + }, + "b0bfd52bb0d7d9bd92bf5d4dc13da255c02c542f378365ea893911f55e55f23c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "2E:E3:DB:B2:49:D0:9C:54:79:5C:FA:27:2A:FE:CC:4E:D2:E8:4E:54" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "2E:E3:DB:B2:49:D0:9C:54:79:5C:FA:27:2A:FE:CC:4E:D2:E8:4E:54" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Ankara" + ], + [ + "organizationName", + "E-Tuğra EBG Bilişim Teknolojileri ve Hizmetleri A.Ş." + ], + [ + "organizationalUnitName", + "E-Tugra Sertifikasyon Merkezi" + ], + [ + "commonName", + "E-Tugra Certification Authority" + ] + ], + "references": {}, + "serial_number": "6a683e9c519bcb53", + "size": 0, + "subject": [ + [ + "countryName", + "TR" + ], + [ + "localityName", + "Ankara" + ], + [ + "organizationName", + "E-Tuğra EBG Bilişim Teknolojileri ve Hizmetleri A.Ş." + ], + [ + "organizationalUnitName", + "E-Tugra Sertifikasyon Merkezi" + ], + [ + "commonName", + "E-Tugra Certification Authority" + ] + ], + "thumbprint": "b0bfd52bb0d7d9bd92bf5d4dc13da255c02c542f378365ea893911f55e55f23c", + "type": "X.509", + "valid_from": "2013-03-05T12:09:48Z", + "valid_to": "2023-03-03T12:09:48Z", + "violations": [] + }, + "b478b812250df878635c2aa7ec7d155eaa625ee82916e2cd294361886cd1fbd4": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C4:79:CA:8E:A1:4E:03:1D:1C:DC:6B:DB:31:5B:94:3E:3F:30:7F:2D" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "organizationalUnitName", + "(c) 2008 GeoTrust Inc. - For authorized use only" + ], + [ + "commonName", + "GeoTrust Primary Certification Authority - G3" + ] + ], + "references": {}, + "serial_number": "15ac6e9419b2794b41f627a9c3180f1f", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "organizationalUnitName", + "(c) 2008 GeoTrust Inc. - For authorized use only" + ], + [ + "commonName", + "GeoTrust Primary Certification Authority - G3" + ] + ], + "thumbprint": "b478b812250df878635c2aa7ec7d155eaa625ee82916e2cd294361886cd1fbd4", + "type": "X.509", + "valid_from": "2008-04-02T00:00:00Z", + "valid_to": "2037-12-01T23:59:59Z", + "violations": [] + }, + "b6191a50d0c3977f7da99bcdaac86a227daeb9679ec70ba3b0c9d92271c170d3": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "31:C3:79:1B:BA:F5:53:D7:17:E0:89:7A:2D:17:6C:0A:B3:2B:9D:33" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:5" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "Deutsche Telekom AG" + ], + [ + "organizationalUnitName", + "T-TeleSec Trust Center" + ], + [ + "commonName", + "Deutsche Telekom Root CA 2" + ] + ], + "references": {}, + "serial_number": "26", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "Deutsche Telekom AG" + ], + [ + "organizationalUnitName", + "T-TeleSec Trust Center" + ], + [ + "commonName", + "Deutsche Telekom Root CA 2" + ] + ], + "thumbprint": "b6191a50d0c3977f7da99bcdaac86a227daeb9679ec70ba3b0c9d92271c170d3", + "type": "X.509", + "valid_from": "1999-07-09T12:11:00Z", + "valid_to": "2019-07-09T23:59:00Z", + "violations": [] + }, + "b676f2eddae8775cd36cb0f63cd1d4603961f49e6265ba013a2f0307b6d0b804": { + "algorithm": "sha512WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B6:A1:54:39:02:C3:A0:3F:8E:8A:BC:FA:D4:F8:1C:A6:D1:3A:0E:FD" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Technologies S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Network CA 2" + ] + ], + "references": {}, + "serial_number": "21d6d04a4f250fc93237fcaa5e128de9", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Technologies S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Network CA 2" + ] + ], + "thumbprint": "b676f2eddae8775cd36cb0f63cd1d4603961f49e6265ba013a2f0307b6d0b804", + "type": "X.509", + "valid_from": "2011-10-06T08:39:56Z", + "valid_to": "2046-10-06T08:39:56Z", + "violations": [] + }, + "b7c36231706e81078c367cb896198f1e3208dd926949dd8f5709a410f75b6292": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "47:77:C3:14:8B:62:39:0C:C9:6F:E1:50:4D:D0:10:58:DC:95:88:6D" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "47:77:C3:14:8B:62:39:0C:C9:6F:E1:50:4D:D0:10:58:DC:95:88:6D" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G3" + ] + ], + "references": {}, + "serial_number": "1120e6f84cfc24b0be0540acda831b34603f", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "OpenTrust" + ], + [ + "commonName", + "OpenTrust Root CA G3" + ] + ], + "thumbprint": "b7c36231706e81078c367cb896198f1e3208dd926949dd8f5709a410f75b6292", + "type": "X.509", + "valid_from": "2014-05-26T00:00:00Z", + "valid_to": "2038-01-15T00:00:00Z", + "violations": [] + }, + "bc104f15a48be709dca542a7e1d4b9df6f054527e802eaa92d595444258afe71": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A6:91:42:FD:13:61:4A:23:9E:08:A4:29:E5:D8:13:04:23:EE:41:25" + }, + { + "is_critical": false, + "name": "X509v3 Name Constraints", + "value": "Permitted:\n DNS:.gr\n DNS:.eu\n DNS:.edu\n DNS:.org\n email:.gr\n email:.eu\n email:.edu\n email:.org" + } + ], + "issuer": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions RootCA 2011" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions Cert. Authority" + ], + [ + "commonName", + "Hellenic Academic and Research Institutions RootCA 2011" + ] + ], + "thumbprint": "bc104f15a48be709dca542a7e1d4b9df6f054527e802eaa92d595444258afe71", + "type": "X.509", + "valid_from": "2011-12-06T13:49:52Z", + "valid_to": "2031-12-01T13:49:52Z", + "violations": [] + }, + "bc4d809b15189d78db3e1d8cf4f9726a795da1643ca5f1358e1ddb0edc0d7eb3": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FB:5A:48:D0:80:20:40:F2:A8:E9:00:07:69:19:77:A7:E6:C3:F4:CF" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Inc" + ], + [ + "commonName", + "emSign ECC Root CA - C3" + ] + ], + "references": {}, + "serial_number": "7b71b68256b8127c9ca8", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "emSign PKI" + ], + [ + "organizationName", + "eMudhra Inc" + ], + [ + "commonName", + "emSign ECC Root CA - C3" + ] + ], + "thumbprint": "bc4d809b15189d78db3e1d8cf4f9726a795da1643ca5f1358e1ddb0edc0d7eb3", + "type": "X.509", + "valid_from": "2018-02-18T18:30:00Z", + "valid_to": "2043-02-18T18:30:00Z", + "violations": [] + }, + "bd71fdf6da97e4cf62d1647add2581b07d79adf8397eb4ecba9c5e8488821423": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9A:AF:29:7A:C0:11:35:35:26:51:30:00:C3:6A:FE:40:D5:AE:D6:3C" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Premium ECC" + ] + ], + "references": {}, + "serial_number": "7497258ac73f7a54", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "AffirmTrust" + ], + [ + "commonName", + "AffirmTrust Premium ECC" + ] + ], + "thumbprint": "bd71fdf6da97e4cf62d1647add2581b07d79adf8397eb4ecba9c5e8488821423", + "type": "X.509", + "valid_from": "2010-01-29T14:20:24Z", + "valid_to": "2040-12-31T14:20:24Z", + "violations": [] + }, + "be6c4da2bbb9ba59b6f3939768374246c3c005993fa98f020d1dedbed48a81d5": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "17:A0:CD:C1:E4:41:B6:3A:5B:3B:CB:45:9D:BD:1C:C2:98:FA:86:58" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 2.16.756.1.89.1.3.1.1\n CPS: http://repository.swisssign.com/" + } + ], + "issuer": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Silver CA - G2" + ] + ], + "references": {}, + "serial_number": "4f1bd42f54bb2f4b", + "size": 0, + "subject": [ + [ + "countryName", + "CH" + ], + [ + "organizationName", + "SwissSign AG" + ], + [ + "commonName", + "SwissSign Silver CA - G2" + ] + ], + "thumbprint": "be6c4da2bbb9ba59b6f3939768374246c3c005993fa98f020d1dedbed48a81d5", + "type": "X.509", + "valid_from": "2006-10-25T08:32:46Z", + "valid_to": "2036-10-25T08:32:46Z", + "violations": [] + }, + "beb00b30839b9bc32c32e4447905950641f26421b15ed089198b518ae2ea1b99": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "87:11:15:08:D1:AA:C1:78:0C:B1:AF:CE:C6:C9:90:EF:BF:30:04:C0" + } + ], + "issuer": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "Microsec Ltd." + ], + [ + "organizationIdentifier", + "VATHU-23584497" + ], + [ + "commonName", + "e-Szigno Root CA 2017" + ] + ], + "references": {}, + "serial_number": "015448ef21fd97590df5040a", + "size": 0, + "subject": [ + [ + "countryName", + "HU" + ], + [ + "localityName", + "Budapest" + ], + [ + "organizationName", + "Microsec Ltd." + ], + [ + "organizationIdentifier", + "VATHU-23584497" + ], + [ + "commonName", + "e-Szigno Root CA 2017" + ] + ], + "thumbprint": "beb00b30839b9bc32c32e4447905950641f26421b15ed089198b518ae2ea1b99", + "type": "X.509", + "valid_from": "2017-08-22T12:07:06Z", + "valid_to": "2042-08-22T12:07:06Z", + "violations": [] + }, + "bec94911c2955676db6c0a550986d76e3ba005667c442c9762b4fbb773de228c": { + "algorithm": "ecdsa-with-SHA256", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "54:B0:7B:AD:45:B8:E2:40:7F:FB:0A:6E:FB:BE:33:C9:3C:A3:84:D5" + } + ], + "issuer": [ + [ + "organizationalUnitName", + "GlobalSign ECC Root CA - R4" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "references": {}, + "serial_number": "2a38a41c960a04de42b228a50be8349802", + "size": 0, + "subject": [ + [ + "organizationalUnitName", + "GlobalSign ECC Root CA - R4" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "thumbprint": "bec94911c2955676db6c0a550986d76e3ba005667c442c9762b4fbb773de228c", + "type": "X.509", + "valid_from": "2012-11-13T00:00:00Z", + "valid_to": "2038-01-19T03:14:07Z", + "violations": [] + }, + "bf0feefb9e3a581ad5f9e9db7589985743d261085c4d314f6f5d7259aa421612": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "5B:F8:4D:4F:B2:A5:86:D4:3A:D2:F1:63:9A:A0:BE:09:F6:57:B7:DE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "Japan Certification Services, Inc." + ], + [ + "commonName", + "SecureSign RootCA11" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "Japan Certification Services, Inc." + ], + [ + "commonName", + "SecureSign RootCA11" + ] + ], + "thumbprint": "bf0feefb9e3a581ad5f9e9db7589985743d261085c4d314f6f5d7259aa421612", + "type": "X.509", + "valid_from": "2009-04-08T04:56:47Z", + "valid_to": "2029-04-08T04:56:47Z", + "violations": [] + }, + "bfd88fe1101c41ae3e801bf8be56350ee9bad1a6b9bd515edc5c6d5b8711ac44": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "6A:38:5B:26:8D:DE:8B:5A:F2:4F:7A:54:83:19:18:E3:08:35:A6:BA" + } + ], + "issuer": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "TAIWAN-CA" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "TWCA Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "TAIWAN-CA" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "TWCA Root Certification Authority" + ] + ], + "thumbprint": "bfd88fe1101c41ae3e801bf8be56350ee9bad1a6b9bd515edc5c6d5b8711ac44", + "type": "X.509", + "valid_from": "2008-08-28T07:24:33Z", + "valid_to": "2030-12-31T15:59:59Z", + "violations": [] + }, + "bfff8fd04433487d6a8aa60c1a29767a9fc2bbb05e420f713a13b992891d3893": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E2:C9:40:9F:4D:CE:E8:9A:A1:7C:CF:0E:3F:65:C5:29:88:6A:19:51" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "GUANG DONG CERTIFICATE AUTHORITY CO.,LTD." + ], + [ + "commonName", + "GDCA TrustAUTH R5 ROOT" + ] + ], + "references": {}, + "serial_number": "7d0997fef047ea7a", + "size": 0, + "subject": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "GUANG DONG CERTIFICATE AUTHORITY CO.,LTD." + ], + [ + "commonName", + "GDCA TrustAUTH R5 ROOT" + ] + ], + "thumbprint": "bfff8fd04433487d6a8aa60c1a29767a9fc2bbb05e420f713a13b992891d3893", + "type": "X.509", + "valid_from": "2014-11-26T05:13:15Z", + "valid_to": "2040-12-31T15:59:59Z", + "violations": [] + }, + "c0a6f4dc63a24bfdcf54ef2a6a082a0a72de35803e2ff5ff527ae5d87206dfd5": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "1E:0C:F7:B6:67:F2:E1:92:26:09:45:C0:55:39:2E:77:3F:42:4A:A2" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "setCext-hashedRoot", + "value": "0/0-...0...+......0...g*.....E...\nV|.[x....S....." + } + ], + "issuer": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "Chunghwa Telecom Co., Ltd." + ], + [ + "organizationalUnitName", + "ePKI Root Certification Authority" + ] + ], + "references": {}, + "serial_number": "15c8bd65475cafb897005ee406d2bc9d", + "size": 0, + "subject": [ + [ + "countryName", + "TW" + ], + [ + "organizationName", + "Chunghwa Telecom Co., Ltd." + ], + [ + "organizationalUnitName", + "ePKI Root Certification Authority" + ] + ], + "thumbprint": "c0a6f4dc63a24bfdcf54ef2a6a082a0a72de35803e2ff5ff527ae5d87206dfd5", + "type": "X.509", + "valid_from": "2004-12-20T02:31:27Z", + "valid_to": "2034-12-20T02:31:27Z", + "violations": [] + }, + "c1b48299aba5208fe9630ace55ca68a03eda5a519c8802a0d3a673be8f8e557d": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "BA:FA:71:25:79:8B:57:41:25:21:86:0B:71:EB:B2:64:0E:8B:21:67" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "BA:FA:71:25:79:8B:57:41:25:21:86:0B:71:EB:B2:64:0E:8B:21:67" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "organizationName", + "Trustis Limited" + ], + [ + "organizationalUnitName", + "Trustis FPS Root CA" + ] + ], + "references": {}, + "serial_number": "1b1fadb620f924d3366bf7c7f18ca059", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "organizationName", + "Trustis Limited" + ], + [ + "organizationalUnitName", + "Trustis FPS Root CA" + ] + ], + "thumbprint": "c1b48299aba5208fe9630ace55ca68a03eda5a519c8802a0d3a673be8f8e557d", + "type": "X.509", + "valid_from": "2003-12-23T12:14:06Z", + "valid_to": "2024-01-21T11:36:54Z", + "violations": [] + }, + "c3846bf24b9e93ca64274c0ec67c1ecc5e024ffcacd2d74019350e81fe546ae4": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D2:C4:B0:D2:91:D4:4C:11:71:B3:61:CB:3D:A1:FE:DD:A8:6A:D4:E3" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:D2:C4:B0:D2:91:D4:4C:11:71:B3:61:CB:3D:A1:FE:DD:A8:6A:D4:E3\nDirName:/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority\nserial:00" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "The Go Daddy Group, Inc." + ], + [ + "organizationalUnitName", + "Go Daddy Class 2 Certification Authority" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "The Go Daddy Group, Inc." + ], + [ + "organizationalUnitName", + "Go Daddy Class 2 Certification Authority" + ] + ], + "thumbprint": "c3846bf24b9e93ca64274c0ec67c1ecc5e024ffcacd2d74019350e81fe546ae4", + "type": "X.509", + "valid_from": "2004-06-29T17:06:20Z", + "valid_to": "2034-06-29T17:06:20Z", + "violations": [] + }, + "c45d7bb08e6d67e62e4235110b564e5f78fd92ef058c840aea4e6455d7585c60": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "BB:FF:CA:8E:23:9F:4F:99:CA:DB:E2:68:A6:A5:15:27:17:1E:D9:0E" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R2" + ] + ], + "references": {}, + "serial_number": "6e47a9c65ab3e720c5309a3f6852f26f", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Google Trust Services LLC" + ], + [ + "commonName", + "GTS Root R2" + ] + ], + "thumbprint": "c45d7bb08e6d67e62e4235110b564e5f78fd92ef058c840aea4e6455d7585c60", + "type": "X.509", + "valid_from": "2016-06-22T00:00:00Z", + "valid_to": "2036-06-22T00:00:00Z", + "violations": [] + }, + "c741f70f4b2a8d88bf2e71c14122ef53ef10eba0cfa5e64cfa20f418853073e0": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "09:CB:59:7F:86:B2:70:8F:1A:C3:39:E3:C0:D9:E9:BF:BB:4D:B2:23" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Microsoft Corporation" + ], + [ + "commonName", + "Microsoft RSA Root Certificate Authority 2017" + ] + ], + "references": {}, + "serial_number": "1ed397095fd8b4b347701eaabe7f45b3", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Microsoft Corporation" + ], + [ + "commonName", + "Microsoft RSA Root Certificate Authority 2017" + ] + ], + "thumbprint": "c741f70f4b2a8d88bf2e71c14122ef53ef10eba0cfa5e64cfa20f418853073e0", + "type": "X.509", + "valid_from": "2019-12-18T22:51:22Z", + "valid_to": "2042-07-18T23:00:23Z", + "violations": [] + }, + "ca42dd41745fd0b81eb902362cf9d8bf719da1bd1b1efc946f5b4c99f42c1b9e": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9B:E2:07:57:67:1C:1E:C0:6A:06:DE:59:B4:9A:2D:DF:DC:19:86:2E" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.globalsign.net/root-r2.crl" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "9B:E2:07:57:67:1C:1E:C0:6A:06:DE:59:B4:9A:2D:DF:DC:19:86:2E" + } + ], + "issuer": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R2" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "references": {}, + "serial_number": "0400000000010f8626e60d", + "size": 0, + "subject": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R2" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "thumbprint": "ca42dd41745fd0b81eb902362cf9d8bf719da1bd1b1efc946f5b4c99f42c1b9e", + "type": "X.509", + "valid_from": "2006-12-15T08:00:00Z", + "valid_to": "2021-12-15T08:00:00Z", + "violations": [] + }, + "cb3ccbb76031e5e0138f8dd39a23f9de47ffc35e43c1144cea27d46a5ab1cb5f": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "4E:22:54:20:18:95:E6:E3:6E:E6:0F:FA:FA:B9:12:ED:06:17:8F:39" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root G2" + ] + ], + "references": {}, + "serial_number": "033af1e6a711a9a0bb2864b11d09fae5", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "DigiCert Inc" + ], + [ + "organizationalUnitName", + "www.digicert.com" + ], + [ + "commonName", + "DigiCert Global Root G2" + ] + ], + "thumbprint": "cb3ccbb76031e5e0138f8dd39a23f9de47ffc35e43c1144cea27d46a5ab1cb5f", + "type": "X.509", + "valid_from": "2013-08-01T12:00:00Z", + "valid_to": "2038-01-15T12:00:00Z", + "violations": [] + }, + "cb627d18b58ad56dde331a30456bc65c601a4e9b18dedcea08e7daaa07815ff0": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "87:8C:20:95:C8:98:4A:D1:D6:80:06:4A:90:34:44:DF:1C:4D:BF:B0" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 2 Public Primary Certification Authority - G6" + ] + ], + "references": {}, + "serial_number": "64829efc371e745dfc97ff97c8b1ff41", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 2 Public Primary Certification Authority - G6" + ] + ], + "thumbprint": "cb627d18b58ad56dde331a30456bc65c601a4e9b18dedcea08e7daaa07815ff0", + "type": "X.509", + "valid_from": "2011-10-18T00:00:00Z", + "valid_to": "2037-12-01T23:59:59Z", + "violations": [] + }, + "cbb522d7b7f127ad6a0113865bdf1cd4102e7d0759af635a7cf4720dc963c53b": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "8F:F0:4B:7F:A8:2E:45:24:AE:4D:50:FA:63:9A:8B:DE:E2:DD:1B:BC" + } + ], + "issuer": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R3" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "references": {}, + "serial_number": "04000000000121585308a2", + "size": 0, + "subject": [ + [ + "organizationalUnitName", + "GlobalSign Root CA - R3" + ], + [ + "organizationName", + "GlobalSign" + ], + [ + "commonName", + "GlobalSign" + ] + ], + "thumbprint": "cbb522d7b7f127ad6a0113865bdf1cd4102e7d0759af635a7cf4720dc963c53b", + "type": "X.509", + "valid_from": "2009-03-18T10:00:00Z", + "valid_to": "2029-03-18T10:00:00Z", + "violations": [] + }, + "cbb5af185e942a2402f9eacbc0ed5bb876eea3c1223623d00447e4f3ba554b65": { + "algorithm": "sha1WithRSAEncryption", + "extensions": null, + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 1 Public Primary Certification Authority - G3" + ] + ], + "references": {}, + "serial_number": "8b5b75568454850b00cfaf3848ceb1a4", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 1 Public Primary Certification Authority - G3" + ] + ], + "thumbprint": "cbb5af185e942a2402f9eacbc0ed5bb876eea3c1223623d00447e4f3ba554b65", + "type": "X.509", + "valid_from": "1999-10-01T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "cbb9c44d84b8043e1050ea31a69f514955d7bfd2e2c6b49301019ad61d9f5058": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "31:0A:90:8F:B6:C6:9D:D2:44:4B:80:B5:A2:E6:1F:B1:12:4F:1B:95" + } + ], + "issuer": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "commonName", + "GlobalSign Root E46" + ] + ], + "references": {}, + "serial_number": "11d2bbba336ed4bce62468c50d841d98e843", + "size": 0, + "subject": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "commonName", + "GlobalSign Root E46" + ] + ], + "thumbprint": "cbb9c44d84b8043e1050ea31a69f514955d7bfd2e2c6b49301019ad61d9f5058", + "type": "X.509", + "valid_from": "2019-03-20T00:00:00Z", + "valid_to": "2046-03-20T00:00:00Z", + "violations": [] + }, + "cecddc905099d8dadfc5b1d209b737cbe2c18cfb2c10c0ff0bcf0d3286fc1aa2": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.20.2", + "value": "...C.A" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C6:4F:A2:3D:06:63:84:09:9C:CE:62:E4:04:AC:8D:5C:B5:E9:B6:1B" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.xrampsecurity.com/XGCA.crl" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "www.xrampsecurity.com" + ], + [ + "organizationName", + "XRamp Security Services Inc" + ], + [ + "commonName", + "XRamp Global Certification Authority" + ] + ], + "references": {}, + "serial_number": "50946cec18ead59c4dd597ef758fa0ad", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationalUnitName", + "www.xrampsecurity.com" + ], + [ + "organizationName", + "XRamp Security Services Inc" + ], + [ + "commonName", + "XRamp Global Certification Authority" + ] + ], + "thumbprint": "cecddc905099d8dadfc5b1d209b737cbe2c18cfb2c10c0ff0bcf0d3286fc1aa2", + "type": "X.509", + "valid_from": "2004-11-01T17:14:04Z", + "valid_to": "2035-01-01T05:37:19Z", + "violations": [] + }, + "d40e9c86cd8fe468c1776959f49ea774fa548684b6c406f3909261f4dce2575c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "EE:6B:49:3C:7A:3F:0D:E3:B1:09:B7:8A:C8:AB:19:9F:73:33:50:E7" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "EE:6B:49:3C:7A:3F:0D:E3:B1:09:B7:8A:C8:AB:19:9F:73:33:50:E7" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor RootCert CA-1" + ] + ], + "references": {}, + "serial_number": "da9bec71f303b019", + "size": 0, + "subject": [ + [ + "countryName", + "PA" + ], + [ + "stateOrProvinceName", + "Panama" + ], + [ + "localityName", + "Panama City" + ], + [ + "organizationName", + "TrustCor Systems S. de R.L." + ], + [ + "organizationalUnitName", + "TrustCor Certificate Authority" + ], + [ + "commonName", + "TrustCor RootCert CA-1" + ] + ], + "thumbprint": "d40e9c86cd8fe468c1776959f49ea774fa548684b6c406f3909261f4dce2575c", + "type": "X.509", + "valid_from": "2016-02-04T12:32:16Z", + "valid_to": "2029-12-31T17:23:16Z", + "violations": [] + }, + "d43af9b35473755c9684fc06d7d8cb70ee5c28e773fb294eb41ee71722924d24": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D9:74:3A:E4:30:3D:0D:F7:12:DC:7E:5A:05:9F:1E:34:9A:F7:E1:14" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "UniTrust" + ], + [ + "commonName", + "UCA Extended Validation Root" + ] + ], + "references": {}, + "serial_number": "4fd22b8ff564c8339e4f345866237060", + "size": 0, + "subject": [ + [ + "countryName", + "CN" + ], + [ + "organizationName", + "UniTrust" + ], + [ + "commonName", + "UCA Extended Validation Root" + ] + ], + "thumbprint": "d43af9b35473755c9684fc06d7d8cb70ee5c28e773fb294eb41ee71722924d24", + "type": "X.509", + "valid_from": "2015-03-13T00:00:00Z", + "valid_to": "2038-12-31T00:00:00Z", + "violations": [] + }, + "d48d3d23eedb50a459e55197601c27774b9d7b18c94d5a059511a10250b93168": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "18:87:56:E0:6E:77:EE:24:35:3C:4E:73:9A:1F:D6:E1:E2:79:7E:2B" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "18:87:56:E0:6E:77:EE:24:35:3C:4E:73:9A:1F:D6:E1:E2:79:7E:2B" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: https://wwww.certigna.fr/autorites/" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.certigna.fr/certignarootca.crl\nFull Name:\n URI:http://crl.dhimyotis.com/certignarootca.crl" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Dhimyotis" + ], + [ + "organizationalUnitName", + "0002 48146308100036" + ], + [ + "commonName", + "Certigna Root CA" + ] + ], + "references": {}, + "serial_number": "cae91b89f155030da3e6416dc4e3a6e1", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Dhimyotis" + ], + [ + "organizationalUnitName", + "0002 48146308100036" + ], + [ + "commonName", + "Certigna Root CA" + ] + ], + "thumbprint": "d48d3d23eedb50a459e55197601c27774b9d7b18c94d5a059511a10250b93168", + "type": "X.509", + "valid_from": "2013-10-01T08:32:27Z", + "valid_to": "2033-10-01T08:32:27Z", + "violations": [] + }, + "d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A0:11:0A:23:3E:96:F1:07:EC:E2:AF:29:EF:82:A5:7F:D0:30:A4:B4" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.comodoca.com/AAACertificateServices.crl\nFull Name:\n URI:http://crl.comodo.net/AAACertificateServices.crl" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "Comodo CA Limited" + ], + [ + "commonName", + "AAA Certificate Services" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Greater Manchester" + ], + [ + "localityName", + "Salford" + ], + [ + "organizationName", + "Comodo CA Limited" + ], + [ + "commonName", + "AAA Certificate Services" + ] + ], + "thumbprint": "d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4", + "type": "X.509", + "valid_from": "2004-01-01T00:00:00Z", + "valid_to": "2028-12-31T23:59:59Z", + "violations": [] + }, + "d80fef910ae3f104723b045cec2d019f441ce6213adf156791e70c1790110a31": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9A:7D:D7:EB:EB:7F:54:98:45:29:B4:20:AB:6D:0B:96:23:19:A4:C2" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "Deutscher Sparkassen Verlag GmbH" + ], + [ + "organizationalUnitName", + "S-TRUST Certification Services" + ], + [ + "commonName", + "S-TRUST Universal Root CA" + ] + ], + "references": {}, + "serial_number": "6056c54b23405b64d4ed25dad9d61e1e", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "Deutscher Sparkassen Verlag GmbH" + ], + [ + "organizationalUnitName", + "S-TRUST Certification Services" + ], + [ + "commonName", + "S-TRUST Universal Root CA" + ] + ], + "thumbprint": "d80fef910ae3f104723b045cec2d019f441ce6213adf156791e70c1790110a31", + "type": "X.509", + "valid_from": "2013-10-22T00:00:00Z", + "valid_to": "2038-10-21T23:59:59Z", + "violations": [] + }, + "d8e0febc1db2e38d00940f37d27d41344d993e734b99d5656d9778d4d8143624": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Sp. z o.o." + ], + [ + "commonName", + "Certum CA" + ] + ], + "references": {}, + "serial_number": "010020", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Unizeto Sp. z o.o." + ], + [ + "commonName", + "Certum CA" + ] + ], + "thumbprint": "d8e0febc1db2e38d00940f37d27d41344d993e734b99d5656d9778d4d8143624", + "type": "X.509", + "valid_from": "2002-06-11T10:46:39Z", + "valid_to": "2027-06-11T10:46:39Z", + "violations": [] + }, + "d95d0e8eda79525bf9beb11b14d2100d3294985f0c62d9fabd9cd999eccb7b1d": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "0A:48:23:A6:60:A4:92:0A:33:EA:93:5B:C5:57:EA:25:4D:BD:12:EE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions CA" + ], + [ + "commonName", + "HARICA TLS RSA Root CA 2021" + ] + ], + "references": {}, + "serial_number": "39ca931cef43f3c68e93c7f46489387e", + "size": 0, + "subject": [ + [ + "countryName", + "GR" + ], + [ + "organizationName", + "Hellenic Academic and Research Institutions CA" + ], + [ + "commonName", + "HARICA TLS RSA Root CA 2021" + ] + ], + "thumbprint": "d95d0e8eda79525bf9beb11b14d2100d3294985f0c62d9fabd9cd999eccb7b1d", + "type": "X.509", + "valid_from": "2021-02-19T10:55:38Z", + "valid_to": "2045-02-13T10:55:37Z", + "violations": [] + }, + "da24306bdae08422c62627166916f1b46a973acbd50e5df2432a0df7d9e6f93c": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "DNS:localhost, DNS:localhost1, DNS:localhost2" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment, Key Agreement" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "70:FA:B9:27:7B:97:78:48:80:FC:D7:D7:31:90:12:ED:E5:4F:90:35" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0dfb66d07044", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "localhost.nn" + ] + ], + "thumbprint": "da24306bdae08422c62627166916f1b46a973acbd50e5df2432a0df7d9e6f93c", + "type": "X.509", + "valid_from": "2018-09-19T07:14:48Z", + "valid_to": "2026-12-06T07:14:48Z", + "violations": [] + }, + "dac9441fc4af8a1ae7218b2c1fd821d44296cec46fd0f519a1deddbffbb52389": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "0\r..localhost.h" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Key Encipherment, Key Agreement" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "TLS Web Server Authentication" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "19:D0:5D:AA:0F:E0:68:EF:E0:62:65:20:D3:A5:B7:1A:94:90:A9:26" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "12:CA:BA:4B:46:04:A7:75:8A:2C:E8:0E:54:94:BC:12:65:A6:7B:CE" + }, + { + "is_critical": false, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + } + ], + "issuer": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "Northern Nowhere Trust Anchor" + ] + ], + "references": {}, + "serial_number": "0dfb66cc9f6e", + "size": 0, + "subject": [ + [ + "countryName", + "NN" + ], + [ + "organizationName", + "Edel Curl Arctic Illudium Research Cloud" + ], + [ + "commonName", + "localhost" + ] + ], + "thumbprint": "dac9441fc4af8a1ae7218b2c1fd821d44296cec46fd0f519a1deddbffbb52389", + "type": "X.509", + "valid_from": "2018-09-19T07:14:23Z", + "valid_to": "2026-12-06T07:14:23Z", + "violations": [] + }, + "db3517d1f6732a2d5ab97c533ec70779ee3270a62fb4ac4238372460e6f01e88": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9F:38:C4:56:23:C3:39:E8:A0:71:6C:E8:54:4C:E4:E8:3A:B1:BF:67" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2015 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - G4" + ] + ], + "references": {}, + "serial_number": "d9b5437fafa9390f000000005565ad58", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Entrust, Inc." + ], + [ + "organizationalUnitName", + "See www.entrust.net/legal-terms" + ], + [ + "organizationalUnitName", + "(c) 2015 Entrust, Inc. - for authorized use only" + ], + [ + "commonName", + "Entrust Root Certification Authority - G4" + ] + ], + "thumbprint": "db3517d1f6732a2d5ab97c533ec70779ee3270a62fb4ac4238372460e6f01e88", + "type": "X.509", + "valid_from": "2015-05-27T11:11:16Z", + "valid_to": "2037-12-27T11:41:16Z", + "violations": [] + }, + "dd6936fe21f8f077c123a1a521c12224f72255b73e03a7260693e8a24b0fa389": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "F0:8F:59:38:00:B3:F5:8F:9A:96:0C:D5:EB:FA:7B:AA:17:E8:13:12" + } + ], + "issuer": [ + [ + "organizationName", + "TeliaSonera" + ], + [ + "commonName", + "TeliaSonera Root CA v1" + ] + ], + "references": {}, + "serial_number": "95be16a0f72e46f17b398272fa8bcd96", + "size": 0, + "subject": [ + [ + "organizationName", + "TeliaSonera" + ], + [ + "commonName", + "TeliaSonera Root CA v1" + ] + ], + "thumbprint": "dd6936fe21f8f077c123a1a521c12224f72255b73e03a7260693e8a24b0fa389", + "type": "X.509", + "valid_from": "2007-10-18T12:00:50Z", + "valid_to": "2032-10-18T12:00:50Z", + "violations": [] + }, + "e23d4a036d7b70e9f595b1422079d2b91edfbb1fb651a0633eaa8a9dc5f80703": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B5:99:F8:AF:B0:94:F5:E3:20:D6:0A:AD:CE:4E:56:A4:2E:6E:42:ED" + } + ], + "issuer": [ + [ + "countryName", + "SK" + ], + [ + "localityName", + "Bratislava" + ], + [ + "organizationName", + "Disig a.s." + ], + [ + "commonName", + "CA Disig Root R2" + ] + ], + "references": {}, + "serial_number": "92b888dbb08ac163", + "size": 0, + "subject": [ + [ + "countryName", + "SK" + ], + [ + "localityName", + "Bratislava" + ], + [ + "organizationName", + "Disig a.s." + ], + [ + "commonName", + "CA Disig Root R2" + ] + ], + "thumbprint": "e23d4a036d7b70e9f595b1422079d2b91edfbb1fb651a0633eaa8a9dc5f80703", + "type": "X.509", + "valid_from": "2012-07-19T09:15:30Z", + "valid_to": "2042-07-19T09:15:30Z", + "violations": [] + }, + "e35d28419ed02025cfa69038cd623962458da5c695fbdea3c22b0bfb25897092": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D3:EC:C7:3A:65:6E:CC:E1:DA:76:9A:56:FB:9C:F3:86:6D:57:E5:81" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 4" + ] + ], + "references": {}, + "serial_number": "066c9fd7c1bb104c2943e5717b7b2cc81ac10e", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Amazon" + ], + [ + "commonName", + "Amazon Root CA 4" + ] + ], + "thumbprint": "e35d28419ed02025cfa69038cd623962458da5c695fbdea3c22b0bfb25897092", + "type": "X.509", + "valid_from": "2015-05-26T00:00:00Z", + "valid_to": "2040-05-26T00:00:00Z", + "violations": [] + }, + "e3b6a2db2ed7ce48842f7ac53241c7b71d54144bfb40c11f3f1d0b42f5eea12d": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11\nDirName:/C=FR/O=Dhimyotis/CN=Certigna\nserial:FE:DC:E3:01:0F:C9:48:FF" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "SSL CA, S/MIME CA, Object Signing CA" + } + ], + "issuer": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Dhimyotis" + ], + [ + "commonName", + "Certigna" + ] + ], + "references": {}, + "serial_number": "fedce3010fc948ff", + "size": 0, + "subject": [ + [ + "countryName", + "FR" + ], + [ + "organizationName", + "Dhimyotis" + ], + [ + "commonName", + "Certigna" + ] + ], + "thumbprint": "e3b6a2db2ed7ce48842f7ac53241c7b71d54144bfb40c11f3f1d0b42f5eea12d", + "type": "X.509", + "valid_from": "2007-06-29T15:13:05Z", + "valid_to": "2027-06-29T15:13:05Z", + "violations": [] + }, + "e75e72ed9f560eec6eb4800073a43fc3ad19195a392282017895974a99026b6c": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A0:73:49:99:68:DC:85:5B:65:E3:9B:28:2F:57:9F:BD:33:BC:07:48" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "SECOM Trust.net" + ], + [ + "organizationalUnitName", + "Security Communication RootCA1" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "JP" + ], + [ + "organizationName", + "SECOM Trust.net" + ], + [ + "organizationalUnitName", + "Security Communication RootCA1" + ] + ], + "thumbprint": "e75e72ed9f560eec6eb4800073a43fc3ad19195a392282017895974a99026b6c", + "type": "X.509", + "valid_from": "2003-09-30T04:20:49Z", + "valid_to": "2023-09-30T04:20:49Z", + "violations": [] + }, + "e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "53:79:BF:5A:AA:2B:4A:CF:54:80:E1:D8:9B:C0:9D:F2:B2:03:66:CB" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "New Jersey" + ], + [ + "localityName", + "Jersey City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "commonName", + "USERTrust RSA Certification Authority" + ] + ], + "references": {}, + "serial_number": "01fd6d30fca3ca51a81bbc640e35032d", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "stateOrProvinceName", + "New Jersey" + ], + [ + "localityName", + "Jersey City" + ], + [ + "organizationName", + "The USERTRUST Network" + ], + [ + "commonName", + "USERTrust RSA Certification Authority" + ] + ], + "thumbprint": "e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2", + "type": "X.509", + "valid_from": "2010-02-01T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "eaa962c4fa4a6bafebe415196d351ccd888d4f53f3fa8ae6d7c466a94e6042bb": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Non Repudiation, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "E0:8C:9B:DB:25:49:B3:F1:7C:86:D6:B2:42:87:0B:D0:6B:A0:D9:E4" + } + ], + "issuer": [ + [ + "countryName", + "RO" + ], + [ + "organizationName", + "certSIGN" + ], + [ + "organizationalUnitName", + "certSIGN ROOT CA" + ] + ], + "references": {}, + "serial_number": "200605167002", + "size": 0, + "subject": [ + [ + "countryName", + "RO" + ], + [ + "organizationName", + "certSIGN" + ], + [ + "organizationalUnitName", + "certSIGN ROOT CA" + ] + ], + "thumbprint": "eaa962c4fa4a6bafebe415196d351ccd888d4f53f3fa8ae6d7c466a94e6042bb", + "type": "X.509", + "valid_from": "2006-07-04T17:20:04Z", + "valid_to": "2031-07-04T17:20:04Z", + "violations": [] + }, + "eb04cf5eb1f39afa762f2bb120f296cba520c1b97db1589565b81cb9a17b7244": { + "algorithm": "sha1WithRSAEncryption", + "extensions": null, + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G3" + ] + ], + "references": {}, + "serial_number": "9b7e0649a33e62b9d5ee90487129ef57", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "VeriSign, Inc." + ], + [ + "organizationalUnitName", + "VeriSign Trust Network" + ], + [ + "organizationalUnitName", + "(c) 1999 VeriSign, Inc. - For authorized use only" + ], + [ + "commonName", + "VeriSign Class 3 Public Primary Certification Authority - G3" + ] + ], + "thumbprint": "eb04cf5eb1f39afa762f2bb120f296cba520c1b97db1589565b81cb9a17b7244", + "type": "X.509", + "valid_from": "1999-10-01T00:00:00Z", + "valid_to": "2036-07-16T23:59:59Z", + "violations": [] + }, + "ebc5570c29018c4d67b1aa127baf12f703b4611ebc17b7dab5573894179b93fa": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "F7:7D:C5:FD:C4:E8:9A:1B:77:64:A7:F5:1D:A0:CC:BF:87:60:9A:6D" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: X509v3 Any Policy\n CPS: http://www.cert.fnmt.es/dpcs/" + } + ], + "issuer": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "FNMT-RCM" + ], + [ + "organizationalUnitName", + "AC RAIZ FNMT-RCM" + ] + ], + "references": {}, + "serial_number": "5d938d306736c8061d1ac754846907", + "size": 0, + "subject": [ + [ + "countryName", + "ES" + ], + [ + "organizationName", + "FNMT-RCM" + ], + [ + "organizationalUnitName", + "AC RAIZ FNMT-RCM" + ] + ], + "thumbprint": "ebc5570c29018c4d67b1aa127baf12f703b4611ebc17b7dab5573894179b93fa", + "type": "X.509", + "valid_from": "2008-10-29T15:59:56Z", + "valid_to": "2030-01-01T00:00:00Z", + "violations": [] + }, + "ebd41040e4bb3ec742c9e381d31ef2a41a48b6685c96e7cef3c1df6cd4331c99": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "60:7B:66:1A:45:0D:97:CA:89:50:2F:7D:04:CD:34:A8:FF:FC:FD:4B" + } + ], + "issuer": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "GlobalSign Root CA" + ] + ], + "references": {}, + "serial_number": "040000000001154b5ac394", + "size": 0, + "subject": [ + [ + "countryName", + "BE" + ], + [ + "organizationName", + "GlobalSign nv-sa" + ], + [ + "organizationalUnitName", + "Root CA" + ], + [ + "commonName", + "GlobalSign Root CA" + ] + ], + "thumbprint": "ebd41040e4bb3ec742c9e381d31ef2a41a48b6685c96e7cef3c1df6cd4331c99", + "type": "X.509", + "valid_from": "1998-09-01T12:00:00Z", + "valid_to": "2028-01-28T12:00:00Z", + "violations": [] + }, + "edf7ebbca27a2a384d387b7d4010c666e2edb4843e4c29b4ae1d5b9332e6b24d": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "47:B8:CD:FF:E5:6F:EE:F8:B2:EC:2F:4E:0E:F9:25:B0:8E:3C:6B:C3" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "NO" + ], + [ + "organizationName", + "Buypass AS-983163327" + ], + [ + "commonName", + "Buypass Class 3 Root CA" + ] + ], + "references": {}, + "serial_number": "02", + "size": 0, + "subject": [ + [ + "countryName", + "NO" + ], + [ + "organizationName", + "Buypass AS-983163327" + ], + [ + "commonName", + "Buypass Class 3 Root CA" + ] + ], + "thumbprint": "edf7ebbca27a2a384d387b7d4010c666e2edb4843e4c29b4ae1d5b9332e6b24d", + "type": "X.509", + "valid_from": "2010-10-26T08:28:58Z", + "valid_to": "2040-10-26T08:28:58Z", + "violations": [] + }, + "eec5496b988ce98625b934092eec2908bed0b0f316c2d4730c84eaf1f3d34881": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "D3:94:8A:4C:62:13:2A:19:2E:CC:AF:72:8A:7D:36:D7:9A:1C:DC:67" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:ldap://directory.d-trust.net/CN=D-TRUST%20Root%20Class%203%20CA%202%20EV%202009,O=D-Trust%20GmbH,C=DE?certificaterevocationlist\nFull Name:\n URI:http://www.d-trust.net/crl/d-trust_root_class_3_ca_2_ev_2009.crl" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root Class 3 CA 2 EV 2009" + ] + ], + "references": {}, + "serial_number": "0983f4", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "D-Trust GmbH" + ], + [ + "commonName", + "D-TRUST Root Class 3 CA 2 EV 2009" + ] + ], + "thumbprint": "eec5496b988ce98625b934092eec2908bed0b0f316c2d4730c84eaf1f3d34881", + "type": "X.509", + "valid_from": "2009-11-05T08:50:46Z", + "valid_to": "2029-11-05T08:50:46Z", + "violations": [] + }, + "ef3cb417fc8ebf6f97876c9e4ece39de1ea5fe649141d1028b7d11c0b2298ced": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:12" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.chambersign.org/chambersignroot.crl" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "43:9C:36:9F:B0:9E:30:4D:C6:CE:5F:AD:10:AB:E5:03:A5:FA:A9:14" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "SSL CA, S/MIME CA, Object Signing CA" + }, + { + "is_critical": false, + "name": "X509v3 Subject Alternative Name", + "value": "email:chambersignroot@chambersign.org" + }, + { + "is_critical": false, + "name": "X509v3 Issuer Alternative Name", + "value": "email:chambersignroot@chambersign.org" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.17326.10.1.1\n CPS: http://cps.chambersign.org/cps/chambersignroot.html" + } + ], + "issuer": [ + [ + "countryName", + "EU" + ], + [ + "organizationName", + "AC Camerfirma SA CIF A82743287" + ], + [ + "organizationalUnitName", + "http://www.chambersign.org" + ], + [ + "commonName", + "Global Chambersign Root" + ] + ], + "references": {}, + "serial_number": "00", + "size": 0, + "subject": [ + [ + "countryName", + "EU" + ], + [ + "organizationName", + "AC Camerfirma SA CIF A82743287" + ], + [ + "organizationalUnitName", + "http://www.chambersign.org" + ], + [ + "commonName", + "Global Chambersign Root" + ] + ], + "thumbprint": "ef3cb417fc8ebf6f97876c9e4ece39de1ea5fe649141d1028b7d11c0b2298ced", + "type": "X.509", + "valid_from": "2003-09-30T16:14:18Z", + "valid_to": "2037-09-30T16:14:18Z", + "violations": [] + }, + "f09b122c7114f4a09bd4ea4f4a99d558b46e4c25cd81140d29c05613914c3841": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Policy Mappings", + "value": "2.16.756.1.83.2.1:2.16.756.1.83.2.1" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:7" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "4D:26:20:22:89:4B:D3:D5:A4:0A:A1:6F:DE:E2:12:81:C5:F1:3C:2E" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "4D:26:20:22:89:4B:D3:D5:A4:0A:A1:6F:DE:E2:12:81:C5:F1:3C:2E" + } + ], + "issuer": [ + [ + "countryName", + "ch" + ], + [ + "organizationName", + "Swisscom" + ], + [ + "organizationalUnitName", + "Digital Certificate Services" + ], + [ + "commonName", + "Swisscom Root CA 2" + ] + ], + "references": {}, + "serial_number": "1e9e28e848f2e5efc37c4a1e5a1867b6", + "size": 0, + "subject": [ + [ + "countryName", + "ch" + ], + [ + "organizationName", + "Swisscom" + ], + [ + "organizationalUnitName", + "Digital Certificate Services" + ], + [ + "commonName", + "Swisscom Root CA 2" + ] + ], + "thumbprint": "f09b122c7114f4a09bd4ea4f4a99d558b46e4c25cd81140d29c05613914c3841", + "type": "X.509", + "valid_from": "2011-06-24T08:38:14Z", + "valid_to": "2031-06-25T07:38:14Z", + "violations": [] + }, + "f1c1b50ae5a20dd8030ec9f6bc24823dd367b5255759b4e71b61fce9f7375d73": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.20.2", + "value": "...C.A" + }, + { + "is_critical": false, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "42:32:B6:16:FA:04:FD:FE:5D:4B:7A:C3:FD:F7:4C:40:1D:5A:43:AF" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.securetrust.com/STCA.crl" + }, + { + "is_critical": false, + "name": "1.3.6.1.4.1.311.21.1", + "value": "..." + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "SecureTrust Corporation" + ], + [ + "commonName", + "SecureTrust CA" + ] + ], + "references": {}, + "serial_number": "0cf08e5c0816a5ad427ff0eb271859d0", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "SecureTrust Corporation" + ], + [ + "commonName", + "SecureTrust CA" + ] + ], + "thumbprint": "f1c1b50ae5a20dd8030ec9f6bc24823dd367b5255759b4e71b61fce9f7375d73", + "type": "X.509", + "valid_from": "2006-11-07T19:31:18Z", + "valid_to": "2029-12-31T19:40:55Z", + "violations": [] + }, + "f356bea244b7a91eb35d53ca9ad7864ace018e2d35d5f8f96ddf68a6f41aa474": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "A7:A5:06:B1:2C:A6:09:60:EE:D1:97:E9:70:AE:BC:3B:19:6C:DB:21" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "A7:A5:06:B1:2C:A6:09:60:EE:D1:97:E9:70:AE:BC:3B:19:6C:DB:21" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.6189.3.4.1.1" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "commonName", + "Atos TrustedRoot 2011" + ], + [ + "organizationName", + "Atos" + ], + [ + "countryName", + "DE" + ] + ], + "references": {}, + "serial_number": "5c33cb622c5fb332", + "size": 0, + "subject": [ + [ + "commonName", + "Atos TrustedRoot 2011" + ], + [ + "organizationName", + "Atos" + ], + [ + "countryName", + "DE" + ] + ], + "thumbprint": "f356bea244b7a91eb35d53ca9ad7864ace018e2d35d5f8f96ddf68a6f41aa474", + "type": "X.509", + "valid_from": "2011-07-07T14:58:30Z", + "valid_to": "2030-12-31T23:59:59Z", + "violations": [] + }, + "f9e67d336c51002ac054c632022d66dda2e7e3fff10ad061ed31d8bbb410cfb2": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE, pathlen:3" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Non Repudiation, Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "HK" + ], + [ + "organizationName", + "Hongkong Post" + ], + [ + "commonName", + "Hongkong Post Root CA 1" + ] + ], + "references": {}, + "serial_number": "03e8", + "size": 0, + "subject": [ + [ + "countryName", + "HK" + ], + [ + "organizationName", + "Hongkong Post" + ], + [ + "commonName", + "Hongkong Post Root CA 1" + ] + ], + "thumbprint": "f9e67d336c51002ac054c632022d66dda2e7e3fff10ad061ed31d8bbb410cfb2", + "type": "X.509", + "valid_from": "2003-05-15T05:13:14Z", + "valid_to": "2023-05-15T04:52:29Z", + "violations": [] + }, + "fb8fec759169b9106b1e511644c618c51304373f6c0643088d8beffd1b997599": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "9C:5F:D0:6C:63:A3:5F:93:CA:93:98:08:AD:8C:87:A5:2C:5C:C1:37" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "9C:5F:D0:6C:63:A3:5F:93:CA:93:98:08:AD:8C:87:A5:2C:5C:C1:37" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature, Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + } + ], + "issuer": [ + [ + "serialNumber", + "G63287510" + ], + [ + "countryName", + "ES" + ], + [ + "organizationName", + "ANF Autoridad de Certificacion" + ], + [ + "organizationalUnitName", + "ANF CA Raiz" + ], + [ + "commonName", + "ANF Secure Server Root CA" + ] + ], + "references": {}, + "serial_number": "0dd3e3bc6cf96bb1", + "size": 0, + "subject": [ + [ + "serialNumber", + "G63287510" + ], + [ + "countryName", + "ES" + ], + [ + "organizationName", + "ANF Autoridad de Certificacion" + ], + [ + "organizationalUnitName", + "ANF CA Raiz" + ], + [ + "commonName", + "ANF Secure Server Root CA" + ] + ], + "thumbprint": "fb8fec759169b9106b1e511644c618c51304373f6c0643088d8beffd1b997599", + "type": "X.509", + "valid_from": "2019-09-04T10:00:38Z", + "valid_to": "2039-08-30T10:00:38Z", + "violations": [] + }, + "fd73dad31c644ff1b43bef0ccdda96710b9cd9875eca7e31707af3e96d522bbd": { + "algorithm": "sha256WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "B5:03:F7:76:3B:61:82:6A:12:AA:18:53:EB:03:21:94:BF:FE:CE:CA" + } + ], + "issuer": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "T-Systems Enterprise Services GmbH" + ], + [ + "organizationalUnitName", + "T-Systems Trust Center" + ], + [ + "commonName", + "T-TeleSec GlobalRoot Class 3" + ] + ], + "references": {}, + "serial_number": "01", + "size": 0, + "subject": [ + [ + "countryName", + "DE" + ], + [ + "organizationName", + "T-Systems Enterprise Services GmbH" + ], + [ + "organizationalUnitName", + "T-Systems Trust Center" + ], + [ + "commonName", + "T-TeleSec GlobalRoot Class 3" + ] + ], + "thumbprint": "fd73dad31c644ff1b43bef0ccdda96710b9cd9875eca7e31707af3e96d522bbd", + "type": "X.509", + "valid_from": "2008-10-01T10:29:56Z", + "valid_to": "2033-10-01T23:59:59Z", + "violations": [] + }, + "fe7696573855773e37a95e7ad4d9cc96c30157c15d31765ba9b15704e1ae78fd": { + "algorithm": "sha512WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "8C:FB:1C:75:BC:02:D3:9F:4E:2E:48:D9:F9:60:54:AA:C4:B3:4F:FA" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + } + ], + "issuer": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Asseco Data Systems S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Root CA" + ] + ], + "references": {}, + "serial_number": "1ebf5950b8c980374c06f7eb554fb5ed", + "size": 0, + "subject": [ + [ + "countryName", + "PL" + ], + [ + "organizationName", + "Asseco Data Systems S.A." + ], + [ + "organizationalUnitName", + "Certum Certification Authority" + ], + [ + "commonName", + "Certum Trusted Root CA" + ] + ], + "thumbprint": "fe7696573855773e37a95e7ad4d9cc96c30157c15d31765ba9b15704e1ae78fd", + "type": "X.509", + "valid_from": "2018-03-16T12:10:13Z", + "valid_to": "2043-03-16T12:10:13Z", + "violations": [] + }, + "fe863d0822fe7a2353fa484d5924e875656d3dc9fb58771f6f616f9d571bc592": { + "algorithm": "ecdsa-with-SHA384", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Certificate Sign, CRL Sign" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "3D:32:F3:3A:A9:0C:90:84:F9:A2:8C:69:06:61:54:2F:87:72:FE:05" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 2 Public Primary Certification Authority - G4" + ] + ], + "references": {}, + "serial_number": "34176512403bb756802d80cb7955a61e", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "Symantec Corporation" + ], + [ + "organizationalUnitName", + "Symantec Trust Network" + ], + [ + "commonName", + "Symantec Class 2 Public Primary Certification Authority - G4" + ] + ], + "thumbprint": "fe863d0822fe7a2353fa484d5924e875656d3dc9fb58771f6f616f9d571bc592", + "type": "X.509", + "valid_from": "2011-10-05T00:00:00Z", + "valid_to": "2038-01-18T23:59:59Z", + "violations": [] + }, + "ff856a2d251dcd88d36656f450126798cfabaade40799c722de4d2b5db36a73a": { + "algorithm": "sha1WithRSAEncryption", + "extensions": [ + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:TRUE" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "C0:7A:98:68:8D:89:FB:AB:05:64:0C:11:7D:AA:7D:65:B8:CA:CC:4E" + }, + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "C0:7A:98:68:8D:89:FB:AB:05:64:0C:11:7D:AA:7D:65:B8:CA:CC:4E" + } + ], + "issuer": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Global CA" + ] + ], + "references": {}, + "serial_number": "023456", + "size": 0, + "subject": [ + [ + "countryName", + "US" + ], + [ + "organizationName", + "GeoTrust Inc." + ], + [ + "commonName", + "GeoTrust Global CA" + ] + ], + "thumbprint": "ff856a2d251dcd88d36656f450126798cfabaade40799c722de4d2b5db36a73a", + "type": "X.509", + "valid_from": "2002-05-21T04:00:00Z", + "valid_to": "2022-05-21T04:00:00Z", + "violations": [] + } + }, + "materials": { + "0b95fa91-b17b-4a6c-bac9-01c4975f05e6": { + "creation": "", + "expiration": "", + "format": "PEM", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "c619c586823acb56752ba94719380443516f572bd2168d9a67ef196fae6102a3ce79d8bc29dcb0cdb5ca150769a12e1c46d2369dede554e8860b7b034aeccfa59349475f5cab8754ebab423fb6037c785ca9f9c8f44f0da12dc47f3b44664c6b22f6d7618bfb8d40f108662bcd7f7d471d5c84c8869eec59ce569a2d164eb4db610495077c17c19e78aa68f6942cf2c1c054e5150bc31fdacafe6c5ca8f67cd4d179126b2ef6a3353d3b9230d9de5a56b3797f7352f891bd3a9cefa2e37091a00c394b0b56f665513a98d2f7b9098dab0770fbda1e0625f3366878bc8708f9eb204eb322210525cd60933c9d72846c968ae6e955bff6bb28a4e42b349d93f989" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "e14cd9741aa4a34257a47a2e740208496a6a1ddbdec343d648601230edd66e741681164e50b96cb9360d19a4f78599404626463386ce0c2771e48f0fb43a996daf7848b7cbc4d3607dd0176f23bc89c0bc16b894f0b2108dc8e03597ed8fc6db9bcdaaf68c45dc0feea07812bef67df4f7b68c4ee57d32e8f7f71e04469e08cdcbece29ac3353fcea101e3100aecd9ab1309ebe6396b9230c708bd8a32ef0bb2616f114395cf31ea1901cc1a6dd2d55735dac0ae4639d333edf8c01ead3d686fa85324acd6f9dd2b515077e4b75dad48805d6557e5eb07827dcb724f066a34d438c86bed8a3a685e35e37814da5d869fe5d41cdd90c27ca200d495650485ff83" + ], + [ + "rsaCoefficient1", + "8a9f4e3161b86430e887c4d3ff0d47faf97995d55eca6e98c8c92c9c85bc5c4ca095f7c73dab8f7562317c149822d89755e5738759a2ad8b6420fed633ec206daa441d78d8ed7ca90e500f19c997a235974f2336bdb739abb7a982b611f5a13de3ca275d852631c9f5015b7a253e104f8fc6016e59aad501c4f32da3dc2363bf" + ], + [ + "rsaExponent1", + "54cca91dcc9753c39bf227aebbe88f4758b64af0ba554cb5750307c4218db81559c7071de54b7bbc450af3fa51d8b9dd2e749c205d31f65417694b4d3871af344ca9bff11c9cca161207c32db0f73925eb54cb58b3a00100863369d5d7a8b2d434561f5f2c999e9419260d71fd2e6bb0435914ef17ac66882a0f580772581b9d" + ], + [ + "rsaExponent2", + "5443078ca6640e28d287473e9df6165a3b2cd7720e237a268f5138b0ea515a008f07624db2c3655d9d42838182ac849611fec5b3d08040cc5737264e36c0ceefc6b3b1e5f806b9e6e6107b4f0784cff7a4e7bac607444de129d0d84b2a088e5a790f1d2a20f28390c90c9a894d52f4720afc118338234ef48e8176fe8be75043" + ], + [ + "rsaFactor1", + "f5cf2cb260c74999297357a92bd2b2f815cdca4bac987c7e2828178accceaf3ee5b37d63a2942ef6f6383226fe81822221837454d8a81274fc4a5ab9a00981dcc8c189cc65799507dee99b09e2f4aac33c3c164cea92dd8ce1d2de02f03020c191385fa01dfdf9a7ed5d3a75f259649ca72fd7b13e9f1117ba6d276c8e9e56dd" + ], + [ + "rsaFactor2", + "eaa401f456b8f19e64bf6b164778e7e8f4dcc0c7825136c4a86c6d1a1b1c0348b47a3baf6e83fcebfb42433e94696a76b360b533cfb47b39d0493e49bd17df5fc58f8e48a90ae8c5cb696d901a25c85597cf2dbca5c0f1f924d786bd18b8a8c370645060390c5466b0831711e9e0cd1268c5c1c06db72219675e4a7787e3d9df" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "65337ddb-e794-5465-a2e4-a4b0bf817b52" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "13376ced-41c1-4e76-8fbe-8a6717decd82": { + "creation": "", + "expiration": "", + "format": "PEM", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "3eac9883d3d6d83642051b134daa3b8f84ed70bdbd0c08c12fee25f49ae63218bcc222e0caddac4389049abae6f0bf0742237d46760f64b903099f20fbe1a4bf1b21ef749d7ff71086a92c9da59db0814caefaf41345fd50790bbcdd2a254bdc61b1a96caa749e7410fceaf67bac9db7f13892f7d75ceba8ac7ba84539ff46fdbd8b425bea3b3fdd291caed500c25fcd74f6f2525ea67dd15b6396bd232a7c5e558e54b38eafb45e56eeded3a4f88df3061bf575c64260209d50d8f5f173a68482a0b2a8df80c180780efb7ba87ff699fc3bfaf13383f0538bc96ed7ec88441ae5e90d591fa3ca878ebb95dfc98147483b4a1224640f6ceae8ad55f8ee600581" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "b5a05665ff1a1d9a4df117be14c732fe51a0a32226596cd50c74a96c261ca692661d960e59cb7d0501b03113dcdbe681f17943800837742e5182b6877cfd872dfdd0d34232c9a8d1cce0377fe23e6592d24dfd79edef23d5312ffbef5f0368496a7caae970236b4395bd5ed1f816a7d5e0bd7f6344a42c4d3416321112cedf16a4d806a5cbd44ccf29ac67c18226c10bff44aff3b28931a210fda532f8044e6b321d245e83893d499c34245a13dd2c0b2c5cb35fbefc6ddbbec3c4406de851bfe1fe3bf0284224f568c42e00fa2134f0d1943f6550198dbecf072a084f687077f61478452f70da472651731dbbb293e123776da0474e34c7affda95341eae773" + ], + [ + "rsaCoefficient1", + "8c1a6c7b9ff90d39f1ce8a7489e483043def13ae2fa8aa817ced97bef3a37bfdbfc532bdb79de7b63986886f1971f076f04fd09e30e5261c1f70bb65717c93d30af80a309c27aaef0aeebdc9620a65a6a3d76f85c0f49c13cb5d93f5184a8d1e9550f8acce6dbcd0a59999908a3a4ed839d236cb768027db8913751d8f55bd90" + ], + [ + "rsaExponent1", + "210348cc314b5485fe7fb0be48324703326687804959b152d2e98f6e7dcbf12212299f247fe24c07f3313c6dc88c26e8f658de4c779b5d5d4b97e254c1ae3625527a697c50c232f4a525b4c91bd3c6c2550d74c052ed13370d913a75c8a358af0ccb275e19ac0e37c314458b621fdcabf8a7f485fd4a41d26d0f2536fe4b6cb" + ], + [ + "rsaExponent2", + "5d689c0dfb4f14700a7ee49780c346700720fa04401c6a3975a9cb0ef334fbd35324dd638f5e51505ccf1b4ffa68952f4a06a68dab7988c993e8c35a1ee0476020ec19853c5d8bd24db2edaedf16876218370c8b224113c97e591d295e23cb863c49db4d0023cf20f2c6f90b0d038767b5ea1e591dfa85840539f17accbcb841" + ], + [ + "rsaFactor1", + "d9bff18ee4fc70933f380b7d8cfffac82d98c885ffd849b36ecc87d577d163b5e1cbadea89dcdac01542c5d960b841ad7b4e71ea4db3dd2ed050553f2d02acd1a3a6da3f561e99f0f4b959d661353ed14f24f11a2b37cf7655226c2fe643a421f1d5a58bc68c5d43a3f7fa384312850bae10d43ff193f87e87413136eb09c3b3" + ], + [ + "rsaFactor2", + "d587f26a21635214c2b07e11ff01c081470b0e57c2a472e2ca63b69b295586efbf7eb49caa7fb7442d89263ca58edc0a2c2ec293a89744a6aaa0c7307f88e6871b281b3aa3987482c6fa6e70370dd17276b81460f6b4ce148a008376e87206dbae9975751b0049c3b506f458e282d22d08cb460b8ec548b32fa37a9068ef6d41" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "37c38e92-8827-5139-9178-0eb1a413c6ae", + "4b4ca1db-fc01-5b24-aa54-d2cfefa2801a", + "8db4d475-8f0d-5581-b23c-5e89d937a161" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "6c471d99-9a06-4f27-ad39-868708768a42": { + "creation": "", + "expiration": "", + "format": "DER", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "18e4bbe2fc759be5126e0c4387fb0223c03cdd95188f9b4e8a24cb07bc3377cd3e9c6102e7605f097b6cc1ec19964e34a6a2c5f528c452d1753a6ac3a2bb55a681b41defec082e90ee33ac99674ca540737f5c38f9f3267a8dfb07510b9706fec5678f68cf0e5a0b99dd746423f0db3dbdb301f1137c72bd62141f83a1ec6fcc215af804aa284ee14467cc98a836162d39975bea7a6aa320743c14d7c069a9ce88f26ef8031f27e1a1e3ef866b162ef750d8ce0b86baf2be71e08444fdd4722255c1d582cd76dd9df3266f2c5a0a0557bee72c3cd2a1031d52379abec2d6415daf2e35843171312bd2a8db90091607d81e7cfe207708838620cf5a793c874651" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "f41e5e4c8c879e09f8d7623d38fb5e9b625b022e95f50a1482d407fce7f396c3121ab924faf4417f76563d8d72212a49cf54420987160298b0a9c5c6d3f260adbb6117a2ea35311cdfbb27fe9df9f7ff6a7210a344753bb53e761bf760a631ca4f620e7e6d999c8e3061ff37e6c191650ca1a36101ef75dc8f529c5b39453563cafbcadd764a0278c4b02cece2c8de279fd6b9eb39dea12399d5659778e27c085597918470f488c0599cf2f0fe5c7178bf868e1292851f15edd383fc2550f48604cd777b0c9aebabe9cb4398c41e6eded2269d8ea1c8df4fa666bf293b6e7ab9d2be7416c6b4c3469b0919429b0575aeb59c5ba3d5e176655939bc995d009087" + ], + [ + "rsaCoefficient1", + "2f607f23290565c55a63551d005b85f958d4e509a5788ce63ed75f3922c24792fcc6e2fe74c903529bff59fe17b15b127693ab959b7add01a38be76d8924b984d3cba26cd538ecbbffb87c10e7bf6156b0b9546deb777d979c9ea147f278ef24ad9eb2e16feba3db301ac2a78e0eb00c463becb3f50e549fda37ddd8493d6727" + ], + [ + "rsaExponent1", + "99e61d92250ce55ef6a1ee530831139ccddd686f3862a517e2cc1536a4c13b4b932942534b6edafb80ed71586db8a0192a43a422563e4e2b0dcf1635f7dad11bf8d8de393faef7f4c8f3cfe292fe532ae32f85a81600e441e99ce0dc38aefedf173d972a87f6da0f2cd5da683ff721e37d4d551dc87a706e580b59c060932b81" + ], + [ + "rsaExponent2", + "f3bf7bdbc2330d8ba4d2f30fec4cb060fd55a8ec1dca16c3411dbba13f8f178702e88644a17635afa807be80ac66e32cd98f2730542b2ae23dcffd80cfb553489c5a38e45b7c020922169e01659155b155cf5842d3f068e0b291abf74cf706bbb5b6cfd4a37bcafdd48df77e1e02bf345d84ec2249e6fa2ab07e0ac32dc668a3" + ], + [ + "rsaFactor1", + "fca837c4817b4bb2331a66bd5930b5e7cb6dd3f5f32fb1fc26cf6a9fd1fb1344f0d86df87ed575c12dec01ade8ebab9140b9312face4d68141bb7c498e37425395a122b1b2e4c18999732e02121074d2e4fa9e5e5e74514803e4289660b9ddd1f82e43c5826b8b1196f6ea220762347fd745606ae6323b282c48f6bcf660bb49" + ], + [ + "rsaFactor2", + "f7593ac70d0e6a68d2968a4bb32a9636dffe80aed1801a6fc1e9dc543099419b55b18b1c030209bc1af7cafb0b7536ed35c93adb96cfeb0f753daded457dd469ad07f7e874bae953bcd9c6cd1505fe935e19fcd04fabd37752a506df8f2a481922021f7284a026a98cb8a773724541062cb5ba29398052c5cd00e3905cf39d4f" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "20b028e9-7597-5d4f-8059-5fd95a660569", + "3bbbd236-85e2-5a7a-94f2-13b336c31cde", + "c2777651-eb10-54b7-8190-be758385e16b" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "71a65e84-3b28-467b-8cd9-f9d311a7faf8": { + "creation": "", + "expiration": "", + "format": "DER", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "82d304caa5db5b9ad457ebacb56bd07436895b9603e22124428cb9ca3d2a48a6576673eaf85d3c6a2dec64bda229a71e4f229268d85cf3386809154ad41aca6420eaffca297ee763caf0e70680ece2cabaa54dd074c43a9e96967a5ae8201b4d56276bfc81ca3ed134117b00f13b16c3153ab860046b0dda80986e9d1fb6da78c0ef87a2157bf76424e565ca1d0c03640ff9547a7c3bfbde351edf25ba1be86a97d9a364ae82833da55a8796ed85c0bd6b535d3ebcfdb7192ceeb8a0bc828c19ac6d2ac14503799bd33d756255e41d21d363feb8c1791fe1000f7a8de48ebbd22498dddf85581a5dddc0366ab4465a55173660861b70a32d8512c06c3595b161" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "bd970ea76db6738cd0216bf336745d0aaa3af0fa6eb15c1c1374ca672b2203d1a63c25ef874fe8389f211d2e881236668203024cf81735029531b1534021242f00f0bf805816b192b3d378bf78cb0a910cd26d5db21f417316027c1acd1625c9e11b81bd84934c63ce38f43ead986b0089a8baf57e0883f39af598b89fd6d8c7d4f3071c8fefbc2910608c858b4c7a73c79fa8232fc447f5188598fb27de58934b08a566c9dfdbf022f8649fa1568997ab022c5a99f26fbf7231902232ae86256b13c672ecdf2ec81200c1e338b4a040ba0161c2d7b1ef7d4b2918e2fe28d098e4653f4c3439e482a9cab23dc4918fa094bfe3f8b37348b7fefa0443e7b5bcbd" + ], + [ + "rsaCoefficient1", + "2fa098119f9d04a14d16257e96f84559c38a33e90b7e007443bbc1d78c71d40af4a7d6b0b653e72d30aa86615bd20f96ed5d3518701ea1875aed82990570169cb9fdc729ba40897f2670ede75b6fd748ab32a5516c3c2669a00bb58acf8cf798a919af0a6d1710eed1da50eb8e3238ffe09d168b2f23f4ce7fdbae69d8cf4f57" + ], + [ + "rsaExponent1", + "186ad1463247bbf094a04c2b3cfebaeeb0e6ee932b27856d6c4cc5bf48d683ff61bc8d344fb8d3d402624237c589b2316d43ea7e58fc5cd32a0a2e304304df1e9f50ccca0a4555a5bd51543cbfa1357b10a160791239500e34ac3ecd5f7f01e3ac324a602bd2555878068a16c6a1a589a5f55cfae6efbc714c7c722f6eb0e9e1" + ], + [ + "rsaExponent2", + "35efa4b783db2da5c0ab63e46b2278eefd1ed0dc0aecaae8f804893b56939a2347587679cd3775c369c32d6de7382ca06ae991ca67222ce5dc6576955d663bd603cc7689bdefe32372d68e260575a375f9080a38644678cb46c028eb572e9b1db6468c3b545e0b2b38ab07d373bdcaaf4f0c88bd653a4fe45684076639033425" + ], + [ + "rsaFactor1", + "f1ba26175701a1f70cdf64869e78a656c54886a7be358af11004690824babc0350bde8d4b98239baa20a6313536e47465c16930942c5e8c77f3384a85770897e50b8d998044e93607b669d6489e5e6cc1bb48eb65212f59e1d2cd673f23f7938629bdd723da91d08b71b26b8b816beb2546b2774517714ec14f31c25c6c7df49" + ], + [ + "rsaFactor2", + "c8c8d33e7e0de4f00610d8d66214634f3516686b4fd3e11471ad472d8e204356d19849e7213eca0550b2c9d1f8baffca5d69cc60be08cfffe70989efbe17c74ade32c87fae02b86745aae3b249146a3444c7d85669687743a776d7686c373b76ceed437c081add995d6e81b73328f0a554bae1cbf10c19a19a8935effb404dd5" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "14fd40b3-cab2-52ae-8344-839ef6ab8447", + "c7eb25c0-29a6-52d8-b9fe-678f99e81ce5", + "f746f6c5-5365-5da2-8dc1-d8e359efe345" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "b1cad38b-ba7a-4a2d-bfeb-b8f54fe542e8": { + "creation": "", + "expiration": "", + "format": "DER", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "936ff18e72399b6a219f92f37871ea677147fdba6c27d097bbeba23b8d30a26673a5199a5ae78b9014470a7006b92d3925867fb3ab5ecf86a64475a9b4ae620f120794af0ce7a9afc6049ea631b03be1ec9a6cf281bd898ff89a01aedf31049bcf1c96ed5653795b181f461ede958d6853f9c4e487ce63c890dca3c1fdc17d770f3911a7c8ad0ff89deb9c06f57f235e978e198dace4ce05d592cb59b4577a23d76dfc1a5696202766d5f86ef317d68866db52decb9688fd676a66efb799c1d48317849aebc048ca2dd9e714fa82e5eca33d87e7da1bcddd236ab75beb4423c90f7706ff108581eee2f1cfde1b6559ec9dc0561813c2eaa039681ec2d56efc21" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "b8fe6ab88a0ebb3490cf48e7dd0d2632670a4eaa9c4cfdeb6fe1b8985db143d4094f62d84d7cd60b369357fb6102b98d35209bde7da3d50d8e4498d49131a21e9a84cc00524b78c357576bd72529bf1450206f1aee3cfcbbbf1e1fcda8b7fd8daecc7807c00386fdeddb86c12b8155454a5007fd8d85a4e929dcbbe2d5dddd3af862213c30d05a88716753af78ea7e08403265167cbfc9baf5061e02f2f8b739c885c07814d2d9fd2b8b0c3fda83482f2624341bfa700746b401ea0dccd781a9f166c54e3d7eb4b3b464a3ea0fff0154c18b1fe965d5fcbc7143692e50f40312a591952036dc91ebaaab8f306c662220de1db859d116a871554a66fe769c9ee9" + ], + [ + "rsaCoefficient1", + "c6e59761f8c2ccb0682e8ed0a7a7ccfde882b42353391bb5740567bd460d90a63715086aa6b9cc4118243051d9fc2cbd245cab9e0babfb1ac42f396b31f862db2ee42c005fabe2d1e1f884004323e578b7ece5b8acfcaa9f1a248cb796a13b1f6afe7e470fd18afec1a3be6a89b9c550e399a766a7678531a74bf86dcd01969b" + ], + [ + "rsaExponent1", + "6a839bc00b89e47bbd477f7b60b34f2bcc7cfafe71157025f10a23d3be0ac0105c6a3b3cecb2ed305fc191613b2d6e4cb16c92bcbc9a5d431d130338e0c56ee4082aa3bcacac8b730f7f89c442a88494cd0b249526e02997ec7abb9a89fc999cef1387d6dbe7ae5a9c2435db3eb2d4835210ad704bc7feb4502348c742a367f3" + ], + [ + "rsaExponent2", + "4b0065cca98c63891d6f79b49539e638e1d9988ae4565b3b1871e997271ec34db720dc3342e54d8b3e4b51c08a9221daa9d42a1b6298b381fff8fa8ff5946e8737a6dda9ee2bbfce72fd87825a58d43676c04701ece68e0452bede896bfc03dd87306101ff0dae5be50019729aecd032e581b8e21a1d19bff47a9d0c996452d1" + ], + [ + "rsaFactor1", + "e1251110558e459e23a57249e6362dfb8e18b764ce9d90ad779daf9c89cf1686791d598dc69d4e6cc831383193f970991c4e6842a49510e1760c2c4153c462337f6a49c28e89ac7cf7188ec615208cce009c4bff55c1cc32ae30803022248a7e9d4b6a92a76b004a986d1248bf13f3340c0593d40d1d3544482917d33e62971b" + ], + [ + "rsaFactor2", + "d258b3a1ddbe6994900040e62256b7067c7a49245640acab4a8cc62b20946733e905bbaf5c346a0d469f81ed3459e1773b7edc2659ca147332dd52649d19e62f91b9f1fc72df49a488803f19b2ff8bc7adddcb9d5bda6f12ad09eae1b4298a509363bce491a7fad8af96d043e1d8552f203705635490a67c6e5e5195d972ae4b" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "2c672f3e-e325-5554-b483-763996d3497a", + "33ce70e6-9fef-5dee-aa9b-d6d68e7e250c", + "dac8cbca-bb31-56ba-9761-0dae35c01505" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "dcdac1d2-d11e-4d29-bc33-f70c0918b0b1": { + "creation": "", + "expiration": "", + "format": "PEM", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "62dfd42228c15bd59bc347bc8b6d2e5199920fa52ce48ea10653b0b981a00cef6ffb9c8cbaac332cb2903c8da9065bf6a8b90936395bd20e01a61c7d56280dbcaeaf6792ae5220bf660ea9dd0028898d3f1d5ddcf70f85618c3a46ea77f66a3842da9ec600fd3dcad980ab81cee102e44a1747d67819e2d70cadf11a9abbd0a7d002bf6807ff167dbc6c2692e43ae4aafb0cdb03884567a51a008cdf37e7f916e170b6c13c8c8fea20bef069b7f692bc259ce72570b4ae1374e5e76f874f882e507b94c278b799672d2c45bec7e4c4b1a5e693175ad849d15625f87e4922c0feefe75ce391e35f6d462ece9e4d6d213313dcaea68d9568103ccc460d036b88f1" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "e26fb001d5379a5e041ae77efebc77658f559cd21f459a3ac831a880e93f3e0d4d33bce8f9c5ec461419b8536c9313a0898bfdbd32c90a870f5c6241461a2c9c29145f2a5b6a2b2664b197071caf50dbc8e1c362fe270f9eaf511f05826d7f54a529fa9ec8dc5721da7107871336bca42e4c9c50c2f2d4d3cb7ac2a567b62ca4a9dd7ea0138bca4622c56d7019b21aed93cc0a891b83ba2361c54c98715b37b39f8897c63dcaefe41a463a535e528b33bea36db891f3872fa5bd52de25db163b69164b5a1aa3ca286568748b14488b911f5f3cc5434ce17a8ff8367c502335e3f0ebef5855b56ad0f405d5c6347b0eb030dbeeedc54b668fb1cf9b6879b387e3" + ], + [ + "rsaCoefficient1", + "cef711ae9fc43decaa270518a1e1a34133ef3dffcfdd79934f01cf0c0089b3147c9330d4c3d3a0bfdf09c9c0c8b235b64451f29abdaa4dcf7fa87b47d731b8237c4ca96da3fb8ca1d2c6bdad2b0255f8c2b545517849dde5a2ee97b659d3a0ba7f2ced57dc4fc87186a6793e552e2ff83b214e30a7bd2b45a8c6f873e363c3c3" + ], + [ + "rsaExponent1", + "3356bbc80ca92fdedef59758755160bb5eb76d92c4a8b7a81ada420354944b8a8a0ab9ff5253ef535539736ccce36c4778818d8312c80e63554c573d84a835c31186e40834d6ce0d272cb1d86dbb67556fed615765b67a8711ed636056f295904bd7e706cd270f9411dae4e736121034ba693c62474ba1d9c862faf1a6673269" + ], + [ + "rsaExponent2", + "9de942466e5711902a747bddfd3c5367ffc7ea1ba0a5b2b29b8eb91397070a70047b31bf182944b85b2f68b4773aa35b9bba7c7349c8d537b43937d2f2805d4478c9ea813d176218a98d63b28f8bf597e75855cebb1abcb0f7ce2ea6e1008fb2cd1a619a88155fb83103911bde7e0ac696444655ad5758de1065c91551c6a67f" + ], + [ + "rsaFactor1", + "f2d7d5422cb34fbaccd87239eb60655796f43c469fab617b580ccd58c1a2071c5152932702d9a7555b16891ac7721e18e2795b9a3bd00e1aef0cece91ae10f022f85b5e3e4db7cbceeaf2507c5633920d1f3a4cfbd25ca42a30367c7df62f44887b30a60ef20bc862b8cc10379240dcc6c62cb0dded04206bae42dfb8dadf099" + ], + [ + "rsaFactor2", + "eeb44be2c9777e5fe7a7169caed14d9ea64ff91fca2816dd6de3a024f0cf92731fcddebf0793f2ce7cfa746dcddd0c22bcf3c5b808cf82a23c3edfbb4855bc470ed74555993fd7d918f5ab0dda9d3ffd25cc32d89a61d7202a825505d06a92a87d96c81df5741d9486b89b4488b1b76f38d0890c798c9957b5e80c1c7a4c7ddb" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "b2fb4593-1dc9-5c00-8a19-22a822f7c688", + "f6b75700-cb68-5478-a79b-8a9f03cb0df3" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + }, + "f892922f-1599-41c1-bb25-ab0026dcb7a0": { + "creation": "", + "expiration": "", + "format": "PEM", + "properties": [ + [ + "bits", + "2048" + ], + [ + "defaultDigest", + "SHA256" + ], + [ + "exponentD", + "87a8358957a7d600db4e88c7ab7b4e3d8efe4a780c2a63bccb41cdef10b5c826366da1b9bd90884e077d19ce0e17a8ad26878e3e314a0cfa021fa162854b9c604dd4cca0ab4d8bda7357312d4f56e3acf18fce14ed006392104f9fa34c3362d8dd39372b8efde1684b78d0cef50b6db9b4e9c0c192d6e5e23f167bdff96e34b1ac879d66f84b4e22ea177cf64a87023b6bdb10db19d77c5c3243ddabb012a5e2c9ca412a7b6b65454142a08f5972829104ab6f6c9fb5574fc1e7747673a168ba8a9e72c591d890aba0db4b229c6fdeb44868598fe8e522b6899d8bc15916691de8c10597ffc9326b6aff64031dfc2bf509acb4d4a514048b4a7c5d14ce4c07a1" + ], + [ + "exponentE", + "10001" + ], + [ + "maxSize", + "256" + ], + [ + "modulusN", + "9fa93050f970bc337f1faac65e5a0af6cf9922cdbc3a41e776bc05018524cd227947264d6a9d41cf3180201f5f3a872f4fff5c23ac670bf41458a747d7760353feb30d230819ffb4ac47bd6090c8049405cbcf1b10aabb08465442a82bcc35f96ab9469e82471877cfc0481f5cd29bedfd8d3d290b20b7dd0260276218731c0cb1822d3c9c1eb63e86f40ed30250f1f80187328a2dc5610baa94f0b3293f49a7f64add7530c06297146bde4d714440398e08f5b97341d5eb12d8ce5dbe2976ea6b9418d72c435e8912f150f22dc06d19079996f3a846f33be8c81d0dfa5496a0262c4fc06084a921390f4428e4e31179e4a344e220e19d6554a2275667940227" + ], + [ + "rsaCoefficient1", + "9debc6c6e5d2e3d9c8c1c0994294ab0108f60e8163d1f7dddd959eab3945bc457469ce3c6239858ab0f339fe6eb9ba07a26fbe3a7e0ca973405a765541c63ab61911fca889a7e6ea7e0b6ed358d69fd75b44277ada502dd3d841f836b76774d9d069d77ab3f0613dbb7a73ffc3a861fc6e0c9fbdc0b9fe93cf5705770cef48d8" + ], + [ + "rsaExponent1", + "b92a30d0042e41c3ef3047b7e67bf6c39376ceaf48072ff390dce5290fa8b165b9c12ef37c34b0b4eb1744c75fb39ff8ca5bdc8e7a27151d108b1a83b979a69497528840f86519cdc2a467d127d82ec14cf8d38ed4959488df76c87fbcc3cdf69f78609eaeb5a7d27c2afde593b884282e8f6029d5a80057490f586c94a058f3" + ], + [ + "rsaExponent2", + "54f09583e49b40224d136f6cd20367eb4541395243f84d63a0121833b6fc6d3efac28836e8fe93ebf16a09fce2ddb33d58763a0e0dd8827207c61ee3151352fdf1870e2dad6aa79aa43ad5ef77ecdc555abfd7a19b238faad1134dc03a1a12d7b8f353270a72502c8a347e63d2d4fdcc41b2f090b82512f664e41d4cfc2d0e5" + ], + [ + "rsaFactor1", + "d1b34616418b43d2676282284af0354bb48a7046ab2f5235e4e6e526e01b9bed4f681299bd907afd03573daa7d88a2d0977db02dc100dc011abbd2258ed1b24d3d2566b6b242da65afe51431509a54afc8450c7ca0a366e08adeb3b6d188f348941a98a011380792faeeb52c982ffd19e0bd551443ba381df245780578f22a3b" + ], + [ + "rsaFactor2", + "c2e993c2908e996f44516e00df96f6cf367798ea0869b5f5cb6ac6d41b64dc3f7655377198ee9e6d54f4ea67f30b3dc4bae7a4405261620c6ced45a3d172603e920b2f15546772ecbea6994319a388b254ce66204b326fb5248df9011305ff031e12c0b3d2e849b4cc85bdf58a9ec4c7a1e937890aaa314b8207c3a192a99d05" + ], + [ + "securityBits", + "112" + ], + [ + "algorithmName", + "rsaEncryption" + ] + ], + "references": { + "component": [ + "0323632a-1b50-5e23-a86d-520ff8c006f8", + "262f2172-b284-5a46-ae60-b98b3b0103ea", + "7213433f-a16b-5f08-9680-0849ed73f523" + ] + }, + "size": 2048, + "type": "private-key", + "violations": [] + } + }, + "protocols": null + }, + "dependencies": { + "09508866-ba4b-40eb-b48f-eb78b752753c": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "System.Windows.Forms", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0c78620c-0456-419a-ac41-97a7607a2b60": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "cphost.exe", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0cfcc271-596e-4cbc-bba5-40dc2e3240b1": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "cpe:2.3:a:gnu:glibc:*:*:*:*:*:*:*:*", + "edit": null, + "homepage": "", + "license": "Weak Copyleft (LGPL-2.1-or-later)", + "original": [], + "product": "glibc", + "publisher": "GNU Project", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "12fd8f38-1dad-4893-9bc8-61b013411a08": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "winmm", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "15e5e5da-4ee2-4d2c-b85c-a9f5f563d705": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libm", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "19968211-04bd-4e31-bd73-b7bc34f5c3c1": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "shell32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "1c667af8-908b-4121-9089-42cb208f11da": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "msvcrt", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "23ae9655-e2c7-4ac8-8466-c260ece0a3ce": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libdl.so.2", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "267f3ad7-9995-4dca-9285-38d7c26d295d": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "gdi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "3351bf43-dd6d-4e87-bec6-7adbaa57ad10": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "advapi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "3763e742-c42e-4522-94f7-23b4f5265bc1": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "oleaut32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "3f5fa9a9-18e3-4b89-a8d1-10c50a99c701": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ole32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4060af51-2f85-4992-a730-4f21d71de7a8": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Weak Copyleft (LGPL-2.1-or-later)", + "original": [], + "product": "libpthread", + "publisher": "GNU Project", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4846a5e7-71e6-4483-b2ee-e8b02c3e2fd0": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "setupapi", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4da709e1-77c2-40a9-b809-600f07b6d7d3": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "wsock32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4e0f25b6-d614-4b09-8c8b-20d292aa2a14": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "clbs19.dll", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4f4e71fa-cef5-4a93-ab99-f0f86e35a783": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "mfc42", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "5d159cd0-d20e-4e13-bc23-4fd631685f6f": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libncurses.so.5", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "5ed655e4-a30d-4ff3-a106-21491138521b": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libuuid.so.1", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "642eaf6e-ebb7-4497-bacb-b6f36165b359": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "kernel32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "6561b124-ade5-488c-bcb5-2207a1115d3c": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "clbr19.dll", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "69b20416-f389-4e7b-a53b-8caba51e3e59": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "comdlg32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "71352b6d-fcc2-4ffc-acde-2be11f2e4416": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "mscorlib", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "76b53b45-596b-4d65-9b5c-d907109842d4": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "opengl32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "790e169e-e6d9-4134-a0fc-a7b5c65798b8": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libpthread.so.0", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "79ac6cf1-a115-4980-8636-a2fd93f9726b": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "glu32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "923bcf86-c9a0-41af-a25c-3f9db1ad71dd": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Permissive (BSD-3-Clause)", + "original": [], + "product": "libuuid", + "publisher": "Theodore Ts'o", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "a2233343-6a1c-43f9-bb1c-6739ab899616": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "user32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "a8ff1e7a-366a-48a1-9ec8-f971e9a4ca21": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libm.so.6", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "aa43e0a2-2383-4751-91c1-9f738ec33b85": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ntvdm", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "afbbe7b1-6ba7-4972-b436-0f6fd9dd4181": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "version", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "b1a13169-30fe-4ed1-a1fd-c660501084ee": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "libc.so.6", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "b3351c73-7ee4-4677-b8db-53a365d09cbe": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "System", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "b7bc22b1-3361-46c2-87b7-080809ea27e5": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Weak Copyleft (LGPL-2.1-or-later)", + "original": [], + "product": "libdl", + "publisher": "GNU Project", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "c770ffc8-412f-45ab-b301-86ab6dc69965": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "/usr/lib/libSystem.B.dylib", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "cc2d4b20-8548-481b-9cdc-08e2f545d627": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "dsound", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "dbdd00c4-6599-40f2-8964-6cdda4a604be": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "System.Drawing", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "e73c76a7-88d6-4fb5-a0e7-e1f154d97989": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "ttf2bmp", + "publisher": "", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "1.0.0.0", + "vulnerabilities": null + }, + "ec3f93c4-5adb-47d1-9611-ceb1eae4bd60": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "hal", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "edce32b2-b7ac-4df0-b4f7-20333d3d17c3": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "mscoree", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "f5f5d03d-adbc-495d-b90b-995d5ebaaa7a": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "crtdll", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "f9118619-2a61-46d6-a336-b091a84ac8da": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ntoskrnl", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "ffd3df16-b825-4672-ba88-4fbe0eda3a90": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "imm32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + } + }, + "indicators": { + "00031b0d-66c7-444d-a04d-985897ce5c4a": { + "category": "macro", + "description": "Contains HTML.", + "occurrences": 24, + "priority": 2, + "references": [], + "rule_id": "BH13343", + "violations": 0 + }, + "00b6c44a-6351-480d-a994-cda1c365afe2": { + "category": "network", + "description": "Contains URLs related to paste-and-share services.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH16122", + "violations": 0 + }, + "00cbd69d-5721-42e2-a37e-c10050684c0a": { + "category": "file", + "description": "Formats a disk.", + "occurrences": 3, + "priority": 6, + "references": [], + "rule_id": "BH12357", + "violations": 0 + }, + "02179a42-e2b5-420f-bc79-90125cbef9bc": { + "category": "file", + "description": "Queries the timestamp of a file/directory.", + "occurrences": 3, + "priority": 3, + "references": [], + "rule_id": "BH13425", + "violations": 0 + }, + "04247007-cfa1-4da6-a3bc-7a388c099338": { + "category": "monitor", + "description": "Detects/enumerates process modules.", + "occurrences": 46, + "priority": 3, + "references": [], + "rule_id": "BH19545", + "violations": 0 + }, + "057862c0-b189-4377-979a-9befa8712f2b": { + "category": "search", + "description": "Queries drive type.", + "occurrences": 6, + "priority": 3, + "references": [], + "rule_id": "BH13422", + "violations": 0 + }, + "05c05fc6-f3ce-401c-a6f0-96569548b88f": { + "category": "file", + "description": "Accesses the /etc/apt directory.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12991", + "violations": 0 + }, + "05e2a73b-c99e-4ccc-9c4b-c26ce08f675d": { + "category": "search", + "description": "Enumerates network share/resource information.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH19219", + "violations": 0 + }, + "067ff95c-d969-4793-9b0a-4d0c3f410dab": { + "category": "autostart", + "description": "Tampers with scheduled tasks and jobs.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH12719", + "violations": 0 + }, + "0716d9bc-2061-4dcb-ac3d-9553ec31062a": { + "category": "search", + "description": "Queries the priority of a thread.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13427", + "violations": 0 + }, + "075e16cb-4a60-4e62-ae08-946d796ec5dc": { + "category": "file", + "description": "Accesses the /proc/cpuinfo pseudo-file.", + "occurrences": 15, + "priority": 4, + "references": [], + "rule_id": "BH19474", + "violations": 0 + }, + "076b62ea-a295-43ea-ba96-a7c65dcb5dc1": { + "category": "search", + "description": "Queries the process ID.", + "occurrences": 7, + "priority": 3, + "references": [], + "rule_id": "BH13431", + "violations": 0 + }, + "07b455dd-954f-4ab5-8109-c5cf437250db": { + "category": "file", + "description": "Accesses an Xorg configuration file.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH12861", + "violations": 0 + }, + "0835215b-d716-473d-9b2d-876d3ecd6cd1": { + "category": "settings", + "description": "Tampers with system environment variables.", + "occurrences": 41, + "priority": 7, + "references": [], + "rule_id": "BH12739", + "violations": 0 + }, + "08e3d496-eccd-4e56-b629-9dbaab531969": { + "category": "registry", + "description": "Opens registry keys.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH13288", + "violations": 0 + }, + "08ea7fb0-888d-4c6f-96f1-c1a253271522": { + "category": "registry", + "description": "Closes a previously open registry key.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13406", + "violations": 0 + }, + "09836009-363a-4e4c-aac1-0f660b53a321": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the CAST5 symmetric-key block cipher.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13653", + "violations": 0 + }, + "0a11b0ff-cff3-4c17-a4f7-ec5b57907bbd": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE-256 hash function.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13630", + "violations": 0 + }, + "0a32998d-2600-4b7a-9ecc-7def1ac02a82": { + "category": "stealth", + "description": "Suppresses warnings.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13596", + "violations": 0 + }, + "0a591ded-5ac6-4591-9b2e-286ab2a38eda": { + "category": "file", + "description": "Accesses the /dev/urandom pseudo-file.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12998", + "violations": 0 + }, + "0aa42c7d-f0e2-4376-aea5-6dc4db5e2a85": { + "category": "monitor", + "description": "Might enumerate user agent of the current browser.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH19564", + "violations": 0 + }, + "0acf480e-aa50-412d-8a55-742a46f73d7e": { + "category": "search", + "description": "Queries the free disk space.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13420", + "violations": 0 + }, + "0ade7925-6336-45c1-a369-75e22d8a1a8e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the K-283 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13692", + "violations": 0 + }, + "0b2d1e38-dcf5-4cae-b553-6bd8d5700e71": { + "category": "network", + "description": "Contains URLs with unusual hostname lengths.", + "occurrences": 93, + "priority": 4, + "references": [], + "rule_id": "BH16368", + "violations": 0 + }, + "0bf1a70a-c6da-4a84-8e31-dfef5edad476": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP512t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13755", + "violations": 0 + }, + "0c37d1db-a0dd-41c0-92d3-07fbf9376bc3": { + "category": "file", + "description": "Creates/opens files in Windows system directories.", + "occurrences": 10, + "priority": 4, + "references": [], + "rule_id": "BH13335", + "violations": 0 + }, + "0d6b4fdf-61cd-4860-9565-53a376117593": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the P-256 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 6, + "priority": 1, + "references": [], + "rule_id": "BH13698", + "violations": 0 + }, + "0d7fb69c-e2bc-4ad1-ac1e-6bdbac54ad4f": { + "category": "memory", + "description": "Writes to other process' memory.", + "occurrences": 3, + "priority": 5, + "references": [], + "rule_id": "BH12821", + "violations": 0 + }, + "0da9dc9c-e613-4019-9331-4e9700a09797": { + "category": "search", + "description": "Enumerates operating system version.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH19508", + "violations": 0 + }, + "0ec9ad17-97bb-460f-8e5a-9e2a7c05eaf3": { + "category": "file", + "description": "Accesses /etc/passwd file.", + "occurrences": 3, + "priority": 5, + "references": [], + "rule_id": "BH17109", + "violations": 0 + }, + "0f8f39cb-1d36-4cd1-8e59-a517018c9747": { + "category": "network", + "description": "Contains URLs with suspicious query parameters.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH16118", + "violations": 0 + }, + "10248a36-fb6c-45e9-be82-150c9cd561f4": { + "category": "steal", + "description": "Contains Maestro credit card numbers.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH13365", + "violations": 0 + }, + "108979de-f755-4a98-9345-66bebae5cb5c": { + "category": "steal", + "description": "Contains Diners Club International credit card numbers.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH13366", + "violations": 0 + }, + "10b0463f-a7cd-4ad8-8892-ff2cbc1fde40": { + "category": "network", + "description": "Contains URLs related to online mail providers.", + "occurrences": 37, + "priority": 2, + "references": [], + "rule_id": "BH16365", + "violations": 0 + }, + "10f34abb-5521-4e95-bede-935d000d92d4": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb272w1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13732", + "violations": 0 + }, + "116c42d0-e17b-4ee8-a869-8a94c102f18d": { + "category": "file", + "description": "Accesses the /dev/null pseudo-file.", + "occurrences": 259, + "priority": 5, + "references": [], + "rule_id": "BH13000", + "violations": 0 + }, + "11a3a495-6dab-4198-b8b9-ac4efa4ab3b3": { + "category": "file", + "description": "Reads from files.", + "occurrences": 67, + "priority": 2, + "references": [], + "rule_id": "BH13328", + "violations": 0 + }, + "142b175b-62d6-49f8-b425-93d564206371": { + "category": "settings", + "description": "Queries the system time.", + "occurrences": 24, + "priority": 3, + "references": [], + "rule_id": "BH13417", + "violations": 0 + }, + "142d3be1-9243-4565-a899-b9dc707c01c3": { + "category": "steal", + "description": "Accesses clipboard.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13350", + "violations": 0 + }, + "16365166-6d33-4318-a9db-2a57c580c625": { + "category": "execution", + "description": "Clears the Command Prompt window.", + "occurrences": 9, + "priority": 2, + "references": [], + "rule_id": "BH13318", + "violations": 0 + }, + "16709b66-9044-44d3-bd09-d8d6ff8c6df7": { + "category": "execution", + "description": "Imports the \"os\" module, which contains miscellaneous operating system interfaces.", + "occurrences": 45, + "priority": 2, + "references": [], + "rule_id": "BH13580", + "violations": 0 + }, + "169f94d8-0e8d-4621-9b26-621c60ea2224": { + "category": "execution", + "description": "Executes another batch file.", + "occurrences": 145, + "priority": 5, + "references": [], + "rule_id": "BH12330", + "violations": 0 + }, + "17e80679-bd31-435b-afd3-46def7dbec7c": { + "category": "packer", + "description": "Decompresses data using the GZip algorithm.", + "occurrences": 14, + "priority": 5, + "references": [], + "rule_id": "BH15204", + "violations": 0 + }, + "188c63d1-69d9-44ac-83c3-87e0ea9768c2": { + "category": "permissions", + "description": "Enumerates user/account privilege information.", + "occurrences": 12, + "priority": 4, + "references": [], + "rule_id": "BH19330", + "violations": 0 + }, + "18b8952b-541d-48b2-afa5-f15b38110e6d": { + "category": "search", + "description": "Queries memory related information.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH13428", + "violations": 0 + }, + "18f71544-e3bf-4a59-90e4-7bf77d7f4c72": { + "category": "network", + "description": "Receives data from a connected TCP socket.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH16164", + "violations": 0 + }, + "19932b10-7116-4fc6-95ef-b54e56ffc6a9": { + "category": "file", + "description": "Checks if a file or a directory exists.", + "occurrences": 6, + "priority": 2, + "references": [], + "rule_id": "BH13433", + "violations": 0 + }, + "1a88ce45-5a8c-4ea6-8438-e5a7be2d5765": { + "category": "execution", + "description": "Tampers with system shutdown.", + "occurrences": 11, + "priority": 4, + "references": [], + "rule_id": "BH12744", + "violations": 0 + }, + "1aad3ea5-892a-4830-9635-7f60f031c53c": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect163r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13715", + "violations": 0 + }, + "1ac60a28-718d-4e65-aec2-46394fa84f7f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the DES-X symmetric-key block cipher.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13657", + "violations": 0 + }, + "1b26122f-671f-459e-9b22-bf5b7658c2bd": { + "category": "settings", + "description": "Adds an apt repository.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH13018", + "violations": 0 + }, + "1b5aeb20-d6aa-4002-8a96-6d9a68ca4fd7": { + "category": "document", + "description": "Might access embedded frames.", + "occurrences": 5, + "priority": 2, + "references": [], + "rule_id": "BH13566", + "violations": 0 + }, + "1bc755f2-573a-4551-b54d-d76e61687884": { + "category": "network", + "description": "Contains URLs related to file download services.", + "occurrences": 15, + "priority": 4, + "references": [], + "rule_id": "BH16373", + "violations": 0 + }, + "1c80dcf2-b098-4d88-8b5a-47d4e146f76f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb163v1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13721", + "violations": 0 + }, + "1d550cdf-7751-4f5c-88a4-ed829953e6c7": { + "category": "packer", + "description": "Compresses data using the Zlib algorithm.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH15207", + "violations": 0 + }, + "1dda01e8-6e26-4325-84c6-185e356751bb": { + "category": "search", + "description": "Enumerates user locale information.", + "occurrences": 100, + "priority": 1, + "references": [], + "rule_id": "BH19548", + "violations": 0 + }, + "1f32cd0f-6a53-4768-beab-341d22feb405": { + "category": "execution", + "description": "Imports the \"subprocess\" module, which provides functions for creating new processes.", + "occurrences": 5, + "priority": 2, + "references": [], + "rule_id": "BH13579", + "violations": 0 + }, + "1f4ca74d-dbfb-4b22-8be4-071fd80830ab": { + "category": "execution", + "description": "Contains reference to ntdll.dll which is NT Layer DLL.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH12844", + "violations": 0 + }, + "1fde4ff3-842f-44d4-8708-db5b38b7c963": { + "category": "settings", + "description": "Enumerates system variables.", + "occurrences": 42, + "priority": 2, + "references": [], + "rule_id": "BH19547", + "violations": 0 + }, + "211ea83f-23f5-44ea-8ea9-e142fa8bbf34": { + "category": "search", + "description": "Enumerates files in a given directory.", + "occurrences": 4, + "priority": 3, + "references": [], + "rule_id": "BH19175", + "violations": 0 + }, + "21525e9c-ae5e-4d6c-b31d-5fdfaf5780f9": { + "category": "network", + "description": "Contains URLs with an unusual number of subdomains.", + "occurrences": 56, + "priority": 4, + "references": [], + "rule_id": "BH16367", + "violations": 0 + }, + "2152eac1-672f-4537-9874-d53dc405576b": { + "category": "execution", + "description": "Imports the \"json\" module, which implements functions for manipulating JSON files.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH15339", + "violations": 0 + }, + "22138e14-f0b8-4210-822f-d65bab45a6d3": { + "category": "file", + "description": "Uses json-related functions.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13578", + "violations": 0 + }, + "224a201b-813a-443b-8c7b-879e249ff13b": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp256k1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13710", + "violations": 0 + }, + "22d2cfc8-9678-4e48-b2d9-a5d8cd12f06e": { + "category": "network", + "description": "Downloads files via HTTP.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH16154", + "violations": 0 + }, + "23e0ec46-71cc-437d-8266-fb7650087975": { + "category": "file", + "description": "Queries file information.", + "occurrences": 5, + "priority": 4, + "references": [], + "rule_id": "BH13444", + "violations": 0 + }, + "2501b0be-04f3-4293-bd23-c992f75f7e4c": { + "category": "permissions", + "description": "Requests permission required to lock physical pages in memory.", + "occurrences": 6, + "priority": 4, + "references": [], + "rule_id": "BH12515", + "violations": 0 + }, + "264c511e-f0d9-47e8-b7f1-98f591f6601d": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb191v2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13726", + "violations": 0 + }, + "2678b6d0-46e5-4417-8394-2ba39fec3576": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp112r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13701", + "violations": 0 + }, + "267c90f8-afd3-4d1b-a93a-822b0b2fd2f6": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP512r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13754", + "violations": 0 + }, + "282e7b18-6437-4573-bf6d-dece0566cb8a": { + "category": "behavior", + "description": "Uses math functions.", + "occurrences": 10, + "priority": 1, + "references": [], + "rule_id": "BH13438", + "violations": 0 + }, + "28582dc4-8a03-45b2-824e-f7f2d717c5c2": { + "category": "search", + "description": "Looks up user's information.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH19482", + "violations": 0 + }, + "2881b61b-b64f-440a-9b71-3dc5535d1f74": { + "category": "execution", + "description": "Displays a dialog box with a message.", + "occurrences": 15, + "priority": 2, + "references": [], + "rule_id": "BH13408", + "violations": 0 + }, + "288f040f-aafe-4c4d-8e50-b0c05b86f49a": { + "category": "packer", + "description": "Encrypts a password using the crypt() Unix password encryption function.", + "occurrences": 4, + "priority": 5, + "references": [], + "rule_id": "BH15209", + "violations": 0 + }, + "28b5f472-d599-4f50-b15d-5b4436248ea7": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the DES symmetric-key block cipher.", + "occurrences": 8, + "priority": 1, + "references": [], + "rule_id": "BH13656", + "violations": 0 + }, + "2964bb2d-78b0-44b5-b108-c2f3c3f64f08": { + "category": "execution", + "description": "Imports the \"re\" module, which provides regular expression matching operations.", + "occurrences": 30, + "priority": 2, + "references": [], + "rule_id": "BH13591", + "violations": 0 + }, + "29c56494-b33a-4345-a09e-761b6b5de6ff": { + "category": "file", + "description": "Accesses a .git directory.", + "occurrences": 5, + "priority": 5, + "references": [], + "rule_id": "BH13058", + "violations": 0 + }, + "2c3d68f2-143e-4693-9d2e-fb55826d899c": { + "category": "search", + "description": "Accesses the kernel parameters.", + "occurrences": 4, + "priority": 4, + "references": [], + "rule_id": "BH12925", + "violations": 0 + }, + "2c56e1cf-68fc-4890-bbe0-1b8bc91b8a85": { + "category": "network", + "description": "Tampers with the IP routing table.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12664", + "violations": 0 + }, + "2c5bbff0-0b44-4663-a6bd-b59b51537756": { + "category": "file", + "description": "Calculates the SHA-1 hash of data.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH15238", + "violations": 0 + }, + "2e3ab2b5-60ff-4347-acfd-b2072d4afc42": { + "category": "execution", + "description": "Imports the java.lang.StringBuilder class, which contains methods for string manipulation.", + "occurrences": 12, + "priority": 1, + "references": [], + "rule_id": "BH13523", + "violations": 0 + }, + "2eebaba1-02c2-4c63-ad06-a8378b12fc28": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP224r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13746", + "violations": 0 + }, + "303cb573-267e-43ce-a8c6-5604cb3a046e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb431r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13736", + "violations": 0 + }, + "305d98e2-7ed6-44ef-b26c-0153bf56f8b9": { + "category": "network", + "description": "Downloads a file.", + "occurrences": 10, + "priority": 5, + "references": [], + "rule_id": "BH16145", + "violations": 0 + }, + "31023f42-dc25-4372-9a82-738276ad136d": { + "category": "execution", + "description": "Terminates the current running process.", + "occurrences": 10, + "priority": 3, + "references": [], + "rule_id": "BH13255", + "violations": 0 + }, + "316fecf0-a7f7-4088-ae06-79f84dba4e98": { + "category": "search", + "description": "Queries the value of an environment variable.", + "occurrences": 22, + "priority": 3, + "references": [], + "rule_id": "BH12858", + "violations": 0 + }, + "31729e70-f8a4-481f-be53-073f7225e8af": { + "category": "execution", + "description": "Executes commands in command line.", + "occurrences": 9, + "priority": 3, + "references": [], + "rule_id": "BH12338", + "violations": 0 + }, + "31c6cc95-77dd-4015-8d09-a291d6908e04": { + "category": "file", + "description": "Removes a directory.", + "occurrences": 15, + "priority": 3, + "references": [], + "rule_id": "BH13353", + "violations": 0 + }, + "31e61b34-c140-489f-90de-b9b8a730d7f5": { + "category": "execution", + "description": "Writes data to the STDOUT stream.", + "occurrences": 39, + "priority": 3, + "references": [], + "rule_id": "BH13412", + "violations": 0 + }, + "31f01507-54dc-410a-bd1e-6d9c04b837a0": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Adler-32 checksum algorithm.", + "occurrences": 23, + "priority": 1, + "references": [], + "rule_id": "BH13757", + "violations": 0 + }, + "32472b89-b8d6-4d5c-9231-d82d1f6c2daf": { + "category": "execution", + "description": "Creates a thread.", + "occurrences": 14, + "priority": 3, + "references": [], + "rule_id": "BH13418", + "violations": 0 + }, + "329fef74-5c16-4a94-a9e1-9386a70dd56f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb163v2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13722", + "violations": 0 + }, + "32b2d356-d794-4694-9681-a8716a4fbdb4": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the P-384 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13699", + "violations": 0 + }, + "33604cfa-b8a8-4023-b4b9-fb509d067407": { + "category": "network", + "description": "Contains URLs related to release pages of projects hosted on GitHub.", + "occurrences": 7, + "priority": 4, + "references": [], + "rule_id": "BH16307", + "violations": 0 + }, + "33939e7a-2eda-49fe-9292-6caaae8c1c44": { + "category": "network", + "description": "Contains URLs that contain basic authentication credentials.", + "occurrences": 27, + "priority": 5, + "references": [], + "rule_id": "BH16104", + "violations": 0 + }, + "33f5eadb-8934-4686-a39f-fb677cbe470c": { + "category": "anomaly", + "description": "Contains the LRO (left-to-right override) Unicode character, commonly used with bidirectional text.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15224", + "violations": 0 + }, + "3444f668-c2af-462a-8c4d-7ea2fdc30b79": { + "category": "search", + "description": "Implements drag-and-drop functionality, or has access to dragged-and-dropped files.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH13381", + "violations": 0 + }, + "345624e2-6351-4f88-b7d9-0337657bfaa8": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect131r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13713", + "violations": 0 + }, + "350100b1-c0ac-4120-ab05-d219343c63a4": { + "category": "execution", + "description": "Loads an ActiveX object or component.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13446", + "violations": 0 + }, + "350b1093-4262-411a-877b-a84a153b33dc": { + "category": "execution", + "description": "Imports the \"time\" module, which provides various time-related functions.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13592", + "violations": 0 + }, + "35118a1b-b6a9-4e03-b94b-138e44e38cf4": { + "category": "document", + "description": "Might access outer frame.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13565", + "violations": 0 + }, + "3546c470-71ad-46d6-b1e0-002e954357cc": { + "category": "execution", + "description": "Enumerates services on the computer.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH19266", + "violations": 0 + }, + "354a12d0-9b8f-4f4b-80b2-dad6bea6768c": { + "category": "file", + "description": "Closes a previously open file.", + "occurrences": 60, + "priority": 1, + "references": [], + "rule_id": "BH13434", + "violations": 0 + }, + "36901e39-a697-437d-90da-a76e27e1df77": { + "category": "steal", + "description": "Accesses shell history.", + "occurrences": 5, + "priority": 5, + "references": [], + "rule_id": "BH17321", + "violations": 0 + }, + "370bbb1e-47ef-4d6d-8561-265269d36733": { + "category": "memory", + "description": "Does process injection into the Windows Command Processor executable.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH12315", + "violations": 0 + }, + "3799989f-46d0-4169-9ad2-2a4c0b4483c5": { + "category": "packer", + "description": "Decodes hex or base64-encoded streams.", + "occurrences": 6, + "priority": 5, + "references": [], + "rule_id": "BH15154", + "violations": 0 + }, + "37d84143-b77d-4b99-8322-ad9b09345451": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP384r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13752", + "violations": 0 + }, + "38045610-16ec-4e28-b3b2-c0bb18fb39d0": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb359v1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13734", + "violations": 0 + }, + "38cd4cb7-0819-497e-8390-585dac3ecefa": { + "category": "registry", + "description": "Accesses/modifies registry.", + "occurrences": 5, + "priority": 4, + "references": [], + "rule_id": "BH13330", + "violations": 0 + }, + "3951a95c-8e40-4826-83e7-0faa8bfc7fe7": { + "category": "network", + "description": "Contains URLs that reside in regions sanctioned by the United States.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH16320", + "violations": 0 + }, + "3ad7f160-87b7-4c9f-a11d-1a127a76e7c8": { + "category": "behavior", + "description": "Replaces a substring in a string using a regular expression.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13512", + "violations": 0 + }, + "3b0252ac-b69c-4949-b4a6-f268e632a50c": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the K-571 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13696", + "violations": 0 + }, + "3b478829-8d48-4da4-b79c-c850be0572ef": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-224 hash function, from the SHA-2 hash family.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13644", + "violations": 0 + }, + "3d0c470d-808a-49a6-8bb6-d53e45fb16f1": { + "category": "search", + "description": "Queries information about a display monitor.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH13282", + "violations": 0 + }, + "3dac4d93-57a8-4953-9e58-9cbfecdd904b": { + "category": "settings", + "description": "Changes the priority of a thread.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13413", + "violations": 0 + }, + "3dc950e5-c9c2-4adb-8b7a-72e9de20b7ce": { + "category": "anomaly", + "description": "Contains the RLE (right-to-left embedding) Unicode character, commonly used with bidirectional text.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15222", + "violations": 0 + }, + "3e428b19-237a-4b95-97df-f94fe031a8ca": { + "category": "signature", + "description": "Contains compression libraries.", + "occurrences": 17, + "priority": 3, + "references": [], + "rule_id": "BH13349", + "violations": 0 + }, + "40577e8b-3819-44fd-9c41-124cc8c39be1": { + "category": "monitor", + "description": "Takes screenshots.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12590", + "violations": 0 + }, + "409547fc-e041-490f-9726-aae18b2f43fb": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP256r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13748", + "violations": 0 + }, + "409beeda-5f25-48de-bc31-6bc8593089f6": { + "category": "execution", + "description": "Creates a service.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH12203", + "violations": 0 + }, + "41479fa0-6247-4a8f-a924-3c4f0ca6016f": { + "category": "behavior", + "description": "Creates a regular expression.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13511", + "violations": 0 + }, + "41ebfa31-4204-44f5-bfc6-a3f7bba33387": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Raw DES symmetric-key block cipher.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13666", + "violations": 0 + }, + "42e43b09-24e7-4d71-acaa-860e68739d4b": { + "category": "file", + "description": "Installs packages via apt.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH12387", + "violations": 0 + }, + "432d55a8-0a82-49ba-a0a3-6f4e42ea1cab": { + "category": "packer", + "description": "Contains potentially obfuscated code or data.", + "occurrences": 4, + "priority": 7, + "references": [], + "rule_id": "BH15182", + "violations": 0 + }, + "43420fea-fe6a-472a-b4a0-966d0d5770b6": { + "category": "execution", + "description": "Executes a file.", + "occurrences": 20, + "priority": 6, + "references": [], + "rule_id": "BH13331", + "violations": 0 + }, + "43469524-b7cb-4fea-85d3-a6ab3c4e676d": { + "category": "execution", + "description": "Imports the \"sys\" module, which provides access to system-specific parameters and functions.", + "occurrences": 88, + "priority": 2, + "references": [], + "rule_id": "BH13584", + "violations": 0 + }, + "436bb005-36a9-4ce6-86bd-ec484c18fccb": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the prime239v3 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13741", + "violations": 0 + }, + "43bcddd4-db69-4ae3-b73a-5b9e1a55983c": { + "category": "stealth", + "description": "Tampers with window transparency settings.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH12766", + "violations": 0 + }, + "44256906-1fb1-4619-8bf9-f30155c68c0e": { + "category": "file", + "description": "Queries version information of a file.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13426", + "violations": 0 + }, + "470fe3a1-7282-4451-a554-b373bdcafa4f": { + "category": "network", + "description": "Listens on incoming network connections.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH12400", + "violations": 0 + }, + "47981789-8928-4e91-977f-fe2151633026": { + "category": "network", + "description": "Listens for incoming remote procedure calls.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH16227", + "violations": 0 + }, + "479fd3a2-4379-4972-ab14-97e4e5868903": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE2 hash function.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13628", + "violations": 0 + }, + "47e99703-b65a-46ba-aca6-4bd11c0eeb94": { + "category": "file", + "description": "Renames a file or directory.", + "occurrences": 9, + "priority": 5, + "references": [], + "rule_id": "BH13581", + "violations": 0 + }, + "4851acd2-e915-4384-a10e-e56f300a67a7": { + "category": "execution", + "description": "Compiles an Assembly program.", + "occurrences": 4, + "priority": 3, + "references": [], + "rule_id": "BH13100", + "violations": 0 + }, + "4967a63c-0777-4b41-a691-f7d7e19a0ec8": { + "category": "packer", + "description": "Decompresses data using the BZip2 algorithm.", + "occurrences": 6, + "priority": 5, + "references": [], + "rule_id": "BH15202", + "violations": 0 + }, + "4988387a-da94-49df-b2a7-485faea99972": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect113r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13711", + "violations": 0 + }, + "4c0b6b07-aea5-44f9-a50e-2d40d7182afd": { + "category": "packer", + "description": "Decodes data using the Base64 algorithm.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH15186", + "violations": 0 + }, + "4c348919-cd97-404a-b9e0-74d21ddf4bae": { + "category": "search", + "description": "Enumerates files.", + "occurrences": 22, + "priority": 2, + "references": [], + "rule_id": "BH19546", + "violations": 0 + }, + "4cd1b233-2087-4afd-bdc4-0bf8fa217b01": { + "category": "file", + "description": "Deletes a file/directory.", + "occurrences": 349, + "priority": 5, + "references": [], + "rule_id": "BH12223", + "violations": 0 + }, + "4e57bc1c-25cd-455a-8f9f-3b3d790436fa": { + "category": "search", + "description": "Enumerates system drivers.", + "occurrences": 8, + "priority": 5, + "references": [], + "rule_id": "BH19289", + "violations": 0 + }, + "50184532-1e19-4282-9c57-09e5fbb8fd6c": { + "category": "network", + "description": "Accesses the IP routing table.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH12109", + "violations": 0 + }, + "507e421d-13b2-4191-92c7-4e672f80e304": { + "category": "network", + "description": "Opens a URL.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH16220", + "violations": 0 + }, + "5166321e-1c2e-49fb-921d-2030d9a55d9d": { + "category": "behavior", + "description": "Uses logical functions.", + "occurrences": 2, + "priority": 1, + "references": [], + "rule_id": "BH13500", + "violations": 0 + }, + "53799908-782c-4aab-bf32-e2d5ce406a62": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD5 hash function.", + "occurrences": 28, + "priority": 1, + "references": [], + "rule_id": "BH13638", + "violations": 0 + }, + "53aa2330-8008-487f-8ca5-29cc9a868e7e": { + "category": "search", + "description": "Reads path to temporary file location on Windows.", + "occurrences": 6, + "priority": 4, + "references": [], + "rule_id": "BH13388", + "violations": 0 + }, + "53c13c34-ae04-4d0d-9cdd-58ab6d8fb33d": { + "category": "anomaly", + "description": "Writes text to the clipboard.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13429", + "violations": 0 + }, + "53d94539-a929-4ef7-856c-c1227bc6bf64": { + "category": "file", + "description": "Lists directory contents.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13372", + "violations": 0 + }, + "53fab95e-7157-4e5c-9997-5a05814474fd": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the P-224 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13686", + "violations": 0 + }, + "54240c01-6fd3-49fa-ba61-2809bbe932d7": { + "category": "execution", + "description": "Contains a reference to a common dynamic library or an executable file.", + "occurrences": 1713, + "priority": 1, + "references": [], + "rule_id": "BH13314", + "violations": 0 + }, + "54363bda-34d2-4e64-a629-a98abf9c21eb": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the prime239v1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13739", + "violations": 0 + }, + "544145f8-f098-40c5-a373-0753d321cbba": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the K-233 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13690", + "violations": 0 + }, + "54b65409-8bd3-4087-9957-c091b8dd2ee4": { + "category": "file", + "description": "Accesses /etc/rc.d directory.", + "occurrences": 1, + "priority": 8, + "references": [], + "rule_id": "BH17110", + "violations": 0 + }, + "55241011-47aa-4e1d-a68d-a7077a1e14ed": { + "category": "file", + "description": "Accesses a block device pseudo-file.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12868", + "violations": 0 + }, + "5706653e-a7e2-4236-b40b-aae2db433103": { + "category": "memory", + "description": "Allocates additional memory in the calling process.", + "occurrences": 36, + "priority": 3, + "references": [], + "rule_id": "BH13404", + "violations": 0 + }, + "576c13e6-bbea-4905-996e-aa7e5c3b1859": { + "category": "network", + "description": "Contains email addresses.", + "occurrences": 7, + "priority": 2, + "references": [], + "rule_id": "BH13595", + "violations": 0 + }, + "58bba811-e468-41ba-a46e-da734ec91d68": { + "category": "monitor", + "description": "Logs timestamped data to file.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13403", + "violations": 0 + }, + "5972e7fa-f1c0-4f70-873f-737c7d5ad864": { + "category": "file", + "description": "Mounts filesystems or other media.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH13370", + "violations": 0 + }, + "59e43c62-ee44-410c-ae1e-4cc70a09cb01": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb239v1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13729", + "violations": 0 + }, + "5a729f70-4ac2-4ba4-a07b-9b2bdeade4a8": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp160r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13706", + "violations": 0 + }, + "5bb56c50-d66c-4c2c-852e-9e28312d577d": { + "category": "memory", + "description": "Possibly does process injection.", + "occurrences": 4, + "priority": 4, + "references": [], + "rule_id": "BH13348", + "violations": 0 + }, + "5e14caba-9e38-41ab-ac6d-2015ee7b8a29": { + "category": "file", + "description": "Accesses the /etc/ssl directory.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12926", + "violations": 0 + }, + "5e354913-5ebd-4463-a66c-9b6575862cff": { + "category": "search", + "description": "Enumerates user groups.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH19320", + "violations": 0 + }, + "5f043705-69f8-4489-9d94-1477e23451a8": { + "category": "file", + "description": "Accesses /etc/group file.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH17102", + "violations": 0 + }, + "60a0c85f-0bd9-42fb-9c9d-82c2617e455f": { + "category": "execution", + "description": "Controls a service.", + "occurrences": 3, + "priority": 3, + "references": [], + "rule_id": "BH12463", + "violations": 0 + }, + "60dd2796-d9d2-4cac-abce-409e9822f1c2": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb208w1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13728", + "violations": 0 + }, + "63256d39-8add-4507-a6cd-37bcc4fa7ade": { + "category": "execution", + "description": "Links an object file.", + "occurrences": 24, + "priority": 3, + "references": [], + "rule_id": "BH13097", + "violations": 0 + }, + "6339d8b0-7dbb-435b-85c3-5763b62d3647": { + "category": "execution", + "description": "Schedules code execution for a later time.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH12555", + "violations": 0 + }, + "63cf8b8e-0035-46d9-bb5e-4e7fbf8b499d": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-512 hash function, from the SHA-2 hash family.", + "occurrences": 11, + "priority": 1, + "references": [], + "rule_id": "BH13647", + "violations": 0 + }, + "63dfdb3e-a27c-4457-bcd3-a04e795696cb": { + "category": "search", + "description": "Retrieves the name of the user associated with the process.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH19452", + "violations": 0 + }, + "663ee377-a554-49bb-b878-0c5d16161362": { + "category": "document", + "description": "Might parse XML or HTML source string into a document.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13550", + "violations": 0 + }, + "6640b424-ddb9-42b1-a570-4fd236a904ee": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP384t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13753", + "violations": 0 + }, + "6646bbbd-b14f-4474-a73d-4bddfb36f1d8": { + "category": "network", + "description": "Contains URLs related to banking and monetary institutions.", + "occurrences": 28, + "priority": 7, + "references": [], + "rule_id": "BH16363", + "violations": 0 + }, + "66c94b30-ba7d-48a1-8651-3923eaa09053": { + "category": "execution", + "description": "Delays execution.", + "occurrences": 16, + "priority": 2, + "references": [], + "rule_id": "BH12220", + "violations": 0 + }, + "66f78604-a4c6-46a6-bb54-ad6fd12f2c4e": { + "category": "search", + "description": "Enumerates currently available disk drives.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH19145", + "violations": 0 + }, + "673cf52b-c1ec-409a-a05d-adcec8fcd077": { + "category": "network", + "description": "Contains IP addresses.", + "occurrences": 1036, + "priority": 5, + "references": [], + "rule_id": "BH16329", + "violations": 0 + }, + "67d05231-d02d-4d0e-bac3-ba9bd9607985": { + "category": "execution", + "description": "Uses the java.lang.reflect.Method.invoke method, which is used to call methods using reflection.", + "occurrences": 3, + "priority": 3, + "references": [], + "rule_id": "BH13126", + "violations": 0 + }, + "681ff3cb-3387-4638-a9e7-93f2169e2f74": { + "category": "signature", + "description": "Email message contains multiple phrases related to sensitive topics.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH16346", + "violations": 0 + }, + "689e54ae-2eba-4bd8-bac8-838a229b9fe1": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the P-521 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13700", + "violations": 0 + }, + "6952ad72-e08a-4a03-aa1b-82b588835024": { + "category": "file", + "description": "Truncates a file.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH13009", + "violations": 0 + }, + "6b8d419b-de1f-426d-af63-2db9b220cb21": { + "category": "search", + "description": "Checks operating system version.", + "occurrences": 31, + "priority": 5, + "references": [], + "rule_id": "BH13380", + "violations": 0 + }, + "6c4fc9a7-4301-4f67-adac-dff9b963f123": { + "category": "search", + "description": "Checks if the specified window is minimized.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH13443", + "violations": 0 + }, + "6cbdf0dd-3ee7-4070-801b-fcf0974f90d9": { + "category": "search", + "description": "Queries the effective user ID of a process.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH19522", + "violations": 0 + }, + "6d6774dd-95c3-4b12-9aa4-563004ad89d9": { + "category": "search", + "description": "Checks system information.", + "occurrences": 78, + "priority": 4, + "references": [], + "rule_id": "BH13482", + "violations": 0 + }, + "6d699860-88f1-45d6-9489-da824189f316": { + "category": "file", + "description": "Reads from files in Windows system directories.", + "occurrences": 9, + "priority": 4, + "references": [], + "rule_id": "BH13336", + "violations": 0 + }, + "6ed47afe-d9fa-421b-9c9f-2ee4d682eddc": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the CRC-32 cyclic redundancy check.", + "occurrences": 37, + "priority": 1, + "references": [], + "rule_id": "BH13758", + "violations": 0 + }, + "6ee9f0c3-ea16-405b-9a7e-756b708c6e31": { + "category": "execution", + "description": "Exits the script.", + "occurrences": 27, + "priority": 1, + "references": [], + "rule_id": "BH13450", + "violations": 0 + }, + "6f5cd023-8a2d-4600-9c90-9abd4cdf1bf3": { + "category": "execution", + "description": "Terminates a process.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH12793", + "violations": 0 + }, + "705f3437-a637-4064-8ff7-7cddb1728899": { + "category": "search", + "description": "Enumerates installed devices.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH19187", + "violations": 0 + }, + "70749b45-6cc3-454a-9d93-59c8f9b51060": { + "category": "execution", + "description": "Compiles a C++ program.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH13099", + "violations": 0 + }, + "7138ce40-2d07-4628-a634-3d61aeb9a791": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp112r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13702", + "violations": 0 + }, + "72bac7ba-3092-4e68-bbb1-48152ab16970": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the uuencode binary-to-text encoding algorithm.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13763", + "violations": 0 + }, + "73386de2-9363-4003-9111-834fe5a92c29": { + "category": "file", + "description": "The file is encrypted or contains an encrypted file.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH15326", + "violations": 0 + }, + "7366cbbc-2803-4149-960d-6a383b7128c2": { + "category": "file", + "description": "Accesses data from the proc filesystem.", + "occurrences": 16, + "priority": 6, + "references": [], + "rule_id": "BH12869", + "violations": 0 + }, + "73b0359f-90d0-43ab-ab00-3b3fedf8b22a": { + "category": "memory", + "description": "Frees previously allocated memory in the calling process.", + "occurrences": 25, + "priority": 2, + "references": [], + "rule_id": "BH13447", + "violations": 0 + }, + "74dafcea-7d38-4acb-bae3-57b4c8e16b13": { + "category": "file", + "description": "Queries the size of a file.", + "occurrences": 13, + "priority": 2, + "references": [], + "rule_id": "BH13410", + "violations": 0 + }, + "76c51f1c-6dbd-4053-b43a-29d766057373": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the RIPEMD160 hash function.", + "occurrences": 2, + "priority": 1, + "references": [], + "rule_id": "BH13640", + "violations": 0 + }, + "775f42e5-bd78-4eb6-8ef5-1de36bb13a6e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the B-163 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13687", + "violations": 0 + }, + "777843b7-5371-4a65-963b-0cfe1854530a": { + "category": "search", + "description": "Lists information about network adapters.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12404", + "violations": 0 + }, + "78228463-52ea-41e7-9702-e1fa439d1f56": { + "category": "network", + "description": "Opens a TCP connection to a remote server.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH16179", + "violations": 0 + }, + "788400a1-c9e5-49f0-a213-60779698dfeb": { + "category": "execution", + "description": "Contains reference to advapi32.dll which is Advanced Windows 32 Base API.", + "occurrences": 6, + "priority": 1, + "references": [], + "rule_id": "BH12838", + "violations": 0 + }, + "788fe3ad-31fb-46d6-84bb-b65cffc8b1d9": { + "category": "file", + "description": "Decompresses a Zip archive.", + "occurrences": 7, + "priority": 5, + "references": [], + "rule_id": "BH15214", + "violations": 0 + }, + "78911bfc-ae5a-4a01-afdb-e7d7c2c04e61": { + "category": "monitor", + "description": "Gets the dimensions of the browser window.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13568", + "violations": 0 + }, + "7933e327-e75b-47b5-87b3-1eae296c346d": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb163v3 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13723", + "violations": 0 + }, + "795ad539-278d-4b3b-abb4-c69454d2221a": { + "category": "execution", + "description": "Evaluates an expression.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH12320", + "violations": 0 + }, + "799323bb-6aae-4123-869f-1b0fb8e52199": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the RIPEMD128 hash function.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13639", + "violations": 0 + }, + "7a54089f-407c-4653-9d4f-e66231e58b1a": { + "category": "monitor", + "description": "Records audio streams in WAV format from the microphone or other input devices.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH12474", + "violations": 0 + }, + "7ab9b416-3de6-4083-addf-28ed0a7b73da": { + "category": "search", + "description": "Reads process information.", + "occurrences": 17, + "priority": 5, + "references": [], + "rule_id": "BH12472", + "violations": 0 + }, + "7b4e079f-35ee-49e0-a053-f71bc9d7b5b9": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb368w1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13735", + "violations": 0 + }, + "7c558b4a-32db-4d37-b480-157991eeb958": { + "category": "file", + "description": "Creates temporary files.", + "occurrences": 8, + "priority": 5, + "references": [], + "rule_id": "BH13389", + "violations": 0 + }, + "7c644473-1154-462d-8c5a-2cba94cc0d9f": { + "category": "signature", + "description": "Contains HTTP header fields.", + "occurrences": 77, + "priority": 2, + "references": [], + "rule_id": "BH16327", + "violations": 0 + }, + "7cf077da-ee70-4644-88a6-9ec9b8d19a3a": { + "category": "network", + "description": "Renames files or directories over FTP connection.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH16194", + "violations": 0 + }, + "7d705566-76d5-4222-be7a-68af03787f4a": { + "category": "network", + "description": "Receives data over the network.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH16166", + "violations": 0 + }, + "7db41f2f-1c87-46d2-acb7-6b89920ab362": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the wap-wsg-idm-ecid-wtls1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13720", + "violations": 0 + }, + "7e8ee962-aebd-4593-bd51-bfad364e093d": { + "category": "document", + "description": "Might enumerate current domain.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH19554", + "violations": 0 + }, + "7ef24079-18bb-4f70-ba7c-c1775c71b0ef": { + "category": "search", + "description": "Gets the current working directory.", + "occurrences": 15, + "priority": 2, + "references": [], + "rule_id": "BH13419", + "violations": 0 + }, + "7fe288c5-4072-4f81-a980-17547791fb2a": { + "category": "search", + "description": "Enumerates user accounts.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH19317", + "violations": 0 + }, + "80181a57-faee-4607-af99-d975bf5289a6": { + "category": "execution", + "description": "Starts a service.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH12824", + "violations": 0 + }, + "819e0970-d66c-454d-bb61-23a946fe2648": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb239v2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13730", + "violations": 0 + }, + "82fd265f-87a1-423e-a8e2-29a5ff6eaebc": { + "category": "network", + "description": "Imports the java.net.URL class, which represents a URL and can be used for connecting to it.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH16350", + "violations": 0 + }, + "8378c785-b39f-4edb-be83-52ad2be9efc9": { + "category": "network", + "description": "Sends data on a connected TCP socket.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH16174", + "violations": 0 + }, + "8698251d-40d1-4be8-8662-08388a9783dd": { + "category": "monitor", + "description": "Enumerates plugins installed in the browser.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH19562", + "violations": 0 + }, + "86f97c06-3e8d-4874-8ea3-4e5ff1b38faa": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP224t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13747", + "violations": 0 + }, + "8787b294-12c6-4694-b209-b6597112b4e3": { + "category": "anomaly", + "description": "Contains the ZWSP (zero width space) Unicode character.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15227", + "violations": 0 + }, + "884d2c47-549c-4e64-a764-2ca5fbfcf163": { + "category": "execution", + "description": "Terminates a process/thread.", + "occurrences": 20, + "priority": 3, + "references": [], + "rule_id": "BH12794", + "violations": 0 + }, + "89086cb0-18a8-4193-8a43-fb159ba88232": { + "category": "packer", + "description": "Converts binary data to its string representation, commonly used in obfuscation.", + "occurrences": 6, + "priority": 3, + "references": [], + "rule_id": "BH15183", + "violations": 0 + }, + "8943db4a-e74f-4cf1-a08a-481dac02669b": { + "category": "file", + "description": "Moves a file.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH13468", + "violations": 0 + }, + "89a7fd46-8611-493e-a924-6746854c21b8": { + "category": "file", + "description": "Sets or updates the file pointer position within an open file.", + "occurrences": 27, + "priority": 1, + "references": [], + "rule_id": "BH13405", + "violations": 0 + }, + "8a632749-11fd-4c45-95c4-c4dd05a12151": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb191v3 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13727", + "violations": 0 + }, + "8af9f67a-ca8b-4b43-9b33-93a69e27322a": { + "category": "file", + "description": "Writes to files.", + "occurrences": 81, + "priority": 3, + "references": [], + "rule_id": "BH13329", + "violations": 0 + }, + "8b290028-6d0c-4782-b02a-fdf28b591f03": { + "category": "monitor", + "description": "Contains timestamp-related format strings.", + "occurrences": 101, + "priority": 1, + "references": [], + "rule_id": "BH13402", + "violations": 0 + }, + "8b895f78-af9f-428a-aeb3-07780a6152fa": { + "category": "monitor", + "description": "Tampers with keyboard/mouse status.", + "occurrences": 14, + "priority": 3, + "references": [], + "rule_id": "BH12670", + "violations": 0 + }, + "8c15ffaf-fb8c-436c-8c84-b65151ba5e45": { + "category": "permissions", + "description": "Requests permission to open other processes.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH12526", + "violations": 0 + }, + "8cc9017d-2753-452f-b699-749a0eda9a9d": { + "category": "execution", + "description": "Might use native system API.", + "occurrences": 6, + "priority": 7, + "references": [], + "rule_id": "BH13598", + "violations": 0 + }, + "8ec015c4-4f9a-4cc0-84aa-8000e652d2ef": { + "category": "network", + "description": "Deletes files over FTP connection.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH16192", + "violations": 0 + }, + "8ee6fe6c-b9d4-4105-a62d-13854d319ca7": { + "category": "search", + "description": "Retrieves the local computer name.", + "occurrences": 5, + "priority": 6, + "references": [], + "rule_id": "BH19451", + "violations": 0 + }, + "8f6b6886-5cfe-4545-892d-50a454c6f2b8": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb239v3 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13731", + "violations": 0 + }, + "8f95b7f4-b87c-45f7-8f9e-95a4719cc64b": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the GOST89 symmetric-key block cipher.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13659", + "violations": 0 + }, + "9077a259-0b74-4dc6-a2b8-3b75fb6dcbb6": { + "category": "monitor", + "description": "Monitors mouse activity.", + "occurrences": 8, + "priority": 2, + "references": [], + "rule_id": "BH13355", + "violations": 0 + }, + "909c94a8-b65f-4bb6-85b2-5e0757780623": { + "category": "execution", + "description": "Tampers with module search locations.", + "occurrences": 7, + "priority": 2, + "references": [], + "rule_id": "BH12678", + "violations": 0 + }, + "909c9745-2049-47a8-ae3a-54afdc7d791b": { + "category": "network", + "description": "Opens a socket listening for an incoming connection.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH16316", + "violations": 0 + }, + "90ab6684-e8b4-47c2-89a2-24b752c28cff": { + "category": "file", + "description": "Deletes files in Windows system directories.", + "occurrences": 9, + "priority": 7, + "references": [], + "rule_id": "BH12237", + "violations": 0 + }, + "91c127fa-7e2d-4a85-b982-2a91f627cd99": { + "category": "macro", + "description": "Contains UNIX shell scripts.", + "occurrences": 3, + "priority": 3, + "references": [], + "rule_id": "BH13340", + "violations": 0 + }, + "91e3be00-7a65-43a8-9a56-ff02c2ca8123": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP320t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13751", + "violations": 0 + }, + "9235a131-2fd6-4b3d-8204-9898026c7003": { + "category": "anomaly", + "description": "Contains a reference to ActiveX GUID with the Kill-Bit flag set.", + "occurrences": 8, + "priority": 5, + "references": [], + "rule_id": "BH13395", + "violations": 0 + }, + "92526487-94a7-4d23-9dce-52a7dad0e297": { + "category": "packer", + "description": "Decompresses data using the Zlib algorithm.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH15208", + "violations": 0 + }, + "956e212c-d79f-4ee6-a346-e6a01a470b69": { + "category": "network", + "description": "Might access or change current URL (location).", + "occurrences": 4, + "priority": 2, + "references": [], + "rule_id": "BH16359", + "violations": 0 + }, + "97482221-6f50-4ac0-9797-ce8f6b412bdf": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp160k1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13705", + "violations": 0 + }, + "977e33e2-0637-43ad-bd5b-518f62d32b23": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Blowfish symmetric-key block cipher.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13651", + "violations": 0 + }, + "984431a7-70cc-4ea0-a721-38314ae6c821": { + "category": "execution", + "description": "Creates a new process which executes a shell.", + "occurrences": 4, + "priority": 6, + "references": [], + "rule_id": "BH12199", + "violations": 0 + }, + "98f59d46-3a20-454b-a25a-a2c22d6ed008": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SEED symmetric-key block cipher.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13671", + "violations": 0 + }, + "9c4765aa-7113-482e-9f1e-b947228ed039": { + "category": "behavior", + "description": "Generates pseudo-random numbers.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH15328", + "violations": 0 + }, + "9c5d604d-4e77-4847-b0df-f82ac3f71700": { + "category": "network", + "description": "Sends ping packets.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH16186", + "violations": 0 + }, + "9d123b4c-a1e4-4871-9235-883550171825": { + "category": "execution", + "description": "Retrieves the handle of a thread.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13519", + "violations": 0 + }, + "9d924bfe-3936-4728-a4fe-d927b348f64c": { + "category": "file", + "description": "Creates/Opens a file.", + "occurrences": 131, + "priority": 1, + "references": [], + "rule_id": "BH13327", + "violations": 0 + }, + "9e6db246-dc37-4501-9f25-0c9558db3394": { + "category": "behavior", + "description": "Converts a number to its Unicode character representation.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13476", + "violations": 0 + }, + "9f6ef52a-a299-40df-8cae-d51eaa419240": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the RC2 symmetric-key block cipher.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13667", + "violations": 0 + }, + "9f841f28-bd47-414d-86db-23ab103ccca4": { + "category": "steal", + "description": "Retrieves text from the clipboard.", + "occurrences": 3, + "priority": 3, + "references": [], + "rule_id": "BH13272", + "violations": 0 + }, + "9f862c6b-f61f-4e8f-9b0c-be4cb8cc3c99": { + "category": "file", + "description": "Encodes data using the Base64 algorithm using reflection.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH15229", + "violations": 0 + }, + "9fd4ad77-9eb5-496b-88ca-415e8e2ab964": { + "category": "settings", + "description": "Creates new user accounts.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12211", + "violations": 0 + }, + "9fd4f150-2152-49d0-9a8a-a2c6707b21c3": { + "category": "execution", + "description": "Imports the java.lang.String class, which contains methods for string manipulation.", + "occurrences": 18, + "priority": 1, + "references": [], + "rule_id": "BH13522", + "violations": 0 + }, + "a00463ab-e89c-4c77-9f55-e26fa1ee9644": { + "category": "settings", + "description": "Removes user accounts.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12494", + "violations": 0 + }, + "a0495c4c-d3df-41a7-8fb0-c2659ff90706": { + "category": "network", + "description": "Contains URLs that use non-standard ports.", + "occurrences": 110, + "priority": 5, + "references": [], + "rule_id": "BH16111", + "violations": 0 + }, + "a0fc9004-a831-4bac-bea0-37a8dc6325c1": { + "category": "execution", + "description": "Contains reference to msvcrt.dll which is Windows NT CRT DLL.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH12843", + "violations": 0 + }, + "a1df8b95-c20f-4a43-8206-28f1d9e42a47": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2tnb191v1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13725", + "violations": 0 + }, + "a203aca2-96f4-4ffc-a2df-07babfa39b33": { + "category": "search", + "description": "Monitors directory changes.", + "occurrences": 6, + "priority": 2, + "references": [], + "rule_id": "BH13351", + "violations": 0 + }, + "a237d3db-b9e9-4066-a895-c86fc868f35f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp128r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13703", + "violations": 0 + }, + "a24f931f-663e-4ab2-b9a2-6d628f57347f": { + "category": "file", + "description": "Unmounts filesystems or other media.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH13371", + "violations": 0 + }, + "a374d962-6bb5-41f5-bf58-1741082a94af": { + "category": "network", + "description": "Issues DNS queries.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH16280", + "violations": 0 + }, + "a3a6a357-193b-476f-88e3-1f383f97d8c8": { + "category": "behavior", + "description": "Queries a specific element within the page's Document Object Model.", + "occurrences": 35, + "priority": 2, + "references": [], + "rule_id": "BH19520", + "violations": 0 + }, + "a41ab817-2434-49ba-afc0-38a902d852cb": { + "category": "network", + "description": "Contains URLs that use suspicious top-level domains.", + "occurrences": 15, + "priority": 5, + "references": [], + "rule_id": "BH16114", + "violations": 0 + }, + "a42c4e11-8773-4a57-b2dc-9ab11e634802": { + "category": "behavior", + "description": "Splits a string using a regular expression.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13513", + "violations": 0 + }, + "a55b3c2e-12e4-4e77-9018-9a46a7140600": { + "category": "network", + "description": "Contains URLs with suspicious path components.", + "occurrences": 6, + "priority": 5, + "references": [], + "rule_id": "BH16117", + "violations": 0 + }, + "a585f074-5107-4af7-948a-b994e274ddfd": { + "category": "execution", + "description": "Loads additional APIs.", + "occurrences": 27, + "priority": 2, + "references": [], + "rule_id": "BH13334", + "violations": 0 + }, + "a605147c-d981-400f-876c-1ed525f6fc86": { + "category": "behavior", + "description": "Retrieves the position of the mouse cursor.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13411", + "violations": 0 + }, + "a69267c9-ae3d-49e0-9c2d-5f9781571a02": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect193r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13716", + "violations": 0 + }, + "a6b6f78a-abc3-4f66-9735-cd06a2c2f479": { + "category": "network", + "description": "Adds a network route.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH13014", + "violations": 0 + }, + "a8393a38-dd82-4183-a032-19dc5b1e23d8": { + "category": "stealth", + "description": "Turns off the command echoing feature.", + "occurrences": 453, + "priority": 2, + "references": [], + "rule_id": "BH13484", + "violations": 0 + }, + "a87f55fb-159b-4f78-929e-e88c7bc0e948": { + "category": "document", + "description": "Might create additional elements programmatically.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH13551", + "violations": 0 + }, + "a9a535d0-0409-4c4d-bfb3-416a7bd45416": { + "category": "execution", + "description": "Kills processes.", + "occurrences": 12, + "priority": 5, + "references": [], + "rule_id": "BH12395", + "violations": 0 + }, + "a9bc7834-0e51-4994-a59d-4f0faf598402": { + "category": "macro", + "description": "Contains Windows batch scripts.", + "occurrences": 17, + "priority": 4, + "references": [], + "rule_id": "BH13341", + "violations": 0 + }, + "aa01cf6b-428b-4c5f-bfe6-44dc53900208": { + "category": "anomaly", + "description": "Contains parts of the \"Lorem Ipsum\" dummy text.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13448", + "violations": 0 + }, + "aa11b97a-1f00-43f5-9fdd-adbb738c907e": { + "category": "steal", + "description": "Might monitor keystrokes.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH12447", + "violations": 0 + }, + "aa3a02f8-c3fb-4a7c-ae6e-d9f9fb76c01a": { + "category": "file", + "description": "Modifies the timestamp of a file.", + "occurrences": 9, + "priority": 4, + "references": [], + "rule_id": "BH12427", + "violations": 0 + }, + "abfeb7ea-13fa-47f6-b8fb-5f5f8dad983e": { + "category": "network", + "description": "Contains URLs related to URL shortener services.", + "occurrences": 13, + "priority": 4, + "references": [], + "rule_id": "BH16123", + "violations": 0 + }, + "ac9f7e66-d273-4c50-bb4a-d5fc98ceba5b": { + "category": "execution", + "description": "Contains reference to kernel32.dll which is Windows NT BASE API Client DLL.", + "occurrences": 2652, + "priority": 1, + "references": [], + "rule_id": "BH12842", + "violations": 0 + }, + "aca328ad-6031-494e-87d4-34da8e3252c3": { + "category": "network", + "description": "Uses FTP communication protocol.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH16160", + "violations": 0 + }, + "ad1962e1-298f-43d9-825a-f64e7d558af9": { + "category": "file", + "description": "Decompresses a Tar archive.", + "occurrences": 21, + "priority": 5, + "references": [], + "rule_id": "BH15216", + "violations": 0 + }, + "ad98eff5-34ae-41e6-b72f-8774a7977b5e": { + "category": "execution", + "description": "Imports the \"datetime\" module, which exposes classes for manipulating dates and times.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13590", + "violations": 0 + }, + "ade8146b-c344-4a45-bfcc-03ea0c20e6f6": { + "category": "network", + "description": "Uses functions to change endianness.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13435", + "violations": 0 + }, + "aeb2adec-94ec-4d0e-b678-d3c577d82e92": { + "category": "execution", + "description": "Loads additional libraries.", + "occurrences": 28, + "priority": 2, + "references": [], + "rule_id": "BH12406", + "violations": 0 + }, + "af072649-ac30-47e7-9432-caabc198a46e": { + "category": "network", + "description": "Sends or exfiltrates data over the network.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH16184", + "violations": 0 + }, + "af0c6f6a-638b-4fde-93a4-e58b014e3d2e": { + "category": "network", + "description": "Contains URIs related to Symantec security products.", + "occurrences": 4, + "priority": 7, + "references": [], + "rule_id": "BH16343", + "violations": 0 + }, + "af1cb707-d5f7-4784-b99a-72ae3369e272": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the base64 binary-to-text encoding algorithm.", + "occurrences": 45, + "priority": 1, + "references": [], + "rule_id": "BH13760", + "violations": 0 + }, + "afa8dee0-143c-4fda-80ce-d0e7a089dd50": { + "category": "file", + "description": "Writes to files in Windows system directories.", + "occurrences": 10, + "priority": 5, + "references": [], + "rule_id": "BH12820", + "violations": 0 + }, + "afd77461-38e5-4964-a585-b5538b218ac2": { + "category": "memory", + "description": "Reads from other process' memory.", + "occurrences": 3, + "priority": 4, + "references": [], + "rule_id": "BH12471", + "violations": 0 + }, + "b05c43dc-2f7f-41e3-9745-d0bb941fe1d2": { + "category": "anomaly", + "description": "Plays audio streams in WAV format.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13383", + "violations": 0 + }, + "b176341f-ef09-4fe2-889e-c07e7304c7e7": { + "category": "file", + "description": "Copies a file/directory.", + "occurrences": 71, + "priority": 3, + "references": [], + "rule_id": "BH13481", + "violations": 0 + }, + "b1f7de4c-2b77-47e5-8f48-6fd6d2f1a8a5": { + "category": "file", + "description": "Changes the current working directory.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13465", + "violations": 0 + }, + "b21044f7-6a1c-4f15-ab43-85cba893bd0a": { + "category": "network", + "description": "Contains URLs that reference the host by IP address.", + "occurrences": 89, + "priority": 4, + "references": [], + "rule_id": "BH16124", + "violations": 0 + }, + "b3b8e301-7174-4fce-9a94-597e478ba876": { + "category": "file", + "description": "Copies a file.", + "occurrences": 77, + "priority": 3, + "references": [], + "rule_id": "BH13391", + "violations": 0 + }, + "b3eb693a-fc3e-4e22-86a0-24914cc67df3": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD2 hash function.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13636", + "violations": 0 + }, + "b3ed5b99-6431-4c91-a20a-2369e0e694a2": { + "category": "packer", + "description": "Decodes data using the uuencode algorithm.", + "occurrences": 5, + "priority": 6, + "references": [], + "rule_id": "BH15196", + "violations": 0 + }, + "b3f1aae6-69dd-4a73-9709-11d7e81dad38": { + "category": "execution", + "description": "Compiles a C program.", + "occurrences": 5, + "priority": 3, + "references": [], + "rule_id": "BH13098", + "violations": 0 + }, + "b3fd2501-16f7-4ef9-93a4-939460342e2d": { + "category": "file", + "description": "Accesses the /etc/ld.so.conf file.", + "occurrences": 5, + "priority": 6, + "references": [], + "rule_id": "BH12986", + "violations": 0 + }, + "b4ff78b4-a5ce-48c4-af2d-1a0fa786f162": { + "category": "permissions", + "description": "Modifies file/directory permissions.", + "occurrences": 65, + "priority": 7, + "references": [], + "rule_id": "BH12424", + "violations": 0 + }, + "b56b26b4-78ad-4cb5-b7ee-b5831d8b9e13": { + "category": "network", + "description": "Makes HTTP GET requests.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH16167", + "violations": 0 + }, + "b5a119fc-60d4-4809-833f-7590571a66b1": { + "category": "file", + "description": "Contains references to UNIX/Linux login log files.", + "occurrences": 5, + "priority": 3, + "references": [], + "rule_id": "BH12194", + "violations": 0 + }, + "b5e8173e-4d6e-4b4e-95d7-ce52d579286e": { + "category": "network", + "description": "Tampers with network interfaces.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH12688", + "violations": 0 + }, + "b64eef2a-21f3-4174-8229-6cb4c9d33ca2": { + "category": "network", + "description": "Contains URLs that link to dynamic DNS services.", + "occurrences": 47, + "priority": 4, + "references": [], + "rule_id": "BH16125", + "violations": 0 + }, + "b79c4118-0323-477d-8f7a-b83c5c90af4e": { + "category": "network", + "description": "Contains references to disposable/temporary email providers.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH13326", + "violations": 0 + }, + "b7ae826b-d454-4638-a88e-362fca9b78b2": { + "category": "packer", + "description": "Encodes data using the uuencode algorithm.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH15195", + "violations": 0 + }, + "b8f00440-a17a-4740-8437-b69d71fecfdd": { + "category": "evasion", + "description": "Contains potentially deceptive links.", + "occurrences": 22, + "priority": 8, + "references": [], + "rule_id": "BH16101", + "violations": 0 + }, + "bc15ee3a-efea-44aa-8d50-90637c2aa3cd": { + "category": "permissions", + "description": "Tampers with user/account privileges.", + "occurrences": 10, + "priority": 5, + "references": [], + "rule_id": "BH12760", + "violations": 0 + }, + "bc46c420-22dd-47cf-bd3d-54acc5ca70b6": { + "category": "execution", + "description": "Removes a service.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12481", + "violations": 0 + }, + "bcf73e4e-ded1-452f-8c24-a84ea5ec1cf5": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp160r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13707", + "violations": 0 + }, + "bd7594fe-14e4-436b-8fb2-a7aea5600cba": { + "category": "monitor", + "description": "Possibly does API hooking.", + "occurrences": 12, + "priority": 2, + "references": [], + "rule_id": "BH12849", + "violations": 0 + }, + "be3c352a-f7a6-4fea-a332-24ba8c280002": { + "category": "search", + "description": "Reads paths to system directories on Windows.", + "occurrences": 17, + "priority": 4, + "references": [], + "rule_id": "BH13387", + "violations": 0 + }, + "be68654c-5d93-4416-b2ca-365f7762143c": { + "category": "behavior", + "description": "Uses string-related functions.", + "occurrences": 43, + "priority": 1, + "references": [], + "rule_id": "BH13451", + "violations": 0 + }, + "be8b1474-2cde-4c21-a744-68213f974512": { + "category": "monitor", + "description": "Detects/enumerates running processes.", + "occurrences": 12, + "priority": 4, + "references": [], + "rule_id": "BH19102", + "violations": 0 + }, + "beb536a5-f0c0-4f8c-8ddd-570a94cff685": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the prime239v2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13740", + "violations": 0 + }, + "bf021c6b-4d27-4f1b-9ff1-fbc1e5d7c6e8": { + "category": "file", + "description": "Changes the size of a file.", + "occurrences": 10, + "priority": 3, + "references": [], + "rule_id": "BH13442", + "violations": 0 + }, + "bfa8fb09-620c-4229-881c-9cec2179fd3a": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect239k1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13718", + "violations": 0 + }, + "bffd2248-ea05-48ab-bb67-530ac549e27d": { + "category": "file", + "description": "Creates a directory.", + "occurrences": 126, + "priority": 2, + "references": [], + "rule_id": "BH13352", + "violations": 0 + }, + "c12e1c3a-0422-43f8-a81f-bd4ec0034792": { + "category": "execution", + "description": "Imports a library commonly used for machine learning.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13603", + "violations": 0 + }, + "c15d02df-c4b1-4c71-a91d-ad7ed83c4835": { + "category": "network", + "description": "Connects through HTTP.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH16168", + "violations": 0 + }, + "c31309bf-6ddc-4bc5-8fbd-0faf1d91e7bd": { + "category": "anomaly", + "description": "Contains Base64-encoded URLs.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH16319", + "violations": 0 + }, + "c3c62594-3b09-49d3-93a1-baab33808fc3": { + "category": "file", + "description": "Accesses the /boot directory.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12882", + "violations": 0 + }, + "c4a10b30-3bb1-4a01-9e3f-75ddd5de3dd7": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the B-571 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13695", + "violations": 0 + }, + "c51f08df-d8e4-4fbe-89cd-d05239a0c62a": { + "category": "network", + "description": "Contains URLs related to cloud storage services.", + "occurrences": 19, + "priority": 4, + "references": [], + "rule_id": "BH16126", + "violations": 0 + }, + "c550bf55-a2c3-4de8-b957-9d9f641fc1d1": { + "category": "search", + "description": "Queries the current working directory.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13271", + "violations": 0 + }, + "c5f1a919-979f-4829-8986-dac0906aae47": { + "category": "network", + "description": "Contains generic SQL database queries.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH13368", + "violations": 0 + }, + "ca56eb3e-15af-4fce-b731-1c6d2abb04ef": { + "category": "execution", + "description": "Contains lzma compressed PE file.", + "occurrences": 8, + "priority": 7, + "references": [], + "rule_id": "BH15323", + "violations": 0 + }, + "cac15c8d-a265-4781-b0be-d22a9a4d7cdf": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-256 hash function, from the SHA-2 hash family.", + "occurrences": 24, + "priority": 1, + "references": [], + "rule_id": "BH13645", + "violations": 0 + }, + "cb893707-117d-4aaa-961d-e2f623596e40": { + "category": "behavior", + "description": "Contains multi-line comments.", + "occurrences": 56, + "priority": 1, + "references": [], + "rule_id": "BH13529", + "violations": 0 + }, + "cbab8e3e-2391-49db-ab42-7b56c595fa0f": { + "category": "signature", + "description": "Contains MIME header fields.", + "occurrences": 67, + "priority": 2, + "references": [], + "rule_id": "BH16328", + "violations": 0 + }, + "cbd6bf6f-a0bb-416b-8a49-1fd35ddbdf78": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the B-409 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13693", + "violations": 0 + }, + "cc006279-fadf-4127-8ed3-88c47146a374": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP320r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13750", + "violations": 0 + }, + "cc7ea7bd-678f-4368-917c-1f3a4864a9ed": { + "category": "file", + "description": "Queries file attributes.", + "occurrences": 6, + "priority": 3, + "references": [], + "rule_id": "BH13416", + "violations": 0 + }, + "cc999079-edf6-42a4-8a96-400bb1a41ba8": { + "category": "file", + "description": "Accesses the /dev/zero pseudo-file.", + "occurrences": 6, + "priority": 5, + "references": [], + "rule_id": "BH12999", + "violations": 0 + }, + "cec3958e-90df-41a4-abf1-d470c106c3a3": { + "category": "network", + "description": "Contains URLs related to online payment services.", + "occurrences": 5, + "priority": 6, + "references": [], + "rule_id": "BH16103", + "violations": 0 + }, + "cfb9075d-c79b-40a6-b401-23779081ff8a": { + "category": "anomaly", + "description": "Contains the RLO (right-to-left override) Unicode character, commonly used with bidirectional text.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15218", + "violations": 0 + }, + "d02a7b37-04c8-4411-b443-9673711deafa": { + "category": "network", + "description": "Connects through Telnet using external applications.", + "occurrences": 4, + "priority": 4, + "references": [], + "rule_id": "BH16170", + "violations": 0 + }, + "d15149dc-ce7a-4d2e-9b3f-a64381be0c6e": { + "category": "execution", + "description": "Terminates the currently running Java Virtual Machine.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH13140", + "violations": 0 + }, + "d3415d27-c360-42b2-bbb5-bdae8c86fe87": { + "category": "execution", + "description": "Evaluates code dynamically.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH12321", + "violations": 0 + }, + "d429521a-8e7f-4d33-8f7e-00c2767ca577": { + "category": "settings", + "description": "Creates a new local user group.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12201", + "violations": 0 + }, + "d4d3930a-0ea6-4ab2-8aef-fea053aa9d2e": { + "category": "network", + "description": "Contains placeholders for IP addresses.", + "occurrences": 5, + "priority": 5, + "references": [], + "rule_id": "BH16330", + "violations": 0 + }, + "d55aeb34-1f8d-4136-a01a-618b12111908": { + "category": "file", + "description": "Changes the current directory.", + "occurrences": 99, + "priority": 3, + "references": [], + "rule_id": "BH13423", + "violations": 0 + }, + "d6237fc4-4f5b-4578-822a-a3f843b899fc": { + "category": "search", + "description": "Retrieves keyboard layout list.", + "occurrences": 1, + "priority": 2, + "references": [], + "rule_id": "BH13394", + "violations": 0 + }, + "d67f996f-dd15-4a78-8ad4-019c6fc05325": { + "category": "behavior", + "description": "Prompts user for credentials.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH12850", + "violations": 0 + }, + "d7b4b8f3-5cc6-4046-b1dc-9cfc5b968e73": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP160r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13742", + "violations": 0 + }, + "d8019dcc-3e51-440d-8f02-2032d0c6d6cd": { + "category": "registry", + "description": "Enumerates the values of a registry key.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH19456", + "violations": 0 + }, + "d842bb25-4467-4cdb-a964-6b4cd0dc53bf": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp192k1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13708", + "violations": 0 + }, + "d8446769-5074-46f8-9fa6-b2f6041aa212": { + "category": "network", + "description": "Contains URLs that link to interesting file formats.", + "occurrences": 189, + "priority": 6, + "references": [], + "rule_id": "BH16107", + "violations": 0 + }, + "d8a2b1de-26a0-44a1-ae20-9b46a6277716": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP192t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13745", + "violations": 0 + }, + "d99e8460-632a-42dc-9995-7b6c118170ea": { + "category": "file", + "description": "Renames files.", + "occurrences": 12, + "priority": 2, + "references": [], + "rule_id": "BH13379", + "violations": 0 + }, + "d9a5c78c-4c39-4efe-bee7-6fb1c67f4c9c": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP160t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13743", + "violations": 0 + }, + "d9a64ba4-35f9-471f-86c9-f846b7303746": { + "category": "network", + "description": "Contains references to anonymous e-mail providers.", + "occurrences": 19, + "priority": 3, + "references": [], + "rule_id": "BH12195", + "violations": 0 + }, + "d9e94244-1db4-493f-ba3a-650072e5f83a": { + "category": "execution", + "description": "Imports the java.lang.reflect.Method class, which provides information about, and access to, a single reflected method of a class or interface.", + "occurrences": 3, + "priority": 2, + "references": [], + "rule_id": "BH13516", + "violations": 0 + }, + "da27431a-a1f1-4ade-972b-196ad8bc2503": { + "category": "network", + "description": "Contains URLs related to social network URLs.", + "occurrences": 6, + "priority": 4, + "references": [], + "rule_id": "BH16362", + "violations": 0 + }, + "da7821be-3b97-43fe-9de5-d9f6b4ec3be5": { + "category": "steal", + "description": "Accesses a common Linux log directory.", + "occurrences": 5, + "priority": 5, + "references": [], + "rule_id": "BH13008", + "violations": 0 + }, + "db685791-da90-4361-85d9-12adab49f9fa": { + "category": "network", + "description": "Contains URLs related to search engines.", + "occurrences": 191, + "priority": 2, + "references": [], + "rule_id": "BH16364", + "violations": 0 + }, + "db9cd776-ea1c-4c83-869e-0464cbc436ff": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect113r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13712", + "violations": 0 + }, + "dc098173-29d0-4f43-8248-91253eccd972": { + "category": "network", + "description": "Contains URLs with unusual path lengths.", + "occurrences": 5, + "priority": 4, + "references": [], + "rule_id": "BH16369", + "violations": 0 + }, + "de6acdac-90ec-421c-90cb-ae5af6896854": { + "category": "file", + "description": "Flushes the file's buffer to disk.", + "occurrences": 17, + "priority": 2, + "references": [], + "rule_id": "BH13407", + "violations": 0 + }, + "debbbe67-6df0-4b33-8a5c-c84dc73b7fd8": { + "category": "anomaly", + "description": "Contains the ZWNJ (zero width non-joiner) Unicode character.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH15228", + "violations": 0 + }, + "df217f7e-e983-4c98-b323-6d0540d7f46b": { + "category": "anomaly", + "description": "Contains the PDF (pop directional formatting) Unicode character, commonly used with bidirectional text.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15223", + "violations": 0 + }, + "df51bdc1-6db7-4a2b-bfbf-b3ca360b3183": { + "category": "file", + "description": "Accesses an external mountpoint.", + "occurrences": 1, + "priority": 5, + "references": [], + "rule_id": "BH12904", + "violations": 0 + }, + "df539dcd-a329-49d3-a77f-60305a66869e": { + "category": "behavior", + "description": "Concatenates strings.", + "occurrences": 13, + "priority": 2, + "references": [], + "rule_id": "BH13510", + "violations": 0 + }, + "e00cbdcf-b37c-488e-b1c4-8f0e3a2c6b69": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the base64url binary-to-text encoding algorithm.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13761", + "violations": 0 + }, + "e12e7d5b-45d3-40de-9904-fd736d300c6a": { + "category": "network", + "description": "Contains URLs that reside in regions sanctioned by the European Union.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH16321", + "violations": 0 + }, + "e1c17a7d-17eb-4d4d-8b64-18ea91e3530f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect193r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13717", + "violations": 0 + }, + "e1d4e332-926a-46df-97f2-47f24889f517": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the K-163 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13688", + "violations": 0 + }, + "e20d33a8-a482-4203-9d89-f1e5bd6a8aad": { + "category": "network", + "description": "Contains domains used for intercepting and inspecting HTTP requests.", + "occurrences": 3, + "priority": 4, + "references": [], + "rule_id": "BH16243", + "violations": 0 + }, + "e2c45a72-9153-468f-afaa-c5bd4bf9b6ba": { + "category": "file", + "description": "Modifies file/directory attributes.", + "occurrences": 24, + "priority": 4, + "references": [], + "rule_id": "BH12422", + "violations": 0 + }, + "e3c0398b-90d0-4cac-8c9b-1bafab40f60e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb304w1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13733", + "violations": 0 + }, + "e3f4d244-f14a-4424-acba-1ba469a41c94": { + "category": "evasion", + "description": "Detects presence of debuggers.", + "occurrences": 48, + "priority": 3, + "references": [], + "rule_id": "BH12805", + "violations": 0 + }, + "e45e5c3d-ec07-4bd8-9d52-b6ff2d549507": { + "category": "execution", + "description": "Creates a process.", + "occurrences": 12, + "priority": 6, + "references": [], + "rule_id": "BH12214", + "violations": 0 + }, + "e4881002-c180-4852-aac6-c50b7af63774": { + "category": "file", + "description": "Accesses rc.local file.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH17116", + "violations": 0 + }, + "e6b827c9-9a32-4f01-9cac-4b235093d4c5": { + "category": "file", + "description": "Accesses /etc/networks file.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH17107", + "violations": 0 + }, + "e758cca1-c0fa-450c-9619-c5be75bc39f3": { + "category": "evasion", + "description": "Prevents the user from aborting the batch execution.", + "occurrences": 3, + "priority": 8, + "references": [], + "rule_id": "BH12469", + "violations": 0 + }, + "e7ea1efe-9877-47e3-9cb3-e3487908657a": { + "category": "stealth", + "description": "Starts an application without opening a new Command Prompt window.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH12578", + "violations": 0 + }, + "e828370a-1bb4-4f3b-94c2-ebdefe07f493": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the B-283 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13691", + "violations": 0 + }, + "e964bd43-7469-4429-9d7d-3a46e542166f": { + "category": "file", + "description": "Queries the file type of a file.", + "occurrences": 27, + "priority": 3, + "references": [], + "rule_id": "BH13441", + "violations": 0 + }, + "ea0ba6b5-6a20-4b9f-91f3-9d31bcab432e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the prime192v2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 5, + "priority": 1, + "references": [], + "rule_id": "BH13737", + "violations": 0 + }, + "ea1431a1-5344-4712-8c3f-17cd19dbddc2": { + "category": "network", + "description": "Contains URLs.", + "occurrences": 254, + "priority": 4, + "references": [], + "rule_id": "BH16331", + "violations": 0 + }, + "ea360dbd-4af0-4454-a373-99e53da9922b": { + "category": "search", + "description": "Enumerates environment variables.", + "occurrences": 4, + "priority": 4, + "references": [], + "rule_id": "BH19162", + "violations": 0 + }, + "eaf68423-9c1e-4b46-8531-f5fb794fa3ea": { + "category": "anomaly", + "description": "Plays a sound.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH13424", + "violations": 0 + }, + "eb3466d1-3576-4ee0-9c88-085c65b237dc": { + "category": "signature", + "description": "Contains patterns identifying the constants related to encryption routines of the AES symmetric-key block cipher.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13668", + "violations": 0 + }, + "ec37c42c-588a-493c-a071-d195a58c29ed": { + "category": "network", + "description": "Permits an incoming connection on a TCP socket.", + "occurrences": 2, + "priority": 7, + "references": [], + "rule_id": "BH16181", + "violations": 0 + }, + "ec4b0d7c-238f-45f8-8e7e-69cd0aa70798": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp128r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13704", + "violations": 0 + }, + "ec7e5c29-f8a0-4d74-bbd3-d3b3e90fc66f": { + "category": "file", + "description": "Calculates the MD5 hash of data.", + "occurrences": 1, + "priority": 4, + "references": [], + "rule_id": "BH15237", + "violations": 0 + }, + "ed5b3d0b-7feb-428d-a05b-5298fd1e4dbd": { + "category": "network", + "description": "Downloads files in silent mode via HTTP.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH16195", + "violations": 0 + }, + "ed75e789-9f35-4dff-be7d-d659808dde62": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the K-409 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13694", + "violations": 0 + }, + "edb625e1-97cb-4953-8e6d-4718276044fb": { + "category": "anomaly", + "description": "Might evaluate code dynamically.", + "occurrences": 3, + "priority": 5, + "references": [], + "rule_id": "BH13525", + "violations": 0 + }, + "ee3b67f3-fc37-4d47-8184-1bde9ea3da20": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the secp224k1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13709", + "violations": 0 + }, + "ee6bc43b-1172-413c-9615-c652ee9ddcdd": { + "category": "file", + "description": "Accesses a shell configuration file.", + "occurrences": 11, + "priority": 6, + "references": [], + "rule_id": "BH12860", + "violations": 0 + }, + "eeabf025-50cf-41ee-96df-927da8b7dce4": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the prime192v3 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13738", + "violations": 0 + }, + "ef31a67d-a82a-4438-bf85-3a2d7570a643": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the B-233 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 6, + "priority": 1, + "references": [], + "rule_id": "BH13689", + "violations": 0 + }, + "ef3a76d1-751e-4124-ac94-811ec85e245f": { + "category": "file", + "description": "Changes file ownership.", + "occurrences": 9, + "priority": 7, + "references": [], + "rule_id": "BH12153", + "violations": 0 + }, + "f0b57885-46f6-46df-b414-d7a20a287b59": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the WHIRLPOOL hash function.", + "occurrences": 1, + "priority": 1, + "references": [], + "rule_id": "BH13650", + "violations": 0 + }, + "f0c4e825-060e-41a8-b0f7-4069b3d1019a": { + "category": "file", + "description": "Encodes data using the Base16 algorithm.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH15189", + "violations": 0 + }, + "f1361a63-77d0-46db-bca3-9a9afbb4d4d2": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP256t1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13749", + "violations": 0 + }, + "f1ae0c46-c107-412e-989c-863e660dc2be": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the P-192 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13697", + "violations": 0 + }, + "f3cfce6c-0fff-4768-9d10-606d49b7c52a": { + "category": "behavior", + "description": "Converts a string to an integer number.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13437", + "violations": 0 + }, + "f44c47e5-ad01-43f7-af6e-3d03c2296209": { + "category": "behavior", + "description": "Converts a value to an integer number.", + "occurrences": 16, + "priority": 1, + "references": [], + "rule_id": "BH13576", + "violations": 0 + }, + "f4c8ceaf-da76-4764-a5a1-8efa13bc9f22": { + "category": "search", + "description": "Enumerates system information.", + "occurrences": 55, + "priority": 4, + "references": [], + "rule_id": "BH19295", + "violations": 0 + }, + "f56cf100-4789-4885-96ce-c073ed2bde05": { + "category": "anomaly", + "description": "Might contain potentially obfuscated code or data.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH15332", + "violations": 0 + }, + "f5a6f2b0-b3dc-4f12-b0b1-6cd73f426c34": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the brainpoolP192r1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13744", + "violations": 0 + }, + "f606ec32-3489-4e4b-9b26-855de33006d6": { + "category": "execution", + "description": "Shuts down or reboots the system.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH12566", + "violations": 0 + }, + "f647f9d6-196e-4821-90e6-c8d0c150e37c": { + "category": "network", + "description": "Contains URLs related to Heroku, a platform-as-a-service (PaaS) cloud provider.", + "occurrences": 2, + "priority": 4, + "references": [], + "rule_id": "BH16322", + "violations": 0 + }, + "f6597b33-5f91-4c81-95d6-9c5c469c5669": { + "category": "steal", + "description": "Accesses the mail directory.", + "occurrences": 1, + "priority": 7, + "references": [], + "rule_id": "BH17332", + "violations": 0 + }, + "f81ea4c0-1de7-4dd3-ae6e-120a0b55c067": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the HAVAL hash function.", + "occurrences": 3, + "priority": 1, + "references": [], + "rule_id": "BH13634", + "violations": 0 + }, + "f939db5c-a373-403d-8c85-ffc5e04a2e1a": { + "category": "behavior", + "description": "Uses string related methods.", + "occurrences": 49, + "priority": 1, + "references": [], + "rule_id": "BH13439", + "violations": 0 + }, + "f968adf5-9b8b-4b2d-aa2e-32e1bdcf8dad": { + "category": "network", + "description": "Contains URLs related to object storage services.", + "occurrences": 17, + "priority": 4, + "references": [], + "rule_id": "BH16375", + "violations": 0 + }, + "fa367e18-4d3c-474d-a09a-6266609e846f": { + "category": "permissions", + "description": "Requests permission required to enumerate system information.", + "occurrences": 2, + "priority": 5, + "references": [], + "rule_id": "BH12508", + "violations": 0 + }, + "fae8954d-0705-4555-9805-a97906b450a4": { + "category": "file", + "description": "Accesses the /etc/resolv.conf file.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH12984", + "violations": 0 + }, + "fb01775a-8bca-4e59-a195-6e4e7980678c": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the c2pnb176w1 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13724", + "violations": 0 + }, + "fb382c89-7e20-46f2-b6cf-26fc90d6f5ac": { + "category": "anomaly", + "description": "Contains the LRE (left-to-right embedding) Unicode character, commonly used with bidirectional text.", + "occurrences": 1, + "priority": 3, + "references": [], + "rule_id": "BH15221", + "violations": 0 + }, + "fb9435cf-07e8-41ed-ad09-4520c6aab671": { + "category": "file", + "description": "Opens a file for reading or writing.", + "occurrences": 7, + "priority": 3, + "references": [], + "rule_id": "BH13401", + "violations": 0 + }, + "fc7af513-a67c-40e6-889d-9a3afab63210": { + "category": "permissions", + "description": "Changes group ownership of a file or directory.", + "occurrences": 3, + "priority": 6, + "references": [], + "rule_id": "BH13111", + "violations": 0 + }, + "fca68b84-cafa-4b19-8485-e6d7d8c80adb": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD4 hash function.", + "occurrences": 33, + "priority": 1, + "references": [], + "rule_id": "BH13637", + "violations": 0 + }, + "fcda3e8a-a0de-429f-9934-ad9260dc1294": { + "category": "signature", + "description": "Contains patterns identifying the constants related to domain parameters for the sect131r2 elliptic curve, used in Elliptic Curve cryptography.", + "occurrences": 4, + "priority": 1, + "references": [], + "rule_id": "BH13714", + "violations": 0 + }, + "fcdd31a1-9b0e-4f4b-a7b5-94d55dec65b6": { + "category": "network", + "description": "Copies file from/to a remote host, using SCP.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH13007", + "violations": 0 + }, + "fddea3e6-aad3-4cfd-9cb2-9fc7096dfcbd": { + "category": "network", + "description": "Contains URLs that link to raw files on GitHub.", + "occurrences": 2, + "priority": 6, + "references": [], + "rule_id": "BH16309", + "violations": 0 + }, + "fe1a8b81-c2cb-4128-9e18-6cf7cbd10f44": { + "category": "execution", + "description": "Forces a window to close.", + "occurrences": 2, + "priority": 3, + "references": [], + "rule_id": "BH13409", + "violations": 0 + }, + "ff039cd8-e7e8-4af3-a99d-c68570612e80": { + "category": "execution", + "description": "Parses the command-line arguments.", + "occurrences": 12, + "priority": 1, + "references": [], + "rule_id": "BH13430", + "violations": 0 + } + }, + "licenses": { + "BSD-3-Clause": { + "audit": null, + "family": "Permissive", + "violations": [] + }, + "LGPL-2.1-or-later": { + "audit": null, + "family": "Weak Copyleft", + "violations": [] + }, + "LicenseRef-rlsecure-microsoft-software-license-terms": { + "audit": null, + "family": "Proprietary", + "violations": [] + } + }, + "ml_models": null, + "secrets": { + "00bcedd7-70aa-45a0-b587-e3362671d93a": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 81, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "ccc0c1c2-a93c-5e4b-b540-6bc42968bd5c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f83ed4148f4525e65a5d4814932f6a4b1edd779f5073417c969e4354453c8329" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2013-01-25T08:54:55" + }, + "03ea000e-713c-4282-abc2-ee8e40161698": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 15046, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:4a319d836d57f52f4b372ea93f519492c2d10946d58511e26edb50a380069775" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "09222cc5-9d28-4be3-ab78-047a46a1814a": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 39168, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "b608d5ec-e4ae-5bb4-afd4-9f0835dc658a" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:77f6e24a2f5dc82f8db1c4c0b180d595de573947f8c0018d8e4c48dc4fa3a809" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2015-07-26T02:32:16" + }, + "0961d119-3174-4918-a77b-669055d234f1": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 648, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "34e8658f-b93c-501b-a4ab-88f18ca146fd" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a794e570431cc63aec93a5e25f17bf6f37a690e4f9c5a11f108e7da9f0a974e9" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-01T02:13:36" + }, + "0b85bd69-9db6-43ae-88d3-46cc2a0d27a4": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1189, + "line_number": 70, + "liveness": "skipped", + "references": { + "component": [ + "f91a412a-07e0-5f3e-b422-c73205c11f77" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c7141620f6766041a6a842b6904af3701edad30ed95c27811e229ab04a50c527" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1400, + "line_number": 78, + "liveness": "skipped", + "references": { + "component": [ + "f91a412a-07e0-5f3e-b422-c73205c11f77" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1570, + "line_number": 84, + "liveness": "skipped", + "references": { + "component": [ + "f91a412a-07e0-5f3e-b422-c73205c11f77" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:54" + }, + "0c6815cd-3247-4472-a773-597730c33bee": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9078, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:bd1ac58facc3d4511ff9a06845ba5213bdf2e173f7d7a5e6c98badc384a1a634" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "12452295-1346-4228-aa94-02bb619d3c68": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1974, + "line_number": 91, + "liveness": "skipped", + "references": { + "component": [ + "d5381ab6-ba54-5e60-94b3-780061a1938b" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:0593b2ac0276a7dcbdf04201f26e764758ab9930e283c2c1f898c4ded5fd39ed" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2163, + "line_number": 98, + "liveness": "skipped", + "references": { + "component": [ + "d5381ab6-ba54-5e60-94b3-780061a1938b" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a9fce41b4dffd3517eccee3d7ba6df9ccaa67aba278e261963b52356f1be6a80" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:56" + }, + "12af970a-04dd-481d-80f2-26a66a8cecc5": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 97832, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "0fe1bf60-292b-5697-b951-9fd93ad808ff" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:87ea106ee805b09dae5f5de2d564253dd3abd333d0c9cef241c003d39ca17ddb" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-02T17:31:00" + }, + "17b86c88-513a-4de3-8cd2-dfb32c6a5623": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 6803, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "3e29104d-824a-5371-a1ad-112560079a48", + "4b62b8f0-f017-560c-b46d-8f13545be45c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ad3e9d6fcb33828318ed759f2dd7472949295ccaceb2dccdad89d2e290c5fac5" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2015-11-23T21:26:50" + }, + "17c44e25-631a-4ae7-b9a3-a6590a4519bc": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 824, + "line_number": 27, + "liveness": "skipped", + "references": { + "component": [ + "9fdeda08-ae87-5e4d-a137-1060989b20d1" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-21T15:52:33" + }, + "1bd6ec37-98a3-458d-9818-053358761091": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1240, + "line_number": 76, + "liveness": "skipped", + "references": { + "component": [ + "b9184dc3-6afd-533f-ab4f-9a3d84a8692b" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:38cf98d90b964cff16a6c8ee1edbe74040f14973854e86e2a81e2ece1ec62824" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1391, + "line_number": 83, + "liveness": "skipped", + "references": { + "component": [ + "b9184dc3-6afd-533f-ab4f-9a3d84a8692b" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:38cf98d90b964cff16a6c8ee1edbe74040f14973854e86e2a81e2ece1ec62824" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:58" + }, + "1dc1775e-f461-419b-892b-855eda20b728": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9830, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a5cf8dd4beb0a7e908e0e8b99d222951ad8cbd63d03347f10b755fa379eba2f9" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "1e66be92-d9ca-4051-967a-7c1dbd13900b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9119, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:9e203ab1bd143a5c1a27fb99893417a58ea04c9374f606fb4be2248189b56dae" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-04-14T15:46:00" + }, + "20433369-6941-4166-8c18-d56e2f1c0ac3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "8db4d475-8f0d-5581-b23c-5e89d937a161" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "DER DSA Private Key", + "timestamp": "2018-09-28T06:32:45" + }, + "240aa98f-cec8-498e-a34e-d83144304325": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 806, + "line_number": 50, + "liveness": "skipped", + "references": { + "component": [ + "eef9193e-d694-57eb-9a51-ba383da4e6b1" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 845, + "line_number": 51, + "liveness": "skipped", + "references": { + "component": [ + "eef9193e-d694-57eb-9a51-ba383da4e6b1" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:45" + }, + "276b6634-972c-426d-affc-c04ccf30443c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "14fd40b3-cab2-52ae-8344-839ef6ab8447" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "DER DSA Private Key", + "timestamp": "2019-11-03T23:27:36" + }, + "28cf81e2-27f7-4a08-b75c-dec698d269c8": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9389, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:87393d07f4d893ff3391b0b2886a1f698dd97b2caa82695361e14e1fb2840fca" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "294d5ff8-55c6-4883-9683-c90e68ee3c9a": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 721, + "line_number": 43, + "liveness": "skipped", + "references": { + "component": [ + "a1c9418d-7b42-5ff0-8e54-afc1d32e2617" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ee4bd6a76fd7553f73b8cac6e78eca7664dcacf5991ddabcf09b833d836bc253" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:47" + }, + "29fa6ea1-3dbb-4c50-bd4a-93d9370718a4": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1959, + "line_number": 100, + "liveness": "skipped", + "references": { + "component": [ + "abb3d38c-949d-5719-a3e2-e10a5fb0647f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:49" + }, + "2a1cd3dd-56ea-4a59-9408-07b0f6a8d92c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3054, + "line_number": 134, + "liveness": "skipped", + "references": { + "component": [ + "769544f2-ef96-595a-b036-f0c342aa7209" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3172, + "line_number": 139, + "liveness": "skipped", + "references": { + "component": [ + "769544f2-ef96-595a-b036-f0c342aa7209" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3290, + "line_number": 144, + "liveness": "skipped", + "references": { + "component": [ + "769544f2-ef96-595a-b036-f0c342aa7209" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3408, + "line_number": 149, + "liveness": "skipped", + "references": { + "component": [ + "769544f2-ef96-595a-b036-f0c342aa7209" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3526, + "line_number": 154, + "liveness": "skipped", + "references": { + "component": [ + "769544f2-ef96-595a-b036-f0c342aa7209" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:49" + }, + "2b9fe471-518b-4573-bbfa-862780e23ee6": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3742, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a8d939a6b05cd4a6418920afc777441a37170831c4085ee76ef49f0fb2f05582" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "2d1a31e9-981d-4142-9b8e-7403b6c4bfbb": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 817, + "line_number": 56, + "liveness": "skipped", + "references": { + "component": [ + "b87b23ed-4071-5cb7-a08f-04dbf1c7d8c0" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a0703ac614a308352a5a4737ae7179fc73e5e19304dac1f0d75716d2829e62d0" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:55" + }, + "2e13fea1-66cb-4970-89af-10aeb45d35de": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 819, + "line_number": 45, + "liveness": "skipped", + "references": { + "component": [ + "4c1c5a1e-0cd4-53ba-8987-658317893741" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:0e9d220616f08345a714ee57d8516310770588484b5239844635f952965e34a6" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 986, + "line_number": 51, + "liveness": "skipped", + "references": { + "component": [ + "4c1c5a1e-0cd4-53ba-8987-658317893741" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:0e9d220616f08345a714ee57d8516310770588484b5239844635f952965e34a6" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-04-01T12:32:50" + }, + "3422e668-4312-45ab-b8d7-a75bbcee2ebe": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "f746f6c5-5365-5da2-8dc1-d8e359efe345" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2019-11-03T23:27:35" + }, + "371ca18d-7247-4802-b52a-92a90a9312b9": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 736, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "dc8d897a-042b-5188-b2da-b389e3891940" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ee4bd6a76fd7553f73b8cac6e78eca7664dcacf5991ddabcf09b833d836bc253" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:42" + }, + "399e428a-6f9a-402d-bc0d-97055fc8bf0e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 954, + "line_number": 47, + "liveness": "skipped", + "references": { + "component": [ + "a0069427-7d8c-58a2-b724-ed67e8b5c834" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:dfc82a5920094a14b755e185fe93a9ef59e5695c7e6a8d9bb578fa87a581cd45" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:57" + }, + "39d52ab3-4add-4072-be87-8755b94a56bd": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9552, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:17d3081950a467e66997fc50812cdf26399a8620f4f8c77ea638f7a8a9a758e9" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "3ba8b101-520f-44c0-9d90-ea663d239acf": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 979, + "line_number": 51, + "liveness": "skipped", + "references": { + "component": [ + "5e3f0fb4-b494-5ab7-811c-e00699478bfa" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:d66cc17262aa8b0b46a930ba36fff33c044cbea6f194d6ea9d8cc114f6c77382" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:32" + }, + "3bb8b3c6-96d3-441f-9cb5-048aec2fe2e3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 78, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "8f41e6d2-7f53-5282-aa1d-4071c9797a20" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f83ed4148f4525e65a5d4814932f6a4b1edd779f5073417c969e4354453c8329" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2013-01-25T08:54:55" + }, + "3ce4aa6a-9035-4bbf-86d8-5127bccafe53": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 20559, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f3be913ca3821f626ccc5452dfcb5d877c68536a00a9422fac81d871aa8a6b43" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "3cf7b135-cab7-4a31-bcc6-5701eec926f8": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 7505, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:31a76321fe835a07f408a29646fbf76b8ac966082e18f13d306b814233ebcd79" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "3d75eb51-df27-4267-bb61-7826513f7f4b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 10099, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:7dd93083ae20ef4da84a92ccd808f896bada8fa09a96c7773ebf46eef7d70750" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "3e183f98-e678-4d64-a4f2-48b1608fa850": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 616, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "bf8bddc5-e9c0-51ad-b6d5-fd182fae637c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ee4bd6a76fd7553f73b8cac6e78eca7664dcacf5991ddabcf09b833d836bc253" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:43" + }, + "40bb4b2d-6d1f-4468-907b-c99878afcf8e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 806, + "line_number": 47, + "liveness": "skipped", + "references": { + "component": [ + "ef025681-9a01-5105-beb4-216103fa0fa3" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:58" + }, + "4204050e-f9b2-4037-9dab-49a30c796079": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1016, + "line_number": 68, + "liveness": "skipped", + "references": { + "component": [ + "a7b435f4-95be-5949-b13d-572bff3f2b72" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:160c180e977680e13031adbfde234b4ef88dca16cb7cfacb1a2abd7dd78d385c" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1130, + "line_number": 73, + "liveness": "skipped", + "references": { + "component": [ + "a7b435f4-95be-5949-b13d-572bff3f2b72" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8c2057aeca188fd3cd0b73af3100ecf76b205b81fe43f8a5023979331ff5d3d6" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:56" + }, + "423a4918-7f0a-4689-8e89-56b278a70039": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 786, + "line_number": 26, + "liveness": "skipped", + "references": { + "component": [ + "23b427a6-d4bf-5e63-a560-359fa4921c1f" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-28T06:32:45" + }, + "4342a3c2-5f7c-4b38-aa94-4430b954b24e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 580, + "line_number": 42, + "liveness": "skipped", + "references": { + "component": [ + "6705893c-87ca-536e-8ba4-c4f442980d15" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ee4bd6a76fd7553f73b8cac6e78eca7664dcacf5991ddabcf09b833d836bc253" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:43" + }, + "436573d4-d190-486c-b833-6676a88e9c80": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1483, + "line_number": 81, + "liveness": "skipped", + "references": { + "component": [ + "fcb7f0a7-6453-5345-af0d-de215a71b07f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1709, + "line_number": 89, + "liveness": "skipped", + "references": { + "component": [ + "fcb7f0a7-6453-5345-af0d-de215a71b07f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:13" + }, + "43af0e93-28b3-4449-a27b-c541ec12b693": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 754, + "line_number": 26, + "liveness": "skipped", + "references": { + "component": [ + "5217018d-382a-540e-a295-cce56ef1d807" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-21T15:52:33" + }, + "46902569-396d-432c-badd-ae76895319ed": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1891, + "line_number": 101, + "liveness": "skipped", + "references": { + "component": [ + "df694fce-bfdf-572e-8033-443ca4f35426" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2009, + "line_number": 106, + "liveness": "skipped", + "references": { + "component": [ + "df694fce-bfdf-572e-8033-443ca4f35426" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:03" + }, + "48424320-aeb8-4fd7-acda-fd9e9809fb6c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5691, + "line_number": 230, + "liveness": "skipped", + "references": { + "component": [ + "f4f621bd-3c03-5b00-96e9-8452e8455323" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 6211, + "line_number": 245, + "liveness": "skipped", + "references": { + "component": [ + "f4f621bd-3c03-5b00-96e9-8452e8455323" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:45" + }, + "4cacc9e4-9416-4bd6-8c33-8d241e40e34d": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 685, + "line_number": 41, + "liveness": "skipped", + "references": { + "component": [ + "de8d8e83-ce7e-5f5a-baa9-9513714567bf" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:10" + }, + "4e8e5a91-7104-431d-86d7-ad4640620264": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "37c38e92-8827-5139-9178-0eb1a413c6ae" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-28T06:32:45" + }, + "5bd8f072-b2a4-433b-ab92-623ad4330ff5": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1139, + "line_number": 63, + "liveness": "skipped", + "references": { + "component": [ + "63236478-2b2b-5609-a94e-878b2efa029e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:fe97449352b1d67caaa43d30a22712b2aee299389e0c7c9900b957eabca8f889" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1382, + "line_number": 70, + "liveness": "skipped", + "references": { + "component": [ + "63236478-2b2b-5609-a94e-878b2efa029e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:fe97449352b1d67caaa43d30a22712b2aee299389e0c7c9900b957eabca8f889" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:52" + }, + "5dfb07ef-0a52-4d6d-bb41-2304de9fc910": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1776, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "0c47a7c2-da57-5765-a5b8-cc2340a7374f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:d565b1b0775ce1478de8c4a8370b58a93d842a1588c33d84a6fa0bff9e566354" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2020-11-06T14:28:28" + }, + "62667dc8-853f-44de-a4f5-a0b0246259f9": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 124978, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c721b1ccd117eee35439a96c06915d20cc1475f9660b3425f77f452a5d230ca7" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-04-14T15:46:00" + }, + "62c45c77-7221-41c2-af29-916368256daa": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9689, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:027ae1679e16c2e8e2781377492fd054392a7f8dbc6ee13d7da5a59e5b4438f1" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "64434549-e357-49b0-8dc7-eeaa9a6b51a5": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 659, + "line_number": 43, + "liveness": "skipped", + "references": { + "component": [ + "13ff53e0-e6a6-518f-bee9-a57deb62c38f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:32" + }, + "6b16c49e-fff8-4a22-8078-e63c67a34920": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1064, + "line_number": 53, + "liveness": "skipped", + "references": { + "component": [ + "e6e986b5-15a7-55f4-b8be-ecadd2bd7af2" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:57" + }, + "6cf7d63d-8973-4ffa-bbdc-21d96edd00fc": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2009, + "line_number": 101, + "liveness": "skipped", + "references": { + "component": [ + "810b2dd3-7ed5-5f43-b986-3f0c0820e902" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2206, + "line_number": 108, + "liveness": "skipped", + "references": { + "component": [ + "810b2dd3-7ed5-5f43-b986-3f0c0820e902" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:53" + }, + "6d9a4af3-0366-4def-b4e5-3526666542ac": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "4b4ca1db-fc01-5b24-aa54-d2cfefa2801a" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-28T06:32:53" + }, + "72d4088e-a5b8-40c3-a80d-39ec6c7738dc": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "f6b75700-cb68-5478-a79b-8a9f03cb0df3" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "DER DSA Private Key", + "timestamp": "2018-10-01T05:49:29" + }, + "73ff6f67-34fd-4ec1-b02f-0d1d3078b329": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "262f2172-b284-5a46-ae60-b98b3b0103ea", + "2c672f3e-e325-5554-b483-763996d3497a", + "3bbbd236-85e2-5a7a-94f2-13b336c31cde" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "DER DSA Private Key", + "timestamp": "2018-09-21T15:52:33" + }, + "746fd552-1c93-4795-98ca-37e58cf5109b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1717, + "line_number": 41, + "liveness": "skipped", + "references": { + "component": [ + "0b24bd53-d8ac-5709-a5bf-57ebdaa444bf" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-10-01T05:49:29" + }, + "753fea25-daf4-47a9-ae24-8bb65770cd2b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2080, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "ed2677c8-6e89-5282-8e43-6839822b93f8" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:73e040524c4f523839f429bf4076aea242b42c8e226493c8c22a1c8ac9fcaafd" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2019-07-14T12:17:00" + }, + "75989d4e-0b6a-440a-bc8d-c15d8043938a": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 704, + "line_number": 44, + "liveness": "skipped", + "references": { + "component": [ + "95aa1f63-b83c-5537-a76d-e2eb76d38591" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:40:30" + }, + "7612d23d-f883-481b-9af9-16e62a4c9ada": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 723, + "line_number": 47, + "liveness": "skipped", + "references": { + "component": [ + "0f335c17-0bb2-5ed2-9831-28ecde84a65c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:47" + }, + "7c2b50fa-adab-4ffa-bc5a-8cb0ded05f70": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1472, + "line_number": 81, + "liveness": "skipped", + "references": { + "component": [ + "89f48751-e20f-5830-a7d8-afe194844a6e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1511, + "line_number": 82, + "liveness": "skipped", + "references": { + "component": [ + "89f48751-e20f-5830-a7d8-afe194844a6e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1714, + "line_number": 89, + "liveness": "skipped", + "references": { + "component": [ + "89f48751-e20f-5830-a7d8-afe194844a6e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:51" + }, + "7d71f295-4735-4257-9319-0c51b04dc123": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 668, + "line_number": 49, + "liveness": "skipped", + "references": { + "component": [ + "c5d4cd10-bb2f-5998-ab7d-bb2cecf174fc" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:de4e9f76f38430434e26fc87875be665b145cbe2261d596003af3b30436c77bf" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:46" + }, + "80e476f2-ffca-4fa5-8492-9c1b6577efa3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 657, + "line_number": 45, + "liveness": "skipped", + "references": { + "component": [ + "54c89ac8-ffd0-5adb-96e2-925a6f4bd12f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c25d6b84df3629fcb669be85105ee5542875dc8a624b852383daa88a172669e8" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:42" + }, + "841d8dfd-5720-454d-8a12-5dd074940e43": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 893, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "d822cf76-166a-59ea-b12b-92baf320c114" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:dfc82a5920094a14b755e185fe93a9ef59e5695c7e6a8d9bb578fa87a581cd45" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:52" + }, + "86b37f03-f6e1-4df1-9ab0-b11c6c3e12b4": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1944, + "line_number": 81, + "liveness": "skipped", + "references": { + "component": [ + "545623c1-435e-50c3-87ec-b8c42258a58c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:51" + }, + "86c0bfc9-0b24-4ae5-b7ef-1b9f1cfdcbb3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 39171, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "9ee6f2a0-91ef-5b7f-816c-d870fb6f00e6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:77f6e24a2f5dc82f8db1c4c0b180d595de573947f8c0018d8e4c48dc4fa3a809" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2015-11-28T11:03:38" + }, + "8970bb4f-e89f-4cc1-8111-8f6dfa193905": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 14905, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:3ebfee004b2d861c8a78c5e462b31c1df48e98dcff5d0c689d9ea4cbff713824" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "89e6a410-9861-4c16-bea2-a1d6c69a2075": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 423, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "b87b23ed-4071-5cb7-a08f-04dbf1c7d8c0" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:263e69229ae4556b6b5696ff0a37b34dbd3971553173040588103c2ad493f309" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-03-20T15:45:55" + }, + "8b449f11-d575-485a-a2c9-5427e52ed2c6": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9263, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8cffb2facc04894a1c91a233326526064b00c1672d3bb2bd20513207494bf815" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "8cfe88c2-59a2-4475-b8dd-41432165654b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 719, + "line_number": 45, + "liveness": "skipped", + "references": { + "component": [ + "963cb375-4f0d-5b22-85bc-74d53c7697aa" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:32" + }, + "8d46efb2-eca1-4205-824a-9f7cffe6a1d3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 831, + "line_number": 55, + "liveness": "skipped", + "references": { + "component": [ + "8672daf6-9502-5fe2-8e31-509f86bd450b" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:de4e9f76f38430434e26fc87875be665b145cbe2261d596003af3b30436c77bf" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:50" + }, + "8d8093d3-cee3-49b5-9346-78f85a1b2fc3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 4903, + "line_number": 193, + "liveness": "skipped", + "references": { + "component": [ + "b44602e8-cce8-56cd-a623-683e4d32e96c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5305, + "line_number": 207, + "liveness": "skipped", + "references": { + "component": [ + "b44602e8-cce8-56cd-a623-683e4d32e96c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5423, + "line_number": 212, + "liveness": "skipped", + "references": { + "component": [ + "b44602e8-cce8-56cd-a623-683e4d32e96c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:05" + }, + "8f30877a-5568-4b0a-954e-83895be80f3d": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1140, + "line_number": 69, + "liveness": "skipped", + "references": { + "component": [ + "5e563e4a-85c6-55dc-a0d3-94e627140ae6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c7141620f6766041a6a842b6904af3701edad30ed95c27811e229ab04a50c527" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1341, + "line_number": 77, + "liveness": "skipped", + "references": { + "component": [ + "5e563e4a-85c6-55dc-a0d3-94e627140ae6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:53" + }, + "9270471e-9587-407f-9e6d-48050929fb28": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 95892, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "b4e045ba-f3d2-5dbf-801a-9305125d0a93" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:945b242845853daa52f7c80e43771b2cfb4ee0af56d587644297fe15a2cb35ab" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-02T17:31:00" + }, + "9a559235-ab73-4a90-892d-70cc624e5bcb": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 775, + "line_number": 55, + "liveness": "skipped", + "references": { + "component": [ + "cc6c3318-8286-500d-8b16-859015a112fb" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c9fd507a2608474a3c6b4f2ff59c005f30b00a33dd1e393d9336b7537c337460" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 897, + "line_number": 60, + "liveness": "skipped", + "references": { + "component": [ + "cc6c3318-8286-500d-8b16-859015a112fb" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:c9fd507a2608474a3c6b4f2ff59c005f30b00a33dd1e393d9336b7537c337460" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:58" + }, + "9d8ac3e5-19e7-4b0e-b6e7-8ab72c5c1b89": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1290, + "line_number": 65, + "liveness": "skipped", + "references": { + "component": [ + "dc570d60-3f6c-5a9e-8df9-e93a31b4655c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:9639b3c640309b6eb75ee31b8891c3d413c54ca7e55424836b3a6e321e2c145e" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1456, + "line_number": 71, + "liveness": "skipped", + "references": { + "component": [ + "dc570d60-3f6c-5a9e-8df9-e93a31b4655c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:9639b3c640309b6eb75ee31b8891c3d413c54ca7e55424836b3a6e321e2c145e" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:01" + }, + "a2247533-0974-4c4f-b457-87c17d761fa5": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "0323632a-1b50-5e23-a86d-520ff8c006f8", + "20b028e9-7597-5d4f-8059-5fd95a660569", + "33ce70e6-9fef-5dee-aa9b-d6d68e7e250c", + "7213433f-a16b-5f08-9680-0849ed73f523", + "c2777651-eb10-54b7-8190-be758385e16b", + "dac8cbca-bb31-56ba-9761-0dae35c01505" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-21T15:52:33" + }, + "a4311faa-3b1a-4343-997d-dee2d8e0fdc5": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 871, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "34e8658f-b93c-501b-a4ab-88f18ca146fd" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:b162b9641038f759f17f3df584292835d14917c91230088c34f7c4387c7dae92" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-01T02:13:36" + }, + "a5da627a-828c-41b2-8bf3-a866319e8dc6": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 557, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "54c89ac8-ffd0-5adb-96e2-925a6f4bd12f" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:482a2e8011b4961059005c56e69dc19a0cf9186f536c1e315661988888580634" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-03-20T15:45:42" + }, + "ac52c382-630d-4c02-aba5-00c27b75ae76": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 119582, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:93260b8fb1ce725093a6de85416b56fbef6fc5b368b9add2a3a72d152efebf0f" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-04-14T15:46:00" + }, + "adf7d70f-55cc-4084-ab61-3bba38f62c8a": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 685, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "2f069edb-7610-51bb-9c46-269e9b21fcb1" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:55" + }, + "afef30ef-5a10-4fe4-a19d-eb16a5be58cc": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 753, + "line_number": 51, + "liveness": "skipped", + "references": { + "component": [ + "499273bb-fb5d-5a61-837c-71a432ac0884" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:309614d97d94ace723cf8dc21c77bcbf0b7b9dd18631ffdea9ee714cdfe7234e" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 894, + "line_number": 57, + "liveness": "skipped", + "references": { + "component": [ + "499273bb-fb5d-5a61-837c-71a432ac0884" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:bda45818e61456584a25e55c1eb420918c249982308aec92957f5aeab9f4f78c" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:27" + }, + "b054a537-d9b8-4c07-8c09-fa2d5cd1bbcc": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 688, + "line_number": 43, + "liveness": "skipped", + "references": { + "component": [ + "a8d89cb2-096f-5073-8c5d-3043891b4bf5" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:fba4bb85535f311656bdb1a528bfa695f0c7634115357748d9d64f5bfd665d68" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 827, + "line_number": 49, + "liveness": "skipped", + "references": { + "component": [ + "a8d89cb2-096f-5073-8c5d-3043891b4bf5" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:15639b46c4ece39452909c4fc6bd3991d9f5aa3095dd8bb4d513f37b5c4a3ba3" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:56" + }, + "b1151971-2970-4a72-9836-f3853d1c357f": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 806, + "line_number": 49, + "liveness": "skipped", + "references": { + "component": [ + "e92e48c2-8618-5555-8fb3-84ab8cc24a01" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:4eeefc9ef672880ff5df09f7211d3ad9c69adc560a3f8cc5cdf6313ef31f4da2" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:45" + }, + "b6997ade-1366-4b38-8c70-82c171dc5530": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 692, + "line_number": 47, + "liveness": "skipped", + "references": { + "component": [ + "7ebd297a-6e7c-578a-aa0e-1c757450004e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:4d6c819a37168ea5a77063cc4b374946eb3ec831bb25219884fb788e52027d41" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:47" + }, + "bc375395-9eb9-4f19-ad81-ecbd1f803826": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 760, + "line_number": 26, + "liveness": "skipped", + "references": { + "component": [ + "dc14088b-842d-556d-84ff-2f99d95f59a9" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-09-21T15:52:33" + }, + "bf1872eb-94b3-4b12-92f0-83684a8c7059": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 923, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "39ff4183-15f3-5a74-aa93-25d1d3133182" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:b162b9641038f759f17f3df584292835d14917c91230088c34f7c4387c7dae92" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2013-12-31T22:09:41" + }, + "c5c280df-510b-45b3-a66f-2ce6d5f22051": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1491, + "line_number": 81, + "liveness": "skipped", + "references": { + "component": [ + "de09f468-84e0-52b9-8141-81cc3439d459" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1717, + "line_number": 89, + "liveness": "skipped", + "references": { + "component": [ + "de09f468-84e0-52b9-8141-81cc3439d459" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:28" + }, + "c715a029-9e21-484b-9f7b-1966861d0b44": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 588, + "line_number": 39, + "liveness": "skipped", + "references": { + "component": [ + "b35691e5-a9e1-5b59-8eba-178a0c531c5a" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:06be1a213ae411b2259515f1f01326778557a16eb8e24c77262aef7d24e13f63" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:54" + }, + "c83d1b00-4af1-4e03-94fa-90f29e38652c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "c7eb25c0-29a6-52d8-b9fe-678f99e81ce5" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2019-11-03T23:27:41" + }, + "ca53a8dd-2cd0-4017-a0a5-e62044df5340": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3588, + "line_number": 148, + "liveness": "skipped", + "references": { + "component": [ + "6dd757ba-55d1-5a9a-89d9-ef3e0dd8d5f6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 3919, + "line_number": 158, + "liveness": "skipped", + "references": { + "component": [ + "6dd757ba-55d1-5a9a-89d9-ef3e0dd8d5f6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:34" + }, + "ca809b9e-891a-415f-b192-e9e9d84b4a4e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5321, + "line_number": 213, + "liveness": "skipped", + "references": { + "component": [ + "11f5e718-9341-5a8b-b7fb-a2f26ebad365" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5841, + "line_number": 228, + "liveness": "skipped", + "references": { + "component": [ + "11f5e718-9341-5a8b-b7fb-a2f26ebad365" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:8f52a2e8869d78da9014be18ed29b3696eabcf065d95d7fa0807d3903caf4645" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 5959, + "line_number": 233, + "liveness": "skipped", + "references": { + "component": [ + "11f5e718-9341-5a8b-b7fb-a2f26ebad365" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:51" + }, + "cc3f5e12-4830-44b9-9019-7bb2de1af686": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 786, + "line_number": 26, + "liveness": "skipped", + "references": { + "component": [ + "685fe9d1-3c2c-5853-b7dd-cf2d894cee6e" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2019-11-03T23:27:35" + }, + "ccaec386-6244-4422-8500-f7fed2bee67b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1740, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "620810eb-81d1-5f23-9d00-1634b908933a" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:853071ca16e86e77513e5b579b8367b4ef9ea5791c01c3e94cef33d2a912f2fb" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:46:13" + }, + "d690d880-abc9-4722-b949-f59e1a8a053c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 97820, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "78780aeb-1eb1-5761-b67e-7d0803dc0d16" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f1eab03be7a1333d17aa7148f5c37495c35be182070da5d596895e3e37a4a0a8" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-02T17:31:00" + }, + "da1a3a04-972b-45e8-840e-102ca0fca67c": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 7370, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:81b89eac725be73a90a96f581c0bfa357ef2c37bbe31c478fa22678410415457" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "daa3010a-4535-4735-b15a-3971ee85cd97": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 19823, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:7848d0545a9c82c818c60a5f7896da7ee66530ef0807c494ce554cc5b344aaa4" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "db327a5b-b751-4230-881b-9307e66cdbf3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 738, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "34e8658f-b93c-501b-a4ab-88f18ca146fd" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:6f938b8cfdcb465e47e0971a8ade525a2848bf217c59c0e8e4dc12d7bdbf2dde" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-01-01T02:13:36" + }, + "ded917b3-b52a-4708-9d55-48b2132c9566": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 25996, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "59e10b97-9e22-5210-9c88-073232a1c049", + "735aed34-1ae8-55fb-b309-d50d88aa298a", + "f24af074-8c36-5806-a30a-271cb8b8a992" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:77f6e24a2f5dc82f8db1c4c0b180d595de573947f8c0018d8e4c48dc4fa3a809" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2013-07-16T00:00:00" + }, + "e6e1dd9f-ffb8-40d9-8079-5b33ef11cd83": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1516, + "line_number": 83, + "liveness": "skipped", + "references": { + "component": [ + "c95b205e-984a-5e0e-a148-f84593e58ff2" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1555, + "line_number": 84, + "liveness": "skipped", + "references": { + "component": [ + "c95b205e-984a-5e0e-a148-f84593e58ff2" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1758, + "line_number": 91, + "liveness": "skipped", + "references": { + "component": [ + "c95b205e-984a-5e0e-a148-f84593e58ff2" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e59b43acd3786d18743bec55d0ea584b1d0ffefdd6c29047d320571018145aaf" + }, + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1797, + "line_number": 92, + "liveness": "skipped", + "references": { + "component": [ + "c95b205e-984a-5e0e-a148-f84593e58ff2" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:71e853ff003c1f7df0077605594399015447be9d957adde67db87b496f8e0b6f" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:50" + }, + "e78d058c-65c2-41f1-90ae-42931bdff969": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1548, + "line_number": 83, + "liveness": "skipped", + "references": { + "component": [ + "d4d5c395-c20b-5782-b566-f3af518b1df0" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:0f34f68c278cd76cbc141df1ca3de04b8f136e5d0670392d12f70619d9adb3a5" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:44" + }, + "e81486cc-532b-4b60-af7e-d2271de3f6a7": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 20727, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "62eb4677-5326-5631-a61c-11a15eec57e9" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:667c341ebf35b3d414884a7543cac906510a924b36bd9e89caab0b9554a6c194" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-04-29T14:19:57" + }, + "e9aacb5e-c73c-4f90-926a-a6d55fe632fb": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 719, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "20856f05-9220-5ada-89d4-d7dcced57a8c" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a118f003e89ccae08db80af31f97e8c73e3ff312f1ed0b5b426358cbb49eb8dd" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:52" + }, + "ede93e04-74ca-4ca4-a661-5dc0ef9380c8": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9157, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:b338ce2d21017388e3db1597b34645e430414fd5e7ecb4eba007c7e3ebe43505" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "efff5baa-4301-49b5-ad78-a076f3b2c54e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 682, + "line_number": 49, + "liveness": "skipped", + "references": { + "component": [ + "fe4300d5-b507-5c39-8d1c-a01caf9b7286" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:51ef7379db0ea59db32760c3620e9892146367b9cffc8a940076e3dcb2b271c6" + } + ], + "exposed": false, + "service": "RFC6750 Token", + "timestamp": "2021-03-20T15:45:43" + }, + "f16e9019-c67b-483b-b0fd-594603072192": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "65337ddb-e794-5465-a2e4-a4b0bf817b52" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2015-09-09T14:40:07" + }, + "f24e23a5-56de-485c-9cc0-3195cfbdb36b": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 604, + "line_number": 46, + "liveness": "skipped", + "references": { + "component": [ + "5e70dc0c-24b8-5a6a-8a50-7e8ec352dba0" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:a01052edb73a17a47f0802e40fc9338f8842cfe1dbae76ee41ba4c26f7148e84" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:42" + }, + "f2892e8c-e185-4669-a0a2-424ea72f63e9": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 375551, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "24470852-693e-525e-9240-3d4c6292f7f7", + "a2ffa5d7-5f24-56cf-bc80-517de90cea17" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e25dadf4dbd5f7e997267c2ba1a4f3c345bfd6463f93b1d40a00630e8d990f44" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-10-28T06:56:18" + }, + "f32ab112-ba07-4177-a0c2-5584f684324f": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9955, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:406211ad112f2336da5bd03806c480790dc86ed7846230a1d580b9d28b9eb6a4" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-07T13:38:14" + }, + "f32b2f2c-c594-4377-9901-1137cfe7b656": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1298, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "7c844209-5ce4-5bc2-9ced-0e8180ee1edc" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:9187cb9a17b2aee2adab668c6746e7fe6c4ec94397c923bd7ccb02a3b8858b1b" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-03-20T15:46:10" + }, + "f5f4c45a-4752-451a-b707-1735316bd968": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 11751, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "c162f028-e1d1-5c9a-8717-30ef368589ce" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:30b4d89dc8443ff1acd29bc439efd538a97c35a82c812af1b71451830f702fac" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2021-05-13T04:54:06" + }, + "f64cc31e-ed40-44f1-b216-9c7ef03953bf": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 2539, + "line_number": 39, + "liveness": "skipped", + "references": { + "component": [ + "3317d396-446f-57e4-845b-49a5f7e67b53" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:6f125ae064836117bd59b5c1ebb630b44bfc96bd6b2fb7da9c29c1d1f8c37773" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:59" + }, + "f6f822c1-b8ad-4928-be63-617c6803f1e3": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 814, + "line_number": 47, + "liveness": "skipped", + "references": { + "component": [ + "89dd8fa7-af1b-525a-aa44-f0ebc8b72896" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:ee4bd6a76fd7553f73b8cac6e78eca7664dcacf5991ddabcf09b833d836bc253" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:29" + }, + "fa44c48a-df07-4787-85df-ec2fbb2bf94d": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 9088, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:e7cd4106690902a3ea7a5f8767778025d54865b3154ebf284170a20dc6b60f59" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2014-04-14T15:46:00" + }, + "fd185c16-639d-4554-9010-50e69546501e": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 1523, + "line_number": 72, + "liveness": "skipped", + "references": { + "component": [ + "2aacd19b-4594-571c-8842-d4a46cf33909" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:f03da1501c18b92b0736b133920e8f3bbf2d018df97ce9f66dc12b60cde86a30" + } + ], + "exposed": false, + "service": "Basic Access credentials", + "timestamp": "2021-03-20T15:45:32" + }, + "fddbc81f-b184-4b3e-9d4b-46d54933c9a8": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 39527, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "6d3a253d-d8c4-5628-82ae-7156c8603772", + "8b7b6a47-e2bc-5cbe-96ac-56a8f59fb98e" + ] + }, + "rule_id": "SQ34101", + "secret": "rl-sha256:77f6e24a2f5dc82f8db1c4c0b180d595de573947f8c0018d8e4c48dc4fa3a809" + } + ], + "exposed": false, + "service": "Networking Credential", + "timestamp": "2015-11-23T22:23:54" + }, + "fe49d061-b6f9-46c1-84f1-a0f889a8d459": { + "evidence": [ + { + "audit": null, + "canary": false, + "endpoints": null, + "file_offset": 0, + "line_number": null, + "liveness": "skipped", + "references": { + "component": [ + "b2fb4593-1dc9-5c00-8a19-22a822f7c688" + ] + }, + "rule_id": "SQ34101", + "secret": "" + } + ], + "exposed": false, + "service": "PEM RSA Private Key", + "timestamp": "2018-10-01T05:49:29" + } + }, + "services": { + "0c62091b-76f4-4624-a040-80cad7c4226c": { + "auth": true, + "endpoints": [ + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.ap-northeast-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.ap-south-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.ca-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.eu-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.eu-west-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.eu-west-3.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3-website.us-east-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "us-east-1.amazonaws.com" + } + ], + "flow": "bidirectional", + "name": "Amazon AWS API", + "references": { + "component": [ + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d65b3073-4873-5fb4-a202-02313d9062aa" + ] + }, + "type": "data-exchange", + "version": "Generic", + "violations": [] + }, + "2c24e089-00d2-4e33-8c86-439b8b6f6244": { + "auth": true, + "endpoints": [ + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.ap-northeast-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.ap-south-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.ca-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ap-northeast-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ap-northeast-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ap-south-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ap-southeast-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ap-southeast-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.ca-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.eu-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.eu-west-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.eu-west-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.eu-west-3.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.sa-east-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.us-east-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.dualstack.us-east-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.eu-central-1.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.eu-west-2.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.eu-west-3.amazonaws.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "s3.us-east-2.amazonaws.com" + } + ], + "flow": "bidirectional", + "name": "Amazon S3 Cloud Storage API", + "references": { + "component": [ + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d65b3073-4873-5fb4-a202-02313d9062aa" + ] + }, + "type": "file-exchange", + "version": "Generic", + "violations": [] + }, + "2ddb1390-da2e-4d1e-9e79-ab7651458117": { + "auth": true, + "endpoints": [ + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "googleapis.com" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "http://storage.googleapis.com/bazel-apt" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz" + }, + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://oss-fuzz-build-logs.storage.googleapis.com/badges/curl.svg" + } + ], + "flow": "bidirectional", + "name": "Google API", + "references": { + "component": [ + "63e136db-5ffa-5f09-9ff0-f942f525011f", + "6efde4e3-d945-5940-ae19-0037682d1e2e", + "c5f8438b-f9ee-560b-875c-8bc7a86970ef", + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d65b3073-4873-5fb4-a202-02313d9062aa", + "d95e482f-0935-553e-a43f-3d3414d639a1", + "ea3a229b-1675-5090-9d34-983c81959627" + ] + }, + "type": "data-exchange", + "version": "Generic", + "violations": [] + }, + "b1733c1d-3742-4bb3-8ad6-2ecdd9853df8": { + "auth": true, + "endpoints": [ + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "storage.yandexcloud.net" + } + ], + "flow": "bidirectional", + "name": "Yandex Cloud Storage API", + "references": { + "component": [ + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d65b3073-4873-5fb4-a202-02313d9062aa" + ] + }, + "type": "file-exchange", + "version": "Generic", + "violations": [] + }, + "d2aa6676-56dc-4c92-80f8-b44eccd08986": { + "auth": true, + "endpoints": [ + { + "classification": { + "result": "", + "status": "Unknown" + }, + "value": "https://archive.org/download/ftp.microsoft.com/ftp.microsoft." + } + ], + "flow": "outbound", + "name": "Internet Archive Digital Library API", + "references": { + "component": [ + "384dd51e-f883-532e-8535-c4a61dff7549", + "39d99d6e-f48b-52b5-9033-da247bca071e", + "3b375a00-99c7-588d-b32a-09e3e6743741", + "42480e2c-5cad-5f1e-b85e-9c123201335d", + "463f8c73-e2ea-5a89-8012-8ad3577a4366", + "4f1fdc31-b378-5d6e-8021-9350d8dc822e", + "51fd1b9a-8771-5e95-b559-93c5c05e735e", + "60f45c81-825a-526f-9d0e-0f12a126e7a3", + "636970b8-8546-5f50-a806-052cdfa21e5d", + "65cc13b0-b42f-503f-92c0-fb320dabc30c", + "6c9842ad-aac3-58a7-8570-4025f2cadf31", + "6ca42987-0971-58b0-bfa8-9910ca9cc7e3", + "7730745d-fc1c-5f62-afc7-26d30d8733c3", + "def278cd-248e-561b-bf8e-7c1bee9cfe8e", + "f39d786d-7238-592f-9a84-f736f2e6baf7" + ] + }, + "type": "file-exchange", + "version": "Generic", + "violations": [] + } + }, + "violations": { + "0972e570-8fc1-462f-9000-eee4b86213e2": { + "audit": null, + "category": "secrets", + "description": "Detected presence of embedded debug databases.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "3767d012-f2f7-59b6-b81a-6f658bbca7ff", + "65694532-f570-550e-bf60-f67f64aec079" + ] + }, + "rule_id": "SQ34203", + "severity": "medium", + "statistics": { + "applicable": 2, + "enforcements": 0, + "exclusions": 0, + "violations": 2 + }, + "status": "pass" + }, + "137e0975-fd1f-4bed-8d5b-1475a2d38c5a": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files that were compiled without any dynamic symbol hijacking protections.", + "effort": "low", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "0b8af797-8d51-5a06-8323-4b5baaf5f599", + "0c490ebc-9231-565e-80da-418ea4a51514", + "3767d012-f2f7-59b6-b81a-6f658bbca7ff", + "45aa0d9a-37fe-5744-aec8-122f6550a704", + "5797ae5e-66b9-5730-808b-17279a35f874", + "650fdc71-f1a3-59c2-8772-049a89c25920", + "65694532-f570-550e-bf60-f67f64aec079", + "816f8945-8549-5569-86f8-38657a52891d", + "885ffd02-5ae7-5212-8c4b-033f50970b92", + "a02b35a7-f5f2-5c3d-b302-4acd4159d467", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d", + "a9b5d7f9-d616-55af-b819-bad3538bb587", + "ce60ff12-fc0c-59da-9efd-d38483cb0604", + "d513e85c-f288-519d-acd3-9d9478564ef8", + "e66c6823-0fb7-570e-afdd-38c295f8ca9e" + ] + }, + "rule_id": "SQ18112", + "severity": "medium", + "statistics": { + "applicable": 15, + "enforcements": 0, + "exclusions": 0, + "violations": 15 + }, + "status": "pass" + }, + "1bc739bf-a5ff-4a29-a678-ef9605482354": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that rely on the ineffective ASLR vulnerability mitigation enforcement option.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "09189597-9f2f-50b0-bc35-0dc81a4f5d46", + "10d094ff-1c11-542d-8d4a-b1af606d7415", + "139efd73-cdf2-5302-b586-5a3813e7426a", + "15ab0bb7-6c67-51a0-be91-009e7a4dd744", + "17e47687-3514-5c75-b33e-fce7179c3fd3", + "2a5c20d3-95fa-5e32-980a-f581f427edd9", + "2f7b8e68-fd9e-5280-bf51-14f51114d07d", + "38ef623f-bc2b-54b4-9b15-089897bd117e", + "405c5f39-2cae-53a5-adf1-4ba0af7e979d", + "41f30b86-3d40-59b8-b8d3-d697ffe470eb", + "4803a412-a723-570e-be2b-2391069df634", + "4cb69424-cb07-5748-8c1a-0139252081a4", + "4e8fe2f3-da54-5127-b8d4-fa082637513a", + "4f5f7784-f63b-518b-9929-5240a9043089", + "4fc5d5f1-1142-52a3-ad23-d720e7c1673e", + "584e1ed8-492d-55de-b2fc-369d6929c4d5", + "5d51665e-5dca-585e-bbe6-8d78edee94c3", + "606fd751-e461-52f4-bec8-546cedf99616", + "65340ad7-8c92-5538-939a-5ad8f4adf345", + "6551719f-1bde-58f6-bc44-85dfd60ddbbe", + "673aa8f3-f0be-5bf8-a5a9-f9a457f3bdd3", + "7548e5ec-fafd-511b-9daa-e28429f081d5", + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d", + "7ca0dcb2-c4d5-5005-aa8a-8a0d25df982d", + "7e38c8dd-6cc2-50f7-8710-ef8fcb6a5ca5", + "85ac4c35-dfbf-5362-9962-69f4871c33f5", + "88df7986-3ef8-51a4-ac3a-f6f8bbf60ceb", + "9ecdbb3e-e0ee-594b-99dc-5b0d78ce06fd", + "a066efa3-013b-5e63-87e9-99515c4613b4", + "a240ae62-169f-5e35-8452-3ccf2b455ddf", + "b5301c7f-f08c-54a5-a60d-54b4df230b94", + "ba78cf0b-d610-5ab3-8e38-d8e1dfe01195", + "bb21e9b7-4c48-5306-9aec-7483a26918fd", + "bc949040-a242-557a-be48-435791fb9391", + "bf622008-dc14-50f9-966c-b4fa988b1eaf", + "cd58a7eb-358d-5056-b548-659ba3fd4d04", + "cdc74262-32e5-5314-b8cc-6714e6b47b1c", + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a", + "d24406af-2fe4-5f2f-8fc2-5045008706a2", + "d3e9ac7d-bea5-5af4-bc34-482d9482b433", + "dccb91d8-2e16-563c-a30f-e0084c2d8b55", + "dd468689-c2fa-5ed3-97cd-0126ea4390df", + "ef7419e8-1ca2-52ea-8f20-f13e918c2858", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff966838-e686-5ba1-b3b6-2b3b520d4436" + ] + }, + "rule_id": "SQ14108", + "severity": "medium", + "statistics": { + "applicable": 45, + "enforcements": 0, + "exclusions": 0, + "violations": 45 + }, + "status": "pass" + }, + "1df2f4ef-a18f-466b-b9cd-c9bc4c9d6681": { + "audit": null, + "category": "secrets", + "description": "Detected presence of version control tool artifacts.", + "effort": "low", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "c808b456-66b1-514d-a7a7-49f3372885ff" + ] + }, + "rule_id": "SQ34201", + "severity": "high", + "statistics": { + "applicable": 1, + "enforcements": 1, + "exclusions": 0, + "violations": 1 + }, + "status": "fail" + }, + "1f954716-4969-4d0e-a99a-32a2b83ce5b3": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that use suspicious top-level domains.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "1eb14a2f-d97f-5566-966d-e3418f722569", + "2d3b0594-c4b9-560c-a38e-36bed3971b95", + "4e621b62-5591-5ea6-971f-a97a4f0aad01", + "567baf16-435e-52f5-8686-374941cf961d", + "6efde4e3-d945-5940-ae19-0037682d1e2e", + "7c5b8e06-8af3-5ba3-b9ee-d1e1b3adf8c6", + "81878535-de80-5c0d-a235-b50261ccf4dd", + "8972ab8e-8efa-5b12-b51f-69c0b84cff96", + "8d41288e-7922-5b15-9e97-01c60734eaa6", + "9b69b00c-0673-53e9-8a83-ed7af81cdd8f", + "9f418517-4ae0-53ce-83c4-393ac9a1807d", + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d82c5c2a-bd14-5671-a846-ef67d9cf9a66", + "e2de4cc6-c240-5709-aa74-b1cf11061733", + "f98474f7-1f8e-5976-ac70-141e5f9c4dc4" + ] + }, + "rule_id": "TH17118", + "severity": "medium", + "statistics": { + "applicable": 15, + "enforcements": 0, + "exclusions": 0, + "violations": 15 + }, + "status": "pass" + }, + "2352c741-1e76-4c5b-9588-4c79de578d88": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files packed with runtime packers that reduce or nullify the effects of vulnerability mitigation protections.", + "effort": "medium", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b" + ] + }, + "rule_id": "SQ14101", + "severity": "high", + "statistics": { + "applicable": 4, + "enforcements": 4, + "exclusions": 0, + "violations": 4 + }, + "status": "fail" + }, + "23cc3623-ed6c-4967-b401-620716509e4d": { + "audit": null, + "category": "secrets", + "description": "Detected presence of commonly distributed sensitive data.", + "effort": "low", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "0323632a-1b50-5e23-a86d-520ff8c006f8", + "0b24bd53-d8ac-5709-a5bf-57ebdaa444bf", + "0c47a7c2-da57-5765-a5b8-cc2340a7374f", + "0f335c17-0bb2-5ed2-9831-28ecde84a65c", + "0fe1bf60-292b-5697-b951-9fd93ad808ff", + "11f5e718-9341-5a8b-b7fb-a2f26ebad365", + "13ff53e0-e6a6-518f-bee9-a57deb62c38f", + "14fd40b3-cab2-52ae-8344-839ef6ab8447", + "1ca0d6d9-c89a-5684-8dee-3b7327c0d692", + "20856f05-9220-5ada-89d4-d7dcced57a8c", + "20b028e9-7597-5d4f-8059-5fd95a660569", + "23b427a6-d4bf-5e63-a560-359fa4921c1f", + "24470852-693e-525e-9240-3d4c6292f7f7", + "262f2172-b284-5a46-ae60-b98b3b0103ea", + "2aacd19b-4594-571c-8842-d4a46cf33909", + "2c672f3e-e325-5554-b483-763996d3497a", + "2f069edb-7610-51bb-9c46-269e9b21fcb1", + "3317d396-446f-57e4-845b-49a5f7e67b53", + "33ce70e6-9fef-5dee-aa9b-d6d68e7e250c", + "34e8658f-b93c-501b-a4ab-88f18ca146fd", + "37c38e92-8827-5139-9178-0eb1a413c6ae", + "39ff4183-15f3-5a74-aa93-25d1d3133182", + "3bbbd236-85e2-5a7a-94f2-13b336c31cde", + "3e29104d-824a-5371-a1ad-112560079a48", + "499273bb-fb5d-5a61-837c-71a432ac0884", + "4b4ca1db-fc01-5b24-aa54-d2cfefa2801a", + "4b62b8f0-f017-560c-b46d-8f13545be45c", + "4c1c5a1e-0cd4-53ba-8987-658317893741", + "5217018d-382a-540e-a295-cce56ef1d807", + "545623c1-435e-50c3-87ec-b8c42258a58c", + "54c89ac8-ffd0-5adb-96e2-925a6f4bd12f", + "59e10b97-9e22-5210-9c88-073232a1c049", + "5e3f0fb4-b494-5ab7-811c-e00699478bfa", + "5e563e4a-85c6-55dc-a0d3-94e627140ae6", + "5e70dc0c-24b8-5a6a-8a50-7e8ec352dba0", + "620810eb-81d1-5f23-9d00-1634b908933a", + "62eb4677-5326-5631-a61c-11a15eec57e9", + "63236478-2b2b-5609-a94e-878b2efa029e", + "65337ddb-e794-5465-a2e4-a4b0bf817b52", + "6705893c-87ca-536e-8ba4-c4f442980d15", + "685fe9d1-3c2c-5853-b7dd-cf2d894cee6e", + "6d3a253d-d8c4-5628-82ae-7156c8603772", + "6dd757ba-55d1-5a9a-89d9-ef3e0dd8d5f6", + "7213433f-a16b-5f08-9680-0849ed73f523", + "735aed34-1ae8-55fb-b309-d50d88aa298a", + "769544f2-ef96-595a-b036-f0c342aa7209", + "78780aeb-1eb1-5761-b67e-7d0803dc0d16", + "7c844209-5ce4-5bc2-9ced-0e8180ee1edc", + "7ebd297a-6e7c-578a-aa0e-1c757450004e", + "810b2dd3-7ed5-5f43-b986-3f0c0820e902", + "8672daf6-9502-5fe2-8e31-509f86bd450b", + "89dd8fa7-af1b-525a-aa44-f0ebc8b72896", + "89f48751-e20f-5830-a7d8-afe194844a6e", + "8b7b6a47-e2bc-5cbe-96ac-56a8f59fb98e", + "8db4d475-8f0d-5581-b23c-5e89d937a161", + "8f41e6d2-7f53-5282-aa1d-4071c9797a20", + "95aa1f63-b83c-5537-a76d-e2eb76d38591", + "963cb375-4f0d-5b22-85bc-74d53c7697aa", + "9ee6f2a0-91ef-5b7f-816c-d870fb6f00e6", + "9fdeda08-ae87-5e4d-a137-1060989b20d1", + "a0069427-7d8c-58a2-b724-ed67e8b5c834", + "a1c9418d-7b42-5ff0-8e54-afc1d32e2617", + "a2ffa5d7-5f24-56cf-bc80-517de90cea17", + "a7b435f4-95be-5949-b13d-572bff3f2b72", + "a8d89cb2-096f-5073-8c5d-3043891b4bf5", + "abb3d38c-949d-5719-a3e2-e10a5fb0647f", + "b2fb4593-1dc9-5c00-8a19-22a822f7c688", + "b35691e5-a9e1-5b59-8eba-178a0c531c5a", + "b44602e8-cce8-56cd-a623-683e4d32e96c", + "b4e045ba-f3d2-5dbf-801a-9305125d0a93", + "b608d5ec-e4ae-5bb4-afd4-9f0835dc658a", + "b87b23ed-4071-5cb7-a08f-04dbf1c7d8c0", + "b9184dc3-6afd-533f-ab4f-9a3d84a8692b", + "bf8bddc5-e9c0-51ad-b6d5-fd182fae637c", + "c162f028-e1d1-5c9a-8717-30ef368589ce", + "c2777651-eb10-54b7-8190-be758385e16b", + "c5d4cd10-bb2f-5998-ab7d-bb2cecf174fc", + "c7eb25c0-29a6-52d8-b9fe-678f99e81ce5", + "c95b205e-984a-5e0e-a148-f84593e58ff2", + "cc6c3318-8286-500d-8b16-859015a112fb", + "ccc0c1c2-a93c-5e4b-b540-6bc42968bd5c", + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6", + "d4d5c395-c20b-5782-b566-f3af518b1df0", + "d5381ab6-ba54-5e60-94b3-780061a1938b", + "d822cf76-166a-59ea-b12b-92baf320c114", + "dac8cbca-bb31-56ba-9761-0dae35c01505", + "dc14088b-842d-556d-84ff-2f99d95f59a9", + "dc570d60-3f6c-5a9e-8df9-e93a31b4655c", + "dc8d897a-042b-5188-b2da-b389e3891940", + "de09f468-84e0-52b9-8141-81cc3439d459", + "de8d8e83-ce7e-5f5a-baa9-9513714567bf", + "df694fce-bfdf-572e-8033-443ca4f35426", + "e6e986b5-15a7-55f4-b8be-ecadd2bd7af2", + "e92e48c2-8618-5555-8fb3-84ab8cc24a01", + "ed2677c8-6e89-5282-8e43-6839822b93f8", + "eef9193e-d694-57eb-9a51-ba383da4e6b1", + "ef025681-9a01-5105-beb4-216103fa0fa3", + "f24af074-8c36-5806-a30a-271cb8b8a992", + "f4f621bd-3c03-5b00-96e9-8452e8455323", + "f6b75700-cb68-5478-a79b-8a9f03cb0df3", + "f746f6c5-5365-5da2-8dc1-d8e359efe345", + "f91a412a-07e0-5f3e-b422-c73205c11f77", + "fcb7f0a7-6453-5345-af0d-de215a71b07f", + "fe4300d5-b507-5c39-8d1c-a01caf9b7286" + ] + }, + "rule_id": "SQ34101", + "severity": "low", + "statistics": { + "applicable": 104, + "enforcements": 0, + "exclusions": 0, + "violations": 104 + }, + "status": "pass" + }, + "26128082-f188-471b-801a-5cf93178bfd2": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing domains used for intercepting and inspecting HTTP requests.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "7cfd307c-c983-5f1a-b9e5-dc2aff1622a0", + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d65b3073-4873-5fb4-a202-02313d9062aa" + ] + }, + "rule_id": "TH17131", + "severity": "high", + "statistics": { + "applicable": 3, + "enforcements": 0, + "exclusions": 0, + "violations": 3 + }, + "status": "pass" + }, + "26d837f5-4c50-437b-87b3-d6e26c75d8e9": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement the DEP vulnerability mitigation protection.", + "effort": "low", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "09189597-9f2f-50b0-bc35-0dc81a4f5d46", + "10d094ff-1c11-542d-8d4a-b1af606d7415", + "139efd73-cdf2-5302-b586-5a3813e7426a", + "15ab0bb7-6c67-51a0-be91-009e7a4dd744", + "17e47687-3514-5c75-b33e-fce7179c3fd3", + "1d50e9c4-0f16-559f-a09d-67029aaaccd7", + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde", + "2277d9c2-3882-53b8-a34b-4c03b21b1391", + "2a5c20d3-95fa-5e32-980a-f581f427edd9", + "2f7b8e68-fd9e-5280-bf51-14f51114d07d", + "3848f33d-4f37-54b7-8fb0-41df20102cda", + "38ef623f-bc2b-54b4-9b15-089897bd117e", + "405c5f39-2cae-53a5-adf1-4ba0af7e979d", + "405fb8b9-75c7-5068-9785-f1b0eb8b2208", + "41f30b86-3d40-59b8-b8d3-d697ffe470eb", + "4803a412-a723-570e-be2b-2391069df634", + "4cb69424-cb07-5748-8c1a-0139252081a4", + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "4e8fe2f3-da54-5127-b8d4-fa082637513a", + "4f5f7784-f63b-518b-9929-5240a9043089", + "4fc5d5f1-1142-52a3-ad23-d720e7c1673e", + "55ce0143-bf25-5c64-8b17-32035971f816", + "584e1ed8-492d-55de-b2fc-369d6929c4d5", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "5d51665e-5dca-585e-bbe6-8d78edee94c3", + "606fd751-e461-52f4-bec8-546cedf99616", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "65340ad7-8c92-5538-939a-5ad8f4adf345", + "6551719f-1bde-58f6-bc44-85dfd60ddbbe", + "673aa8f3-f0be-5bf8-a5a9-f9a457f3bdd3", + "6a554a4f-2bd1-59de-99b1-eca26f6447f7", + "6d30f242-a557-5701-baf5-45fc534350ac", + "7548e5ec-fafd-511b-9daa-e28429f081d5", + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d", + "78e4396e-fec3-5964-9723-02b6bf34a95e", + "7ca0dcb2-c4d5-5005-aa8a-8a0d25df982d", + "7e38c8dd-6cc2-50f7-8710-ef8fcb6a5ca5", + "85ac4c35-dfbf-5362-9962-69f4871c33f5", + "88df7986-3ef8-51a4-ac3a-f6f8bbf60ceb", + "925507e0-8773-5518-a339-c54c7c65bf5f", + "98eb69dc-dcc5-57ae-98b0-6656a866105a", + "9ecdbb3e-e0ee-594b-99dc-5b0d78ce06fd", + "a066efa3-013b-5e63-87e9-99515c4613b4", + "a240ae62-169f-5e35-8452-3ccf2b455ddf", + "aa7afb0d-bc9e-594b-98dc-f8d1c687a14e", + "b5301c7f-f08c-54a5-a60d-54b4df230b94", + "ba78cf0b-d610-5ab3-8e38-d8e1dfe01195", + "bb21e9b7-4c48-5306-9aec-7483a26918fd", + "bc949040-a242-557a-be48-435791fb9391", + "bf622008-dc14-50f9-966c-b4fa988b1eaf", + "cd58a7eb-358d-5056-b548-659ba3fd4d04", + "cdc74262-32e5-5314-b8cc-6714e6b47b1c", + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a", + "d24406af-2fe4-5f2f-8fc2-5045008706a2", + "d336a0c1-df15-541f-b2c3-d09d56786629", + "d3e9ac7d-bea5-5af4-bc34-482d9482b433", + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae", + "dccb91d8-2e16-563c-a30f-e0084c2d8b55", + "dd468689-c2fa-5ed3-97cd-0126ea4390df", + "dee95658-0cb8-5e1d-9b33-8b57a3be738d", + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "e2f91246-c9c2-5a5c-a902-a99cda146d5f", + "ef7419e8-1ca2-52ea-8f20-f13e918c2858", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b", + "ff966838-e686-5ba1-b3b6-2b3b520d4436" + ] + }, + "rule_id": "SQ14102", + "severity": "high", + "statistics": { + "applicable": 66, + "enforcements": 0, + "exclusions": 0, + "violations": 66 + }, + "status": "pass" + }, + "37720ab1-7975-4bc0-a44b-3e200dc8a05a": { + "audit": null, + "category": "secrets", + "description": "Detected presence of embedded source code filenames or paths.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "3767d012-f2f7-59b6-b81a-6f658bbca7ff", + "65694532-f570-550e-bf60-f67f64aec079", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d" + ] + }, + "rule_id": "SQ34204", + "severity": "medium", + "statistics": { + "applicable": 3, + "enforcements": 0, + "exclusions": 0, + "violations": 3 + }, + "status": "pass" + }, + "3d7d76a6-55b6-42f4-aa23-a987b88251c4": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files that declare the stack as executable, making non-executable memory mitigations less effective.", + "effort": "low", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "45aa0d9a-37fe-5744-aec8-122f6550a704", + "5797ae5e-66b9-5730-808b-17279a35f874", + "650fdc71-f1a3-59c2-8772-049a89c25920", + "885ffd02-5ae7-5212-8c4b-033f50970b92", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d", + "ce60ff12-fc0c-59da-9efd-d38483cb0604" + ] + }, + "rule_id": "SQ18101", + "severity": "high", + "statistics": { + "applicable": 6, + "enforcements": 0, + "exclusions": 0, + "violations": 6 + }, + "status": "pass" + }, + "4d5891a4-2519-47c5-8aa5-74e13ec08cad": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files that declare some writable segments as executable, making non-executable memory mitigations less effective.", + "effort": "medium", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "5797ae5e-66b9-5730-808b-17279a35f874", + "885ffd02-5ae7-5212-8c4b-033f50970b92", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d" + ] + }, + "rule_id": "SQ18102", + "severity": "high", + "statistics": { + "applicable": 3, + "enforcements": 0, + "exclusions": 0, + "violations": 3 + }, + "status": "pass" + }, + "51e86172-eb2c-4a42-b490-ed3d96135212": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files compiled without any kind of buffer overrun protection.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "5797ae5e-66b9-5730-808b-17279a35f874", + "885ffd02-5ae7-5212-8c4b-033f50970b92", + "a02b35a7-f5f2-5c3d-b302-4acd4159d467" + ] + }, + "rule_id": "SQ18104", + "severity": "medium", + "statistics": { + "applicable": 3, + "enforcements": 0, + "exclusions": 0, + "violations": 3 + }, + "status": "pass" + }, + "528d999d-f458-46e5-8438-40810834a580": { + "audit": null, + "category": "hunting", + "description": "Detected presence of software components that can tamper with the machine power settings.", + "effort": "high", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "0e71103f-d0bd-5baa-9ba3-e89ec3fb0617", + "157fb13e-c099-5ea2-9423-8ddcc250e166", + "26397016-8b78-567f-afa1-17209b3e06a1", + "26f4be51-931b-5d84-b689-d644f669879b", + "31537a63-452f-593a-a44b-0f8a2a1ada94", + "3df0ed67-28be-58bc-adc0-b1ef029f0154", + "4e69af91-f75f-5c49-89d1-fabef7841db2", + "598ac6d7-93cd-5365-971e-447657c891a4", + "b3d3e48b-c688-5a71-8dd7-fd8f33a00fca", + "cc7d0e2a-5caa-5c01-8460-5500cfcf4432", + "d60b65bb-ab45-51e5-89cd-192901b939b8", + "f3bf0183-1bf0-51c0-86da-6b5decc9d8a3", + "fbbde831-ec19-5298-9aae-566789810904" + ] + }, + "rule_id": "TH16111", + "severity": "medium", + "statistics": { + "applicable": 13, + "enforcements": 0, + "exclusions": 0, + "violations": 13 + }, + "status": "pass" + }, + "554391de-84a0-44d8-a237-287669091f51": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement CFG vulnerability mitigation protection.", + "effort": "medium", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "024440bd-ea73-519c-91e2-6099a1011c29", + "0383d62d-4265-5624-a4d9-b53817839f93", + "0434eac0-5af6-5d9e-8104-87a8deecbd7a", + "052a18c3-ca4b-5981-9e62-e204ecb7a236", + "0572b0ca-3484-5efc-ad2f-16ee9e024150", + "07c85c94-585f-5bd2-a016-4f5ae9fc5415", + "080d7aed-8b1a-5ee8-80a7-c96bdd348732", + "0832c458-4817-585d-8661-58a48673fcf4", + "09189597-9f2f-50b0-bc35-0dc81a4f5d46", + "0aedb3d1-789a-5e48-813f-0155e18b313d", + "0cbb6847-701d-51c7-b952-c305ee815a1a", + "10d094ff-1c11-542d-8d4a-b1af606d7415", + "12da0ef2-9a49-5603-a10c-71e4abee0c44", + "139efd73-cdf2-5302-b586-5a3813e7426a", + "13af18e9-6844-590e-92d0-20b5f6fa2d6b", + "159831d6-8269-5834-af22-745129d3ad6d", + "15ab0bb7-6c67-51a0-be91-009e7a4dd744", + "15c7c189-a1b6-52e8-ba1d-23dbdd2f5ffa", + "168659ef-79f2-5ca7-a671-fcbaf0e8f111", + "17636e07-12aa-5af9-8a2c-666afc05b1fb", + "17e47687-3514-5c75-b33e-fce7179c3fd3", + "1843d3d3-ae3e-5b5f-b065-c5d7c1e6a194", + "19001d84-602a-5b03-a553-595e75f461a0", + "1b97d5e1-31bf-5700-8841-146f93eb59d7", + "1cd3a5d0-6160-5185-a39c-946203f0015b", + "1d50e9c4-0f16-559f-a09d-67029aaaccd7", + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde", + "1da28165-f0d1-5e07-8528-0b100f14ce6c", + "1f2dc7a6-9d67-5449-afa1-e55d841564fe", + "1f410d41-1a8b-5ad1-961c-5c328471b307", + "225ceffa-c659-5b3c-8efa-e818a1e6cd68", + "2277d9c2-3882-53b8-a34b-4c03b21b1391", + "233d7db6-032e-59d4-9b8f-bbb93d1fa1a3", + "25953d72-af91-5304-a799-5b76e1ab7ea2", + "28466dba-8e65-5fda-a05f-a4d015f05da4", + "29884c05-6a72-5625-996c-40bc5b0dbc21", + "29e88192-4fdb-5199-8202-3738c019c496", + "2a271e0f-b8ab-5a15-b13d-162086740759", + "2a5c20d3-95fa-5e32-980a-f581f427edd9", + "2b83554a-6961-5617-9fe6-bd7ee79da147", + "2bd63654-ecd9-54dc-9b7a-bcbcfd1a88c0", + "2f44fa03-58bb-58ec-aedb-acf542af0668", + "2f585e6c-3d84-59fe-9d84-bb6bf6e6878f", + "2f7b8e68-fd9e-5280-bf51-14f51114d07d", + "2f830cf3-70ef-5a7b-afcf-4c6c09234852", + "3064e682-e64b-5c46-b750-079e58535b06", + "3176c0e3-0153-54b6-ac4e-429165ff46c2", + "32971431-b504-5230-9bce-54c14a0ff397", + "34ea9303-40bc-5aef-98db-9cfa28694df8", + "3848f33d-4f37-54b7-8fb0-41df20102cda", + "38ef623f-bc2b-54b4-9b15-089897bd117e", + "3d860369-4045-5a1a-91d1-9558243893ca", + "405c5f39-2cae-53a5-adf1-4ba0af7e979d", + "405fb8b9-75c7-5068-9785-f1b0eb8b2208", + "41f30b86-3d40-59b8-b8d3-d697ffe470eb", + "4246f9bd-8aec-55bc-9786-ec931ae3976a", + "440519fe-9927-5101-8909-0d0576b92e76", + "451ead08-b57c-5889-982c-e778a3a3ae22", + "4803a412-a723-570e-be2b-2391069df634", + "4b24d125-a66f-5947-a7e1-2a9ecdffed81", + "4b457731-3785-541d-b350-e6daee9c6156", + "4cb69424-cb07-5748-8c1a-0139252081a4", + "4ce31491-1dac-524a-ae9e-5243f7a87509", + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "4e8fe2f3-da54-5127-b8d4-fa082637513a", + "4f5f7784-f63b-518b-9929-5240a9043089", + "4fc5d5f1-1142-52a3-ad23-d720e7c1673e", + "5062bb70-19c1-5992-a121-452daa77f2b2", + "55142fbb-a896-54fd-b455-5af4d4c602ec", + "55286301-8ccc-5e09-87d2-8a0182352b8f", + "55ce0143-bf25-5c64-8b17-32035971f816", + "56aee1bc-9501-5d13-9839-9cac50e058c5", + "584e1ed8-492d-55de-b2fc-369d6929c4d5", + "5ae567c6-121f-56c9-82c4-d23c9c0b0589", + "5c28b05f-41f6-5c7c-97c1-c451470b2370", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "5d51665e-5dca-585e-bbe6-8d78edee94c3", + "5d7b2d98-bd6d-5eb3-929a-5a7ecc5575f6", + "5de1fbfa-83b6-58a6-afb4-6ec3cd54a27a", + "5f94caa8-4f40-5428-a58f-ad6cb10510b2", + "6237202e-0692-533e-90da-4a4b5a67d9e4", + "642a21e8-fe1a-5139-961d-b05062ced82f", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "65340ad7-8c92-5538-939a-5ad8f4adf345", + "6551719f-1bde-58f6-bc44-85dfd60ddbbe", + "65bac4bb-3e26-5304-9834-a735fae89152", + "65c4b401-33e9-5583-a8ef-f3192e9592a5", + "65fc7c6d-e0d0-50ae-895d-ae3a2d5281b5", + "66ac5772-9198-5abb-a910-c444c9c4d0c4", + "673aa8f3-f0be-5bf8-a5a9-f9a457f3bdd3", + "6762e4fb-801a-539e-9198-22b69e5d6ee1", + "6827b867-543c-53f6-aa6e-ab6ed721a1a1", + "69cc8fc8-177f-5a02-816c-7775efe06b7d", + "6a1715f9-fb5b-57f3-9f13-12952df6e4d7", + "6a554a4f-2bd1-59de-99b1-eca26f6447f7", + "6ab95a30-2480-5670-9fba-b38f6657503e", + "6d30f242-a557-5701-baf5-45fc534350ac", + "6ddf63fa-da51-54b4-aa7c-ce162e51b9bb", + "6ef26a05-e996-5783-b6ee-d4b17f4d07e9", + "71c20483-3cd3-5992-ad89-56dd42435ea2", + "73768bb8-90a5-5903-b27a-fd691f67062c", + "7548e5ec-fafd-511b-9daa-e28429f081d5", + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d", + "78e4396e-fec3-5964-9723-02b6bf34a95e", + "79514b15-f6ce-5dbf-97b5-5029cd50baf7", + "7c5aec9e-9b14-59d3-97c0-16ac7a62f466", + "7c9a8d84-58cd-5e73-9b25-c79be875fdb1", + "7ca0dcb2-c4d5-5005-aa8a-8a0d25df982d", + "7e38c8dd-6cc2-50f7-8710-ef8fcb6a5ca5", + "8198abd4-0b53-545f-9f81-47c346609e93", + "82fdb54c-0c24-5441-a194-fc6234de8737", + "832c3e81-5238-5035-a862-29cf7c17d148", + "85a1e172-a9d0-5641-9093-3690fdbf704f", + "85ac4c35-dfbf-5362-9962-69f4871c33f5", + "87d9bba2-15cd-56cf-a661-8e8d526b4a7d", + "88dd4075-f77a-5484-8955-556969a508bc", + "88df7986-3ef8-51a4-ac3a-f6f8bbf60ceb", + "89ceabdc-9205-5f79-a8b1-c718454506c7", + "8a9774bf-6451-5740-937d-e5ca11948c7b", + "8d8cdbb2-32a5-50ea-bfbd-c7a67cf222a1", + "9155e89d-30cf-5686-a54e-210ba5079e28", + "91a73c7e-e6f8-52ca-9506-143dfc2664c5", + "920814af-1e08-52de-8769-4d282e9eb0ac", + "925507e0-8773-5518-a339-c54c7c65bf5f", + "93881f04-6cb7-5b9b-a389-f1e1cfd19862", + "94e28506-7fd5-5be9-809f-fd22c20ecd45", + "95e911aa-6a41-5b6b-9616-464d90ed92cd", + "9712c6ce-7355-5fff-a286-b74ac63fbbbb", + "97bbaa15-e2fa-586f-811b-d5937cafe0f2", + "9850d441-0c4e-5e4b-9ec7-a421a5ead248", + "98eb69dc-dcc5-57ae-98b0-6656a866105a", + "9e931e82-e10f-555b-b04f-1942665ea7fc", + "9eb3932e-1517-5cc2-a83b-01a3234e0619", + "9ecdbb3e-e0ee-594b-99dc-5b0d78ce06fd", + "a066efa3-013b-5e63-87e9-99515c4613b4", + "a240ae62-169f-5e35-8452-3ccf2b455ddf", + "a480046f-56d9-5563-9eb8-564a544985a6", + "a9a4fc49-e264-56c0-a7ec-f4b243abca50", + "aa202941-44b4-52d4-ae41-c0ea9b681643", + "aa7afb0d-bc9e-594b-98dc-f8d1c687a14e", + "aab53f28-1f3d-5dac-9d07-57ede7561d66", + "afd34c47-d843-537b-83ed-97d2dbb48b47", + "b1627f3e-e8ce-5d10-a85b-77ff1a371628", + "b5301c7f-f08c-54a5-a60d-54b4df230b94", + "b554fe40-ee93-5b05-9524-1e210fccd0ce", + "b64f48e4-7ca2-5d5c-bb94-c43ac59e53ea", + "b6a3bc08-9b0b-5f12-b5a8-6c0b38cfa3e3", + "b6a8c948-5b1d-57c4-9c4c-f3f48f7a2d8d", + "b6b694aa-2551-5fa2-aeaf-7ffc946e6109", + "b6bd608a-117e-52ff-bb0f-71fd459b57cb", + "b97887e6-e8b0-5edc-a109-00f04a058ea7", + "b9924e17-c244-5e51-8990-016e8f4ce913", + "ba78cf0b-d610-5ab3-8e38-d8e1dfe01195", + "bb0695cf-ec8b-5425-bae0-605bebe64ac6", + "bb21e9b7-4c48-5306-9aec-7483a26918fd", + "bb9e3bd2-6575-5ed5-bf83-1f6e7cc782ad", + "bc949040-a242-557a-be48-435791fb9391", + "bd5c346b-5c05-5676-ab84-80142b8b23b4", + "bf622008-dc14-50f9-966c-b4fa988b1eaf", + "bf63abd1-28bd-5de4-92c3-499813efc9d9", + "c10cf5a5-516b-50b9-8ca5-752e165d24bf", + "c372320a-b8b2-5a79-80c5-ee8025e9c52d", + "c416a597-21b7-5c51-a23a-0b12afa1e3e0", + "c56463a8-fd2f-5cfd-aada-c495509f0d7c", + "cb38d615-a08e-5fe5-a70c-2d6fe35a7374", + "cd58a7eb-358d-5056-b548-659ba3fd4d04", + "cdc74262-32e5-5314-b8cc-6714e6b47b1c", + "cee6f5d9-43b4-5b9d-a0c9-f378027aa5b4", + "cf180d79-0a56-5a5d-a9f5-f0f768746c6d", + "cf3f3e9f-2100-5d00-ace9-7746c0855952", + "d0b8b65b-22c3-5d47-a507-9d183cd8c406", + "d1a7a301-4072-5f02-a9e2-3c1cf534b793", + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a", + "d24406af-2fe4-5f2f-8fc2-5045008706a2", + "d2fb46c1-98a2-5926-8196-9988e5ada7ed", + "d336a0c1-df15-541f-b2c3-d09d56786629", + "d3c08f6d-6fe6-5a7e-b00d-07c5c87c75c1", + "d3e9ac7d-bea5-5af4-bc34-482d9482b433", + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae", + "d9dccfdf-25ad-5181-a7e2-cc1da0dc43fc", + "dadded1d-b987-5aa0-b092-3e857a12fe16", + "dae9ba6c-c0f4-5138-a60f-209979712dcd", + "dccb91d8-2e16-563c-a30f-e0084c2d8b55", + "dd468689-c2fa-5ed3-97cd-0126ea4390df", + "dd6748f6-d110-5e8c-8a93-763baa76bd40", + "dee95658-0cb8-5e1d-9b33-8b57a3be738d", + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "e07e352f-bd1e-5216-a144-5493d6f0bb0a", + "e10e8cd8-ef22-526c-a216-4269e6f57b22", + "e2cb2a64-dc5d-5446-a1be-f7df8d260e6c", + "e2f91246-c9c2-5a5c-a902-a99cda146d5f", + "e528d079-a674-5c0c-bb3c-ba1369563212", + "e96618d7-966d-5c58-8ff2-5c8a61beeadc", + "eb3a4129-2ad9-5338-b99c-18f21b9afef1", + "ebeb7d16-088e-5197-9ecb-fb6ea1b74bf0", + "eca3d5fc-f183-5918-b1a3-5962107ff552", + "ed74d5c9-5ee2-56b8-9281-e4256e0139f7", + "eed47043-dc63-5110-a6c0-f17f26d7c066", + "ef7419e8-1ca2-52ea-8f20-f13e918c2858", + "f12c749e-a544-55e9-970d-51a15ee2b835", + "f4b9b1a2-0a99-51a8-95dc-69e88a6922b9", + "f51867a3-2b2b-5192-bd85-fa48828cb631", + "f5859a74-5396-5820-bc8a-285a72a0db86", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "fa7a862c-3c39-53db-9a21-ddd43907a18d", + "fac437d9-3782-507e-aae9-ab59bc84b44a", + "fc9afeb7-6d8d-5f28-842a-d5da3f99d05c", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b", + "ff9556a6-25fe-5d3b-a9c6-9c762ccaee35", + "ff966838-e686-5ba1-b3b6-2b3b520d4436" + ] + }, + "rule_id": "SQ14122", + "severity": "medium", + "statistics": { + "applicable": 210, + "enforcements": 0, + "exclusions": 0, + "violations": 210 + }, + "status": "pass" + }, + "556a3053-fd20-4638-8a9b-bcd7ce3dc48e": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with TLS callbacks susceptible to pointer hijacking.", + "effort": "medium", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a" + ] + }, + "rule_id": "SQ14158", + "severity": "high", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "683f55d5-3857-48ca-b387-ffd1e3784806": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that reside in regions with US export restrictions.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5" + ] + }, + "rule_id": "TH18101", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "69692220-dc5d-48c5-81b5-d9fddc3d92bd": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing a Base-encoded URL.", + "effort": "high", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "8312633c-de2e-5c8f-9d2c-b7c6f64db380" + ] + }, + "rule_id": "TH17102", + "severity": "low", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "6a011d9a-c6a0-435a-8068-95c4043f1855": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files that do not implement the ASLR vulnerability mitigation protection.", + "effort": "low", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "0b8af797-8d51-5a06-8323-4b5baaf5f599", + "0c490ebc-9231-565e-80da-418ea4a51514", + "3767d012-f2f7-59b6-b81a-6f658bbca7ff", + "45aa0d9a-37fe-5744-aec8-122f6550a704", + "5797ae5e-66b9-5730-808b-17279a35f874", + "650fdc71-f1a3-59c2-8772-049a89c25920", + "65694532-f570-550e-bf60-f67f64aec079", + "816f8945-8549-5569-86f8-38657a52891d", + "885ffd02-5ae7-5212-8c4b-033f50970b92", + "a02b35a7-f5f2-5c3d-b302-4acd4159d467", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d", + "a9b5d7f9-d616-55af-b819-bad3538bb587", + "ce60ff12-fc0c-59da-9efd-d38483cb0604", + "d513e85c-f288-519d-acd3-9d9478564ef8", + "e66c6823-0fb7-570e-afdd-38c295f8ca9e" + ] + }, + "rule_id": "SQ18111", + "severity": "high", + "statistics": { + "applicable": 15, + "enforcements": 0, + "exclusions": 0, + "violations": 15 + }, + "status": "pass" + }, + "74dcba34-3081-4de6-ac3a-eceb17862728": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with imported functions susceptible to pointer hijacking.", + "effort": "medium", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "09189597-9f2f-50b0-bc35-0dc81a4f5d46", + "139efd73-cdf2-5302-b586-5a3813e7426a", + "15ab0bb7-6c67-51a0-be91-009e7a4dd744", + "17e47687-3514-5c75-b33e-fce7179c3fd3", + "2a5c20d3-95fa-5e32-980a-f581f427edd9", + "2f7b8e68-fd9e-5280-bf51-14f51114d07d", + "405fb8b9-75c7-5068-9785-f1b0eb8b2208", + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "4fc5d5f1-1142-52a3-ad23-d720e7c1673e", + "584e1ed8-492d-55de-b2fc-369d6929c4d5", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "65340ad7-8c92-5538-939a-5ad8f4adf345", + "6a554a4f-2bd1-59de-99b1-eca26f6447f7", + "7548e5ec-fafd-511b-9daa-e28429f081d5", + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d", + "925507e0-8773-5518-a339-c54c7c65bf5f", + "98eb69dc-dcc5-57ae-98b0-6656a866105a", + "a066efa3-013b-5e63-87e9-99515c4613b4", + "a240ae62-169f-5e35-8452-3ccf2b455ddf", + "aa7afb0d-bc9e-594b-98dc-f8d1c687a14e", + "ba78cf0b-d610-5ab3-8e38-d8e1dfe01195", + "bb21e9b7-4c48-5306-9aec-7483a26918fd", + "bc949040-a242-557a-be48-435791fb9391", + "cd58a7eb-358d-5056-b548-659ba3fd4d04", + "d1e90c01-05f6-5f14-a8f4-d5a21ec5187a", + "d3e9ac7d-bea5-5af4-bc34-482d9482b433", + "dccb91d8-2e16-563c-a30f-e0084c2d8b55", + "dd468689-c2fa-5ed3-97cd-0126ea4390df", + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "ef7419e8-1ca2-52ea-8f20-f13e918c2858", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b", + "ff966838-e686-5ba1-b3b6-2b3b520d4436" + ] + }, + "rule_id": "SQ14156", + "severity": "high", + "statistics": { + "applicable": 34, + "enforcements": 0, + "exclusions": 0, + "violations": 34 + }, + "status": "pass" + }, + "7629a936-f607-4edc-bde2-6af02bd9d4d4": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that use non-standard ports.", + "effort": "high", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "023fe8d8-c8c3-573f-9440-e1c4103fa6cc", + "030895c0-c267-5f50-a24d-b1dd1f732568", + "0394bac0-72f6-5ae5-91c3-800bef670ee3", + "06fdd564-c35d-56cb-aca1-53b832021e15", + "08341c32-ab30-567d-81c2-fe7405351ec2", + "0b24bd53-d8ac-5709-a5bf-57ebdaa444bf", + "0c2729df-7268-5050-9072-5f9ada08143a", + "0c47a7c2-da57-5765-a5b8-cc2340a7374f", + "0ddb3281-b7fe-5f79-ac69-118c51326b81", + "0ff1b0e3-c74b-5c0c-99aa-6040d47b63ba", + "10823eb2-527e-5b50-9c6e-d6cf3c9ab1cd", + "13ff53e0-e6a6-518f-bee9-a57deb62c38f", + "14886854-078f-502e-8689-2c39bb597229", + "1614e005-2069-5a47-8896-7d7a8a4e30c5", + "167221f1-748e-59d2-a3bf-c5b3f626c39e", + "174149b6-a2e4-5618-afd2-d65ecc4cd806", + "1ae780c5-df74-5226-b8fe-880a45f58fc1", + "1af1a5b7-b6ba-5c3f-a0f3-fd75dc42c48b", + "1eb14a2f-d97f-5566-966d-e3418f722569", + "1ef817e9-27ce-55eb-8b07-ecdbeff6b3f1", + "1f494078-0b93-5ff5-a715-74abaaa0f778", + "20a085ef-a1c1-5b7a-94b3-2a6dbd7a939d", + "21fa9cf8-0efe-5133-8f7e-4c720253fef0", + "23309a77-8077-565a-9e10-3f4be48fef47", + "26334207-750f-5340-a035-ddea203e03ae", + "2c3aa320-cc85-55e5-8d1d-1ff6c8772c8e", + "2d3b0594-c4b9-560c-a38e-36bed3971b95", + "2f069edb-7610-51bb-9c46-269e9b21fcb1", + "3093f7e4-4265-5ca6-8ccb-05381ac75b2f", + "30b36d91-7a54-5c69-99ac-185f69b3273e", + "32a688ec-e03b-56b3-87dd-b6b1db246632", + "34e8658f-b93c-501b-a4ab-88f18ca146fd", + "35045020-b2b2-5c93-8c0d-3f21c29c9f1d", + "36d04f53-cb20-5c6e-8efb-d76830a52d24", + "39ff4183-15f3-5a74-aa93-25d1d3133182", + "40fc1e81-e2d0-5cb7-b5fc-5a9b5e04ae1c", + "460d96ce-2efb-5875-b069-337eb5bf3931", + "4a367766-5323-5bb0-a343-819d511c0a32", + "54c781c5-73ef-5e3d-ba8c-f0466e7e993d", + "54c89ac8-ffd0-5adb-96e2-925a6f4bd12f", + "571789ef-00ed-55d4-804f-66ef1eeee7dd", + "5840ab80-423f-587e-b286-c6d46c761d5b", + "5dacc870-49db-5796-93e0-96e87d5bebff", + "62eb4677-5326-5631-a61c-11a15eec57e9", + "63d9541d-f7dc-59af-b124-82aae8808775", + "6509c52d-39b2-58ee-b94b-83b0145d9bac", + "6ef56e80-0ecd-5007-a719-c93551a82abb", + "711d759c-a082-5f6b-a9bf-3aca3431ca3e", + "7204ed2f-31ec-5781-85fa-d4b6ba7008f6", + "7303629e-08b2-564e-b84b-5a2c23da6de3", + "739aa6f9-4fa9-5816-98f6-68e79c5eeba0", + "755da5b9-7bc0-5faa-a603-638316f43db6", + "78af08ef-f58f-58cf-9ae6-571dc03d2a3c", + "7b419068-0e19-595b-a875-c8fcc245de5f", + "8076568f-003a-5fe7-a0ec-5c5ba5249b9a", + "8672daf6-9502-5fe2-8e31-509f86bd450b", + "895741f4-c779-5850-8ec5-51ff8cd9d31c", + "8a86a95e-05da-5f4f-8041-d1c38c7b8ab8", + "8b2d9ca1-5774-5d79-97a9-5f75054aad62", + "8c199bed-a851-585e-b47a-1b524b633207", + "8f393dc7-4c4b-5bd0-8414-4cd87c5dbf2d", + "901487da-dda2-55ac-9bfb-5ccc2df3b08d", + "94c0977d-69b8-5898-9e08-e68a217096c4", + "94d91f85-0c5e-576c-918b-01a47e4ec04f", + "a4abdac7-f6ac-512e-b8ee-770a8c40452e", + "a7b01fd0-1f53-527f-a8f3-acfb64fcc109", + "ac20eeee-18c0-535f-96d8-091baee24b50", + "b3e25852-dc4d-5220-beb7-ccd397c8386f", + "b81e9f43-4bfe-5881-8c29-846c457e58e5", + "b87b23ed-4071-5cb7-a08f-04dbf1c7d8c0", + "ba22814b-c3fb-5ab0-acb2-a654546da6d7", + "bd65a7fa-e520-504c-a0c4-d7d64b9ea336", + "c1298c78-2c9b-5f6f-a971-c05242551086", + "c2fd015f-ba08-53d3-96a6-bd5ea3ca57d5", + "c367647f-8ed0-5645-af8c-a54a23d49e87", + "c40a55de-f5c5-574a-a73e-a053e247a71d", + "c710a4fe-da23-5232-bd43-0238248eead6", + "cc07f3d6-b704-5dc5-9695-97e57eb36850", + "cd58658f-01ce-59d1-ad57-b83a801102a3", + "cf2b1308-b973-5ce8-bbe9-1658623ecfa4", + "cfbefefd-b6ce-540b-878a-ea9d73d67bc6", + "d18c0f75-0a13-5694-b14c-8a1027f50550", + "d22aea9f-a448-52ae-90ae-a5bd8050dd79", + "d4313f7d-2512-5e89-990d-927fd735e3a8", + "d4cb76c6-91a6-538c-836c-fea987180fc7", + "d4e3c7e1-b8ec-5176-a1a7-c5c06a4ac487", + "d7502e03-14e5-5a56-8f72-d6bc5e976962", + "d76359b4-f401-5d99-aca1-a9a8b03bab76", + "d7c42e63-776a-5a60-9428-774c0f4c4a85", + "d8329a6c-3985-5fbd-9f5e-a40c5882ca6f", + "da82a28b-83e1-5e2d-8a1c-9a3208c862c5", + "dcf716f5-b0bd-5a92-b9c6-38eaedd83a5b", + "dd31dafc-65d0-584c-b642-598c01c9abd3", + "df6b970c-2191-59eb-bb5c-7d0b4528df38", + "e3bad866-1d8d-5e88-b4af-0ca994108c1c", + "e58930d2-f1a9-5404-8557-c148d61b2607", + "e6c493f3-5dce-54f5-9c86-688838d9294e", + "e78562a4-b8f1-5903-bf85-c5b2a194e701", + "e919645b-b728-58f0-8d53-393933de9e3e", + "e975ad9d-b2f9-54f5-98ba-4ed5c4341ef6", + "ebbcbedd-e3c3-5ccd-af2c-d7d6267f6d4b", + "ed3d2822-4941-5062-8933-8f46fd7e7c28", + "ee4db8b9-f55a-5220-b4d5-ad92fa38a686", + "eea0cdf8-9aeb-5240-bc75-09eb36d71926", + "f24242bf-15c8-5ed0-b050-e8915e45d7f7", + "f5af9bdb-c4bd-5961-b088-8c1b8b3659f5", + "f991ccaa-e6f7-5cf5-80a5-fe7904f4e570", + "fabc165b-de27-5e26-94c7-23fa6c2a90e8", + "fb7c2249-9b88-57ab-bf18-cb7623d4e8cb", + "fc45c38d-ab03-57a9-baaf-bacf116556d9" + ] + }, + "rule_id": "TH17115", + "severity": "low", + "statistics": { + "applicable": 110, + "enforcements": 0, + "exclusions": 0, + "violations": 110 + }, + "status": "pass" + }, + "78c2d4f9-dacf-4a2b-844e-c4fbcee21ac7": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs with suspicious path components.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "7be6cb1a-af3d-51c0-9327-34eacedb5bca", + "9ee96141-b2a8-5e2a-91c7-af8309278afb", + "cea33567-2fa7-5af7-849e-5e4be75ea7d0", + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5", + "d5de4ab1-0a49-5201-95f9-3cc4751a7e1a", + "deca7c70-c109-55bc-88b2-ee52c3bdebbd" + ] + }, + "rule_id": "TH17119", + "severity": "medium", + "statistics": { + "applicable": 6, + "enforcements": 0, + "exclusions": 0, + "violations": 6 + }, + "status": "pass" + }, + "7aacd101-ed26-43d4-b2c7-a033fb618677": { + "audit": null, + "category": "hunting", + "description": "Detected presence of obfuscated software components.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "26f4be51-931b-5d84-b689-d644f669879b", + "858f0f6d-40cd-55b8-9651-381542bab619", + "b3d3e48b-c688-5a71-8dd7-fd8f33a00fca", + "c345049f-095c-5d26-a8df-065b57e32c53" + ] + }, + "rule_id": "TH16101", + "severity": "medium", + "statistics": { + "applicable": 4, + "enforcements": 0, + "exclusions": 0, + "violations": 4 + }, + "status": "pass" + }, + "877d1d59-1dca-4755-b94b-d270bd0c6bf4": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing bidirectional Unicode control characters.", + "effort": "high", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "4e747d30-e523-5c42-833d-c10c641633e7", + "544f6baf-a42a-5be0-971c-3711a6f5d3c0", + "5b9060bd-c22a-5bd9-a355-f0ce462bdce9", + "7b057276-0315-5355-b7b4-d31398de54f4" + ] + }, + "rule_id": "TH16102", + "severity": "low", + "statistics": { + "applicable": 4, + "enforcements": 0, + "exclusions": 0, + "violations": 4 + }, + "status": "pass" + }, + "8c62d8ed-8e7c-4767-992b-b16b91d23188": { + "audit": null, + "category": "integrity", + "description": "Detected packages with content that failed integrity validation checks.", + "effort": "medium", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2" + ] + }, + "rule_id": "SQ25104", + "severity": "high", + "statistics": { + "applicable": 2, + "enforcements": 2, + "exclusions": 0, + "violations": 2 + }, + "status": "fail" + }, + "8d24ff59-b065-44c2-bbec-2f4fd5a53147": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that link to raw files on GitHub.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "0c9bda2a-c3dc-5c5e-a0a1-e90e65f22e0e", + "93b9ac56-5ce4-5c49-b835-b956d7f39751" + ] + }, + "rule_id": "TH17127", + "severity": "high", + "statistics": { + "applicable": 2, + "enforcements": 0, + "exclusions": 0, + "violations": 2 + }, + "status": "pass" + }, + "8d8d7b7f-f8fc-4f1a-b76a-da91de6695a8": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement protection from integer based memory allocation overflow attacks.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde", + "3848f33d-4f37-54b7-8fb0-41df20102cda", + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "5062bb70-19c1-5992-a121-452daa77f2b2", + "55ce0143-bf25-5c64-8b17-32035971f816", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "6d30f242-a557-5701-baf5-45fc534350ac", + "78e4396e-fec3-5964-9723-02b6bf34a95e", + "b5301c7f-f08c-54a5-a60d-54b4df230b94", + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae", + "dee95658-0cb8-5e1d-9b33-8b57a3be738d", + "e2f91246-c9c2-5a5c-a902-a99cda146d5f" + ] + }, + "rule_id": "SQ14113", + "severity": "medium", + "statistics": { + "applicable": 13, + "enforcements": 0, + "exclusions": 0, + "violations": 13 + }, + "status": "pass" + }, + "920ece11-6985-4416-9c1e-377bbabfaff7": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files compiled without any kind of buffer overrun protection while using banned input functions.", + "effort": "medium", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "0b8af797-8d51-5a06-8323-4b5baaf5f599", + "0c490ebc-9231-565e-80da-418ea4a51514", + "3767d012-f2f7-59b6-b81a-6f658bbca7ff", + "45aa0d9a-37fe-5744-aec8-122f6550a704", + "65694532-f570-550e-bf60-f67f64aec079", + "816f8945-8549-5569-86f8-38657a52891d", + "a2cd9ba3-1bbd-59c7-b06a-4b7e5d7bce0d", + "a9b5d7f9-d616-55af-b819-bad3538bb587", + "d513e85c-f288-519d-acd3-9d9478564ef8" + ] + }, + "rule_id": "SQ18107", + "severity": "medium", + "statistics": { + "applicable": 9, + "enforcements": 0, + "exclusions": 0, + "violations": 9 + }, + "status": "pass" + }, + "94b0cc4f-b451-4498-aaa7-bcd59ef6c9f8": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs related to paste-and-share services.", + "effort": "high", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "57e6d03c-50cc-5010-8f48-dd6355b347c5" + ] + }, + "rule_id": "TH17104", + "severity": "low", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "98304fb4-8285-4f66-9ef3-4fc2a98742dc": { + "audit": null, + "category": "hunting", + "description": "Detected presence of software components that can tamper with the system network settings.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "3df0ed67-28be-58bc-adc0-b1ef029f0154", + "98d9d340-9f51-5829-ad45-80eccf1c3f4c" + ] + }, + "rule_id": "TH16113", + "severity": "medium", + "statistics": { + "applicable": 2, + "enforcements": 0, + "exclusions": 0, + "violations": 2 + }, + "status": "pass" + }, + "a3929286-3ad4-4164-b882-af3e6836336f": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs with important query parameters.", + "effort": "high", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "717e79ff-bbf2-5a4b-aa87-e55894b35cb6", + "91271f5d-3848-5d67-8f11-f7d0ce6bfb5c" + ] + }, + "rule_id": "TH17116", + "severity": "medium", + "statistics": { + "applicable": 2, + "enforcements": 0, + "exclusions": 0, + "violations": 2 + }, + "status": "pass" + }, + "a42d61a2-6d5b-44fa-867e-4401452b91dd": { + "audit": null, + "category": "hunting", + "description": "Detected presence of software components that can access user identity information.", + "effort": "high", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "4203d92d-8485-574c-9c0c-af648d8698c8", + "9df40718-19f8-5ae9-aaae-1d369903b611" + ] + }, + "rule_id": "TH16126", + "severity": "low", + "statistics": { + "applicable": 2, + "enforcements": 0, + "exclusions": 0, + "violations": 2 + }, + "status": "pass" + }, + "ad25a35d-60c5-4e20-973e-3fe0679d9d6d": { + "audit": null, + "category": "integrity", + "description": "Detected packages with content that may be incomplete or corrupted.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "8ae54b3d-5688-5b43-b309-0556c26d5c45", + "c4c89683-0a67-5128-ac27-682f22a57cbc", + "ecc51086-5dbe-5615-8929-e27d302b3d43", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b" + ] + }, + "rule_id": "SQ25102", + "severity": "high", + "statistics": { + "applicable": 5, + "enforcements": 0, + "exclusions": 0, + "violations": 5 + }, + "status": "pass" + }, + "b36d9d72-a127-409e-927d-e5554472f089": { + "audit": null, + "category": "integrity", + "description": "Detected packages with content that could only be partially analyzed.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "d52e042a-4aaa-589c-9cbb-a8dd537436e7", + "d6a680da-50d9-502a-8d12-278efdf3b622", + "eacbf275-729a-5469-b142-1f3bbf453ba5", + "fb64ddb1-d34d-5145-99b6-463cce8375a1" + ] + }, + "rule_id": "SQ25103", + "severity": "medium", + "statistics": { + "applicable": 4, + "enforcements": 0, + "exclusions": 0, + "violations": 4 + }, + "status": "pass" + }, + "b5bf6be1-371e-49ec-9fe3-e5ba15e4bcee": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files compiled without any kind of buffer overrun protection while using banned string functions.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "0b8af797-8d51-5a06-8323-4b5baaf5f599", + "0c490ebc-9231-565e-80da-418ea4a51514", + "45aa0d9a-37fe-5744-aec8-122f6550a704", + "816f8945-8549-5569-86f8-38657a52891d", + "d513e85c-f288-519d-acd3-9d9478564ef8", + "e66c6823-0fb7-570e-afdd-38c295f8ca9e" + ] + }, + "rule_id": "SQ18105", + "severity": "medium", + "statistics": { + "applicable": 6, + "enforcements": 0, + "exclusions": 0, + "violations": 6 + }, + "status": "pass" + }, + "b68c2c42-f660-42bb-89ac-0b1a2d2f7c16": { + "audit": null, + "category": "integrity", + "description": "Detected packages with content protected by an unknown password.", + "effort": "medium", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "c4c89683-0a67-5128-ac27-682f22a57cbc" + ] + }, + "rule_id": "SQ25105", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "c6e80b63-e352-44b2-b023-9824d8304539": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with the entry point residing in a writable section making it possible to change code while executing.", + "effort": "medium", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b" + ] + }, + "rule_id": "SQ14147", + "severity": "high", + "statistics": { + "applicable": 6, + "enforcements": 6, + "exclusions": 0, + "violations": 6 + }, + "status": "fail" + }, + "d131fd8d-a933-40c4-a950-f561cb87ac94": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement the ASLR vulnerability mitigation protection.", + "effort": "low", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "1d50e9c4-0f16-559f-a09d-67029aaaccd7", + "1d65d78b-2f0d-5a32-b63c-f1494bebfdde", + "2277d9c2-3882-53b8-a34b-4c03b21b1391", + "3848f33d-4f37-54b7-8fb0-41df20102cda", + "405fb8b9-75c7-5068-9785-f1b0eb8b2208", + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "55ce0143-bf25-5c64-8b17-32035971f816", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "648d6336-9bfa-5bf7-a1ad-0388a212d91e", + "6a554a4f-2bd1-59de-99b1-eca26f6447f7", + "6d30f242-a557-5701-baf5-45fc534350ac", + "78e4396e-fec3-5964-9723-02b6bf34a95e", + "925507e0-8773-5518-a339-c54c7c65bf5f", + "98eb69dc-dcc5-57ae-98b0-6656a866105a", + "aa7afb0d-bc9e-594b-98dc-f8d1c687a14e", + "d336a0c1-df15-541f-b2c3-d09d56786629", + "d7c55d26-7d25-5a9c-ac80-f1f4bc8b1aae", + "dee95658-0cb8-5e1d-9b33-8b57a3be738d", + "e006a381-c4e1-5706-a3b3-fc5153a8716a", + "e2f91246-c9c2-5a5c-a902-a99cda146d5f", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b" + ] + }, + "rule_id": "SQ14105", + "severity": "high", + "statistics": { + "applicable": 21, + "enforcements": 0, + "exclusions": 0, + "violations": 21 + }, + "status": "pass" + }, + "e53568ea-f505-4242-b752-823263c743de": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with sections that map header information to their own address space, which may lead to misuse of header information.", + "effort": "medium", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "767542b7-6c5f-5a3f-bb7c-25db8e0d9c5d", + "bb21e9b7-4c48-5306-9aec-7483a26918fd" + ] + }, + "rule_id": "SQ14142", + "severity": "high", + "statistics": { + "applicable": 2, + "enforcements": 2, + "exclusions": 0, + "violations": 2 + }, + "status": "fail" + }, + "eda8c948-5172-4104-a748-fd4efac8a5ca": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that reside in regions with EU export restrictions.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "d248b9a6-7b40-58f3-b6b0-81c1ea7970d5" + ] + }, + "rule_id": "TH18102", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "edfc92e3-ae1d-40c9-9286-8e5d1dfce34a": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that have a BSS region with executable attributes.", + "effort": "medium", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "4d9e50a1-3f5c-54a7-a5f9-aa8cfc07ad32", + "5cc2f4c6-dab1-5c3b-827a-ed9718392236", + "f70b443f-4a96-539c-8f9e-d49ed6a4a3b2", + "ff354840-8d88-5f42-be3f-fc9b8c6a139b" + ] + }, + "rule_id": "SQ14143", + "severity": "high", + "statistics": { + "applicable": 4, + "enforcements": 0, + "exclusions": 0, + "violations": 4 + }, + "status": "pass" + }, + "f3f28bac-de72-4de6-9a0f-85398bd0b4e4": { + "audit": null, + "category": "secrets", + "description": "Detected presence of private debug database files.", + "effort": "low", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "762f8f43-a407-5b2c-baea-58436fe26a01" + ] + }, + "rule_id": "SQ34202", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "f87709b1-7eb3-486d-bbd9-cf1c95627706": { + "audit": null, + "category": "hardening", + "description": "Detected Linux executable files compiled without any kind of buffer overrun protection while using banned memory functions.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "45aa0d9a-37fe-5744-aec8-122f6550a704" + ] + }, + "rule_id": "SQ18106", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + } + }, + "vulnerabilities": null + } + }, + "schema": 3, + "timestamp": "2025-03-18T14:34:00+01:00", + "version": "5.3.0.113" +} diff --git a/unittests/scans/reversinglabs_spectraassure/HxDSetup_2.5.0.exe-report.rl.json b/unittests/scans/reversinglabs_spectraassure/HxDSetup_2.5.0.exe-report.rl.json new file mode 100644 index 00000000000..55a51409660 --- /dev/null +++ b/unittests/scans/reversinglabs_spectraassure/HxDSetup_2.5.0.exe-report.rl.json @@ -0,0 +1,10277 @@ +{ + "catalogue": 2, + "duration": "00:00:09.276", + "report": { + "info": { + "detections": { + "Goodware": { + "No Threats Detected": 3636 + } + }, + "disabled": [ + "SQ14120", + "SQ14126", + "SQ14129", + "SQ14130", + "SQ14131", + "SQ14132", + "SQ14133", + "SQ14136", + "SQ18114", + "SQ20105", + "SQ30101" + ], + "file": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "InnoSetup", + "hashes": [ + [ + "md5", + "4f9e75a41d02666cd5cc86bd33a578fe" + ], + [ + "sha1", + "ac08b28e953d7d200bbb3c2e644890a689d0d8b1" + ], + [ + "sha256", + "dccfa4b16aa79e273cc7ffc35493c495a7fd09f92a4b790f2dc41c65f64d5378" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0949e044-6e45-43f3-8b95-b80515d0c486", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5", + "vulnerabilities": null + }, + "name": "HxDSetup_2.5.0.exe", + "path": "", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 3444957, + "subtype": "Exe", + "type": "PE", + "version": "Generic" + }, + "inhibitors": { + "customized": false, + "exclusions": {}, + "next_level": 5, + "scan_level": 5 + }, + "properties": [], + "statistics": { + "bad_checksum": 0, + "bad_format": 0, + "bad_password": 0, + "components": 37, + "extracted": 3636, + "licenses": { + "copyleft": 0, + "freemium": 0, + "freeware": 0, + "non_commercial": 0, + "permissive": 1, + "proprietary": 1, + "public_domain": 0, + "shareware": 0, + "undeclared": 0, + "weak_copyleft": 0 + }, + "quality": { + "issues": { + "fail": 2, + "high": 7, + "low": 1, + "medium": 2, + "pass": 8, + "total": 10, + "warning": 0 + }, + "metrics": { + "fail": 72, + "high": 200, + "low": 18, + "medium": 55, + "pass": 201, + "total": 273, + "warning": 0 + }, + "priority": 0, + "status": "fail" + }, + "unsupported": 0, + "vulnerabilities": { + "critical": 3, + "exploit": 6, + "fixable": 6, + "high": 3, + "low": 0, + "malware": 0, + "mandate": 0, + "medium": 0, + "named": 0, + "total": 6, + "triaged": 0 + } + }, + "unpacking": { + "errors": {}, + "warnings": {} + }, + "warnings": [] + }, + "metadata": { + "assessments": { + "hardening": { + "count": 1, + "evaluations": [ + { + "count": 91, + "label": "execution hijacking concerns", + "priority": 1, + "status": "warning", + "violations": [ + "SQ14156", + "SQ14157", + "SQ14159" + ] + }, + { + "count": 37, + "label": "modern mitigations missing", + "priority": 3, + "status": "warning", + "violations": [ + "SQ14122" + ] + }, + { + "count": 36, + "label": "reduced effectiveness mitigations", + "priority": 3, + "status": "warning", + "violations": [ + "SQ14106", + "SQ14109" + ] + } + ], + "final": false, + "label": "ineffective mitigations detected", + "priority": 1, + "status": "warning", + "violations": [ + "SQ14107" + ] + }, + "licenses": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No license compliance issues", + "priority": null, + "status": "pass", + "violations": [] + }, + "malware": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No evidence of malware inclusion", + "priority": null, + "status": "pass", + "violations": [] + }, + "secrets": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No sensitive information found", + "priority": null, + "status": "pass", + "violations": [] + }, + "tampering": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No evidence of software tampering", + "priority": null, + "status": "pass", + "violations": [] + }, + "vulnerabilities": { + "count": 6, + "evaluations": [ + { + "count": 3, + "label": "critical severity vulnerabilities", + "priority": 0, + "status": "fail", + "violations": [ + "SQ31104" + ] + }, + { + "count": 3, + "label": "high severity vulnerabilities", + "priority": 1, + "status": "warning", + "violations": [ + "SQ31105" + ] + } + ], + "final": true, + "label": "severe vulnerabilities exploited", + "priority": 0, + "status": "fail", + "violations": [ + "SQ31102" + ] + } + }, + "components": { + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "86408be71abc0d8cbd60914e51500ef0" + ], + [ + "sha1", + "eac1d136f9ec432fa0256c4aab53ec5e84db2f85" + ], + [ + "sha256", + "0c0d54b28674f9311e7dc9b164bc711d04ed1f1281ac3e8ea5a1435ed1c4bad9" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6886912, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "1a0766b9-221f-5037-bee0-362f92d6c17d": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8c9b29e184e663553b666161d47e1c36" + ], + [ + "sha1", + "497aeb424c5fc44112e056429e41bcf8cd8b8541" + ], + [ + "sha256", + "b3abd6c443a31a91ff809f8201129091d43b9bc3e8a08b19d993288feffb98ef" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6918144, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "1f9d6aee-2a8b-5eb2-909a-b01aee220621": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "InnoSetup", + "hashes": [ + [ + "md5", + "4f9e75a41d02666cd5cc86bd33a578fe" + ], + [ + "sha1", + "ac08b28e953d7d200bbb3c2e644890a689d0d8b1" + ], + [ + "sha256", + "dccfa4b16aa79e273cc7ffc35493c495a7fd09f92a4b790f2dc41c65f64d5378" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "0949e044-6e45-43f3-8b95-b80515d0c486", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5", + "vulnerabilities": null + }, + "name": "HxDSetup_2.5.0.exe", + "path": "", + "properties": [], + "quality": { + "effort": "medium", + "priority": 1, + "severity": "high", + "status": "pass" + }, + "sbom": true, + "size": 3444957, + "subtype": "Exe", + "type": "PE", + "version": "Generic" + }, + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8ba900815ae5cc14e93c9750b9813a6e" + ], + [ + "sha1", + "56eb711e54d037608ba6594bf647aa4290e40d16" + ], + [ + "sha256", + "7ecaa82768d3975d151d0272710b7c746120fa02984e2f7079a85e2b8f20b496" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4704768, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "15244cee258b6800a5b0154bfae0613f" + ], + [ + "sha1", + "1e4df80347df7a0836eb02e8b949bae01c2ac914" + ], + [ + "sha256", + "9adc323ef69dfedb112d08346e2a84c529a3967a536a64a17754b934f8a24e77" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4705792, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "361b7eff-08bc-59df-a084-e53efaad5a7b": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c62e43495d157682feab49f48f2a9507" + ], + [ + "sha1", + "95b39081e155c8eebcae641a3a25471f462aaead" + ], + [ + "sha256", + "55d455e059211e5523d52abfb18ba1d310a75ff7c1f7a5f88c7ae99e7c104aa1" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6871040, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "547b7672f1aaa5138ac6a82637c12940" + ], + [ + "sha1", + "df2eabe595a5b4ea1167c970e2bdb1caf24c617a" + ], + [ + "sha256", + "0b16d8d5bd1a46da689d1d79d63e2c16a3ddbc6ae410f2e614c25a55de311fa0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4676096, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "49eeb0de-d7c3-5aff-bffd-2993ef357f96": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8a526f8e13342fb6925eed4999db7e61" + ], + [ + "sha1", + "f697bfcc1e99134453bb2789025655f3fdf160e6" + ], + [ + "sha256", + "c01acf301fc4d4a94ee359d17ab0ea8db39ac4bf85f2742b105d6295b1c275d2" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4696064, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "53da119e-8f0b-5247-9f1d-1aad08906d5e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0950aaa85b821d1421ec44e6cb5c750e" + ], + [ + "sha1", + "d0799c30d481c4d225ac7c9e333b40fecaf08144" + ], + [ + "sha256", + "9d73eb87c05656189d12442a11617b361c9716bd3c9d982aa7805acde7dd9e80" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4711936, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "5efffded-784b-50fe-bf95-225860f71bd8": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7eb5e500057ae60d9ad0c967969f4a90" + ], + [ + "sha1", + "c46e9371d681893ee1cce714dc8394d198f0b120" + ], + [ + "sha256", + "1d70d0c34e83e6070c805df331677c6c9aed1a0a8ba98b9b410f58be6ece6969" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4662784, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f2296bd70c2b8c1af8445388203b68e6" + ], + [ + "sha1", + "a21045d1becffae9d77bbaff08efffc6ccc3d4f7" + ], + [ + "sha256", + "8e075861530671825c43c1517e984bc87740175dcebb8be072a8b1a13b2fa737" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6924800, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8fa26cbc60ee24fcc0dc1402cde8cb66" + ], + [ + "sha1", + "6f39520d877163216b530018d1121fca0f2e0113" + ], + [ + "sha256", + "65502c37ff064f6a505b7314d3629d0c317b7ed7681f80c09ff9e29c22676eae" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4700160, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "7606aaca-12d4-5727-bfbe-cde390cacb1a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "2c9626cc7c153b6be8763d60c32d06f2" + ], + [ + "sha1", + "fcbf7d8300b63305533c960ae9f8eace98ce6436" + ], + [ + "sha256", + "708d1d6c5a959a300e08be360b0016e1d6a3c27e06bf856f39f908b13524433d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4695552, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "799641a0-0f81-5c4b-9121-33c3047010e4": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "726793333c1584d0734087c7d593146e" + ], + [ + "sha1", + "e15c193189dbca293043c7bf427d1e72810df88d" + ], + [ + "sha256", + "676627d9847a0de280b98d7dacc69a052de1950c701f59245b02cee3508e6bac" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4674048, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "79aeacb6-d598-54cf-9694-c6138fb855a5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "3a51094616bfd95757e8af9cbac64d49" + ], + [ + "sha1", + "5b6dbb559ccf73947b7dbb4f3ec75b2058a82042" + ], + [ + "sha256", + "e555e5cfc5d8dc4d79764f156cc867bc2ef4ca5db1b13f2eb78e3209b1b5f913" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6916608, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "80eed969-895e-58fc-be58-223be60485a1": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "d9f9cdc046444f8f5d2e52ace3357cba" + ], + [ + "sha1", + "e25a7cb6c9d87592aa9a1b6b0087c696bf46436d" + ], + [ + "sha256", + "835fd673f5747291ed919a5a90ab47145f8ad103af1b64be848dc08b1b3529b0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6918656, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "8fc63934-c082-5f78-a04c-e0abbd9a3496": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "7abb925005b413169d0605c4ef1c9261" + ], + [ + "sha1", + "10f71e1106f137ec191920847131f3e1c403e71b" + ], + [ + "sha256", + "56b59a0d0dcbbba888b310570e6dceeddf6bbdd89e5814cc67b8904502e1cbf0" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6888960, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "977a1202-7ff4-582f-9ee2-413e170e1632": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "96b5dbb32435c6091daff803d1037745" + ], + [ + "sha1", + "cc69bb551cd1960618d2140bfff21f9e9516d813" + ], + [ + "sha256", + "a534d14ca56dbd36af7e9b92408123d3b7da0616d446b1384f48cf735d18f7fc" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6918656, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "987e839a-4d3b-50c3-aec7-db6e282e3fee": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "f25dd61e7f3282794ba17c8cf3128cc9" + ], + [ + "sha1", + "cb599c8e63333e1d91a6847d32d1e5deab0cbc75" + ], + [ + "sha256", + "1ffdf43145eb04bd767a63895dcede3432c5f38541a88b1af0628500b5caf87c" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6913024, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "98940edc-a624-58e6-9094-ca9ef6813dc6": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4aa445166eb0d6b42ee020a5faf1420a" + ], + [ + "sha1", + "40794e547f1b111a942acca7158a2d6eea6fe162" + ], + [ + "sha256", + "da5508376db89ee84dc8b6591df258c62c69111cbca8dbd339312b70c3ae5370" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4706816, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "9997e1ac-8b0e-5621-988c-e2f001af3dd5": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "804f06b24fba7ba4e1122faf2b119a2b" + ], + [ + "sha1", + "2abcc71c782eb15e671abe049adb0f2f943f085b" + ], + [ + "sha256", + "1fc927cb6747c105d1a66e4792f166b857a9e42bc1b58a08a6698c2d05e62087" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4692992, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "80e460305cffd553c88ee2b29d59c7e1" + ], + [ + "sha1", + "c8c14e10b5a20c39f57771a39e44fb793c4f1e0a" + ], + [ + "sha256", + "78da2002b12445485dffd2dca7e679a722c47f03175baab9be3fa43cdffb7607" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6875648, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "57cdc42a90fa3983ba77265a119d76ea" + ], + [ + "sha1", + "5c404d93aa766606628d61dbc94e4a01a29875c9" + ], + [ + "sha256", + "778f19fc756419447553baa2d834d0857c6029f2278caa24cfb465f3e75c2128" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6908416, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "4c3d7a80055830d8be869157110eb9b3" + ], + [ + "sha1", + "f2555b7eecfb3eed684eb57a6cdf5ab4dc2ff0d5" + ], + [ + "sha256", + "ae742195737cd0a7038b9e02d7163a334aeaae7ac983e387701d257dda9b950d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4704256, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "ae0912be-184d-5799-9175-2b43bd7dbab3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "14fca45f383b3de689d38f45c283f71f" + ], + [ + "sha1", + "5cb16e51c3bb3c63613ffd6d77505db7c5aa4ed6" + ], + [ + "sha256", + "9d460040a454deeb3fe69300fe6b9017350e1efcb1f52f7f14a4702d96cb45ca" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6905856, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "b0d80657-45b1-5cdc-88f5-6a76173db102": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "8cd36722b01aceb724091db31bd3fcba" + ], + [ + "sha1", + "3045004716de95a535dd8797bb2ece392fdae809" + ], + [ + "sha256", + "5dadccdf141b321ce5e278ae6930904adc47f53a06cd129a4655db4dcc3f6aee" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4658176, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "b1751a66-735f-5b83-88ce-61a84cce63a2": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "82afb6af67fc5e5ddf96c640b92f54c9" + ], + [ + "sha1", + "ee62dbd34d88eb4ddb84061a94f6e49bdce879e3" + ], + [ + "sha256", + "44b7cc8efd42c8b1e9173557f18c0284acd82144f91f0734b7674ab7b3dca579" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6910464, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "ba2c091f-5fd1-5391-91af-6a98a6365b5e": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "afdb86a4b1a28d1b44b5f97358b8fc2a" + ], + [ + "sha1", + "0648f4c9776e77c338ab1b06cb926dc9dcbe10fd" + ], + [ + "sha256", + "926525237d78317e51cba71f9f167fe21c38af7aaa06357433ddf28e75122b31" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4705792, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "c1b1620e-efff-548d-b37f-8eea4604ea86": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "0719a4514524f161ceb8a9e47713e4e6" + ], + [ + "sha1", + "af1ceefb86ded0c483c2a3f2f047fa1c3ecb4868" + ], + [ + "sha256", + "03e101d5d65377d559680848648ffa4c111d32d128b6e89dde8b441de7b6bf8e" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6917120, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "c7a34c81-b53a-50e6-afa1-8b75adfba048": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ac4b3fe3f26fdeceed597d1909d3cdb2" + ], + [ + "sha1", + "04988c1b5558d22ca2fdd3067ea2ae924e88c756" + ], + [ + "sha256", + "32ee2c69fd8971b60a11a2923261340ae08e534dcf493a7b50143ced974f616b" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6919680, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "777b31623fbc16a57abab57818e598b8" + ], + [ + "sha1", + "775dc4053f7964ba3ca3318193f0845d6cf415ed" + ], + [ + "sha256", + "6b981d953c0f95f7fe4dd8d633127b0a27010ebd07dfe82fda34be581a4b7905" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4697600, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "461ed1d1fea1680514fdb248b53acf20" + ], + [ + "sha1", + "4017c14132132c9fe7a7be443b091846508b39ce" + ], + [ + "sha256", + "f1fc564a986e238bad0c1aae1b46eed4877bf7e02239ae311a3e29750cd9d735" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4703232, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "d52c970b-15bb-5711-8e84-474130b33dd3": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "ac2845019652ad1b3db7f6dd37fa934e" + ], + [ + "sha1", + "fae0b4e406561127bbf17eb043b42b9e1f9854a9" + ], + [ + "sha256", + "42578a70bb3de07b64402b15c9e482df7080aab8647e85f9f8aac4ce9e85027d" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4705280, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "e5f59b63-a682-5d63-9229-6d9c98ffac37": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "e5f64e0e820b54c8c344c0bf25468a66" + ], + [ + "sha1", + "3d23f6358a20750be8ca2cdfb5dcbd49d766728a" + ], + [ + "sha256", + "9f3716cdcbe2f4a13238b07c85219b2e3b10245e43535e0cbca8a5caa3afc1b6" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD32.exe", + "path": "%InstallDir%/HxD32.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 4703744, + "subtype": "Exe", + "type": "PE", + "version": "" + }, + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "664c5f771e9611f23f4bfd0809320637" + ], + [ + "sha1", + "cff6cf96a65e846affc18ea8222c1eb37b33f762" + ], + [ + "sha256", + "7ab6c6caff1dd610f9c8cfd54ed78b593c584f15ffd811ef19234f6cf6b7d114" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6908928, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "efa50b22-5e1e-5acd-a5dd-854224b3b32a": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "c2d3b388f4e8b689204a2a2903e00bd5" + ], + [ + "sha1", + "5fd680082812117d0a54ee0d7823c819e74f1d93" + ], + [ + "sha256", + "ca2c323eb8c9308be61988051b84f312b5428584c710d23030f0016a80be0b56" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6917632, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "f04a70c5-f97f-5084-9426-7a6564999690": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "cf48eaed47b80bdfb58847388d158d7c" + ], + [ + "sha1", + "64e7d236d2d3321a54b9dc2d0061723bf1827628" + ], + [ + "sha256", + "fcf5d58bbedae7b3e5952f65a60378f563409c3716e4069ad195a070c30fd57f" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [ + "05737049-b94e-4ec5-9d8b-629bb6c36d80", + "067bcb3c-4e81-418c-a097-04067883bb3a", + "0949e044-6e45-43f3-8b95-b80515d0c486", + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07", + "0f7e0ca4-68f5-4937-bed1-cf4612519140", + "0f852171-8241-4454-a182-dde0eec14ea3", + "14c5f660-1ddf-4215-a954-ef2c520f73ec", + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10", + "3c7f8415-7cef-41a2-88f5-97241c0e2bca", + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7", + "4fa7f26a-b214-4028-aa7f-43c2867dd203", + "5293d0a5-d922-4ee3-84c7-e539323f7c8c", + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f", + "748c5a47-7f80-4de1-b7eb-d2c24b331f79", + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0", + "7ef6735a-951a-4bf5-bf51-6f591305f8af", + "81badd48-8648-43d3-a4cd-fbcc698f6345", + "9b240da2-333a-471d-a6be-cc34f792c2ed", + "a2c7a3a0-6584-42f2-aa11-67f91c67712e", + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e", + "bab2c8c9-d3da-45e0-9018-f20009c01fbd", + "c955893e-1efc-4f2d-94fc-0e43f137bdca", + "cc510770-1867-4235-8e9d-5edffda58a86", + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7" + ], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "HxD Hex Editor", + "publisher": "Maël Hörz", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "2.5.0.0", + "vulnerabilities": null + }, + "name": "HxD64.exe", + "path": "%InstallDir%/HxD64.exe", + "properties": [], + "quality": { + "effort": "high", + "priority": 0, + "severity": "high", + "status": "fail" + }, + "sbom": true, + "size": 6916096, + "subtype": "Exe", + "type": "PE+", + "version": "" + } + }, + "cryptography": { + "algorithms": { + "146a1a75-45e5-4a80-85b3-dfa147dd4fd0": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md5", + "violations": [] + }, + "3aedd4d1-56e6-4332-84fd-35432efa65ea": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 224, + "sources": [ + "pattern" + ], + "type": "sha224", + "violations": [] + }, + "54659ff3-7b4b-4b48-bbe7-15f2ab7394fa": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 4, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 384, + "sources": [ + "pattern" + ], + "type": "sha384", + "violations": [] + }, + "843939d5-ccde-4d83-bced-3596dedd307e": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md4", + "violations": [] + }, + "8ca927ae-c43a-47a1-9a59-37a6e286731b": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md2", + "violations": [] + }, + "966f7043-eace-4c0c-8a88-b1b4bc4abd9b": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 2, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 256, + "sources": [ + "pattern" + ], + "type": "sha256", + "violations": [] + }, + "9746fa00-f796-4c6f-8694-70389701d7a3": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 5, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "size": 512, + "sources": [ + "pattern" + ], + "type": "sha512", + "violations": [] + } + }, + "certificates": null, + "materials": null, + "protocols": null + }, + "dependencies": { + "05737049-b94e-4ec5-9d8b-629bb6c36d80": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "gdi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "067bcb3c-4e81-418c-a097-04067883bb3a": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "msimg32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0949e044-6e45-43f3-8b95-b80515d0c486": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "comctl32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0f3389bb-bbd9-4217-b1d9-a18c24b7cc07": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "uxtheme", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0f7e0ca4-68f5-4937-bed1-cf4612519140": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "wininet", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "0f852171-8241-4454-a182-dde0eec14ea3": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "cpe:2.3:a:zlib:zlib:1.2.7:*:*:*:*:*:*:*", + "edit": null, + "homepage": "", + "license": "Permissive (Zlib)", + "original": [], + "product": "zlib", + "publisher": "Jean-loup Gailly and Mark Adler", + "purl": "", + "repository": "", + "scenario": "release", + "verified": true, + "version": "1.2.7", + "vulnerabilities": { + "active": [ + "CVE-2016-9840", + "CVE-2016-9841", + "CVE-2016-9842", + "CVE-2016-9843", + "CVE-2018-25032", + "CVE-2022-37434" + ], + "triaged": [] + } + }, + "14c5f660-1ddf-4215-a954-ef2c520f73ec": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "imm32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "24c4fdf5-7157-43cf-8b3e-d4e5c9f55c10": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "advapi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "3c7f8415-7cef-41a2-88f5-97241c0e2bca": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "msvcrt", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "42dfd072-bcbb-4ce8-a0e5-78d4bd6c12b7": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "comdlg32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "4fa7f26a-b214-4028-aa7f-43c2867dd203": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "version", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "5293d0a5-d922-4ee3-84c7-e539323f7c8c": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ntdll", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "73bd78ab-9f19-43d7-b5cd-2c8b60286d8f": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "kernel32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "748c5a47-7f80-4de1-b7eb-d2c24b331f79": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "shell32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "7dc23ef1-f773-4d3f-be39-72eaa6d586e0": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "winmm", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "7ef6735a-951a-4bf5-bf51-6f591305f8af": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ole32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "81badd48-8648-43d3-a4cd-fbcc698f6345": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "oleaut32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "9b240da2-333a-471d-a6be-cc34f792c2ed": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "oleacc", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "a2c7a3a0-6584-42f2-aa11-67f91c67712e": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "dwmapi", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "b73eb08f-b9e0-4452-ab4e-73d0ffdd1c2e": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "shlwapi", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "bab2c8c9-d3da-45e0-9018-f20009c01fbd": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "user32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "c955893e-1efc-4f2d-94fc-0e43f137bdca": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "windowscodecs", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "cc510770-1867-4235-8e9d-5edffda58a86": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "wtsapi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "dcb244fa-6cd1-44c4-a386-d99ffb8686a7": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "winspool", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + } + }, + "indicators": { + "0222db25-b8f6-4f46-8fc2-60960be021c0": { + "category": "monitor", + "description": "Takes screenshots.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12590", + "violations": 0 + }, + "02f8ea59-6fef-43f9-88a8-6d9e5a8da181": { + "category": "search", + "description": "Queries the priority of a thread.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13427", + "violations": 0 + }, + "05a739e9-d2b2-4221-9e92-6c288df8a213": { + "category": "search", + "description": "Gathers info about disk drives or directories on the system.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19549", + "violations": 0 + }, + "06df30af-6099-4b99-bc2f-5f2091317dab": { + "category": "file", + "description": "Changes the current directory.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13423", + "violations": 0 + }, + "070dbefa-34e5-4ae0-9146-a298a9235653": { + "category": "file", + "description": "Opens a file for reading or writing.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13401", + "violations": 0 + }, + "0a0c94ef-85fa-4ecb-8955-58d9f4b26c28": { + "category": "network", + "description": "Contains URLs.", + "occurrences": 37, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH16331", + "violations": 0 + }, + "0b0db647-9f1a-44e2-82d6-78e07c226427": { + "category": "network", + "description": "Connects through HTTP.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH16168", + "violations": 0 + }, + "0c090280-d8a0-4416-bf47-e033ed64edcd": { + "category": "registry", + "description": "Enumerates the values of a registry key.", + "occurrences": 37, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19456", + "violations": 0 + }, + "0e10c702-4257-42b0-86e6-c7ca65b007ae": { + "category": "memory", + "description": "Frees previously allocated memory in the calling process.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13447", + "violations": 0 + }, + "10748fb4-a6b0-4079-8828-f4004339d76f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-224 hash function, from the SHA-2 hash family.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13644", + "violations": 0 + }, + "12324280-6b14-4111-9685-645872a3e739": { + "category": "execution", + "description": "Executes a file.", + "occurrences": 37, + "priority": 6, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13331", + "violations": 0 + }, + "168c5841-659c-418d-ac6d-239054dc5287": { + "category": "anomaly", + "description": "Plays a sound.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13424", + "violations": 0 + }, + "17bd976e-9c42-458b-9210-bcd9305e9a2b": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD4 hash function.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13637", + "violations": 0 + }, + "17c34cab-0440-42ce-8c5f-0d85095b7c5b": { + "category": "anomaly", + "description": "Plays audio streams in WAV format.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13383", + "violations": 0 + }, + "1802f329-9b3c-4f60-8fb5-ceee8f94f896": { + "category": "file", + "description": "Changes the size of a file.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13442", + "violations": 0 + }, + "19757aed-1b88-4f04-980e-88e2b6393e4e": { + "category": "signature", + "description": "Contains HTTP header fields.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH16327", + "violations": 0 + }, + "1b5982d8-d01e-4c3f-b791-aa688b272485": { + "category": "search", + "description": "Checks if the window is maximized.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13421", + "violations": 0 + }, + "1d070d18-2029-4f24-af23-32c63bf00eff": { + "category": "registry", + "description": "Changes the value of a registry key.", + "occurrences": 36, + "priority": 6, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12168", + "violations": 0 + }, + "1dc7bbed-97a5-438a-8d53-aec8ead5d7f0": { + "category": "network", + "description": "Downloads a file.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH16145", + "violations": 0 + }, + "1e0ab94d-a108-46ac-8050-211634b65f48": { + "category": "file", + "description": "Modifies the timestamp of a file.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12427", + "violations": 0 + }, + "1e9e46a6-f0c3-4eb6-b6a5-38693ae694dd": { + "category": "behavior", + "description": "Starts a print job.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13279", + "violations": 0 + }, + "21d13a54-8511-440d-804e-7d33addbe755": { + "category": "file", + "description": "Deletes files in Windows system directories.", + "occurrences": 1, + "priority": 7, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH12237", + "violations": 0 + }, + "22f4672b-c552-40da-8f35-0846a28de73d": { + "category": "file", + "description": "Writes to files in Windows system directories.", + "occurrences": 1, + "priority": 5, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH12820", + "violations": 0 + }, + "26b08867-f880-4bb4-9f0e-33eb7ded7aa5": { + "category": "monitor", + "description": "Tampers with keyboard/mouse status.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12670", + "violations": 0 + }, + "2ed0f82c-2622-4b87-b6e9-2bc3116d75d5": { + "category": "execution", + "description": "Tampers with system shutdown.", + "occurrences": 1, + "priority": 4, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH12744", + "violations": 0 + }, + "2f9e2360-373d-42d7-882e-dde82d020b21": { + "category": "registry", + "description": "Opens registry keys.", + "occurrences": 37, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13288", + "violations": 0 + }, + "35285515-a59b-4a89-bd0d-906ee5324aa6": { + "category": "permissions", + "description": "Requests permission required to perform a number of security-related functions, such as controlling and viewing audit messages.", + "occurrences": 36, + "priority": 7, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12517", + "violations": 0 + }, + "38d51a9a-cacf-4e5c-b256-f590e892f1d5": { + "category": "behavior", + "description": "Uses string related methods.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13439", + "violations": 0 + }, + "3af3f5c9-2155-44e7-b3ae-467d68caf1de": { + "category": "monitor", + "description": "Detects/enumerates process modules.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19545", + "violations": 0 + }, + "3ba20713-35bb-4b20-8730-92341606cf85": { + "category": "file", + "description": "Sets or updates the file pointer position within an open file.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13405", + "violations": 0 + }, + "3bfe0ab5-316b-4426-81c6-4c6193de9c0d": { + "category": "execution", + "description": "Releases a mutual exclusion (mutex) lock.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13415", + "violations": 0 + }, + "3d52a5cb-7f3b-4257-bed4-09f3de4571c6": { + "category": "file", + "description": "Deletes a file/directory.", + "occurrences": 37, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12223", + "violations": 0 + }, + "3db17036-2a41-4189-b0cb-9ccb8c40b1cd": { + "category": "execution", + "description": "Contains reference to kernel32.dll which is Windows NT BASE API Client DLL.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12842", + "violations": 0 + }, + "3e92c6a1-0859-4fd6-827f-485d1b97306e": { + "category": "search", + "description": "Enumerates user locale information.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19548", + "violations": 0 + }, + "4103df86-367c-45be-9820-bbf58aec2acd": { + "category": "macro", + "description": "Contains HTML.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13343", + "violations": 0 + }, + "41a2ece6-8008-40d2-8dd8-a199ad598ed5": { + "category": "memory", + "description": "Reads from other process' memory.", + "occurrences": 108, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12471", + "violations": 0 + }, + "428f2a18-8500-4254-8aa9-90744595cfa8": { + "category": "behavior", + "description": "Retrieves the position of the mouse cursor.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13411", + "violations": 0 + }, + "42991dd2-cc0b-4e5e-85dd-2a184a714364": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Adler-32 checksum algorithm.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13757", + "violations": 0 + }, + "444990a5-ad73-4e3f-b5cd-62184def629b": { + "category": "file", + "description": "Flushes the file's buffer to disk.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13407", + "violations": 0 + }, + "4819a512-40bf-40e5-88b0-49d1f2e5750b": { + "category": "registry", + "description": "Deletes the value of a registry key.", + "occurrences": 36, + "priority": 7, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13287", + "violations": 0 + }, + "4ee261a0-e3cf-4d17-9b2e-42b5c8994fce": { + "category": "search", + "description": "Checks if the specified window is minimized.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13443", + "violations": 0 + }, + "560a84a4-118c-4f36-a856-8a9efdc720c0": { + "category": "file", + "description": "Queries the timestamp of a file/directory.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13425", + "violations": 0 + }, + "58632199-81af-4022-8f9a-315c4f9da361": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-256 hash function, from the SHA-2 hash family.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13645", + "violations": 0 + }, + "5a64e34c-3186-4479-9788-44f07f593316": { + "category": "execution", + "description": "Loads additional libraries.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12406", + "violations": 0 + }, + "5c45abda-19c3-478e-8008-048decbed2af": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD5 hash function.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13638", + "violations": 0 + }, + "6067535b-feb9-4a8a-9f83-2ef70883c2e5": { + "category": "search", + "description": "Enumerates system drivers.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19289", + "violations": 0 + }, + "60a50226-1816-4063-b5e3-cf30822174f9": { + "category": "search", + "description": "Queries the free disk space.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13420", + "violations": 0 + }, + "62a17335-acac-43f9-bd9e-12d298f2567b": { + "category": "file", + "description": "Modifies file/directory attributes.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12422", + "violations": 0 + }, + "6658308d-ccb3-4887-8ed4-60b94f2294bd": { + "category": "permissions", + "description": "Enumerates user/account privilege information.", + "occurrences": 37, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19330", + "violations": 0 + }, + "66a0d052-473b-4fc7-8bbd-dcb006c7e00a": { + "category": "search", + "description": "Monitors directory changes.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13351", + "violations": 0 + }, + "681d6de8-4ee3-41dd-8dc8-0284e7c4bf13": { + "category": "search", + "description": "Implements drag-and-drop functionality, or has access to dragged-and-dropped files.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13381", + "violations": 0 + }, + "6b74f187-4ffa-4e72-8499-4b2221847459": { + "category": "network", + "description": "Contains URLs related to online mail providers.", + "occurrences": 1, + "priority": 2, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH16365", + "violations": 0 + }, + "710c813f-2ac4-4694-8b3f-ee9bc220d25f": { + "category": "execution", + "description": "Tampers with module search locations.", + "occurrences": 1, + "priority": 2, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH12678", + "violations": 0 + }, + "78c0a6c7-ffe9-4a70-a3ed-997c440ec635": { + "category": "anomaly", + "description": "Contains a reference to ActiveX GUID with the Kill-Bit flag set.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13395", + "violations": 0 + }, + "79d3c0db-ee24-4947-8143-137fa71bac94": { + "category": "file", + "description": "Creates/Opens a file.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13327", + "violations": 0 + }, + "7bd69079-b726-4022-ba2d-ee313db4996f": { + "category": "network", + "description": "Contains IP addresses.", + "occurrences": 73, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH16329", + "violations": 0 + }, + "7fee6158-4397-43b4-af58-408e120534e6": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-384 hash function, from the SHA-2 hash family.", + "occurrences": 18, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13646", + "violations": 0 + }, + "81dde58c-354d-486a-8b8c-d1529ac44e03": { + "category": "behavior", + "description": "Stops the current print job.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13440", + "violations": 0 + }, + "8250dc62-79a3-4cbd-93b4-605e80c57e8c": { + "category": "file", + "description": "Queries file attributes.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13416", + "violations": 0 + }, + "86a86412-6f5b-4eae-b10f-56c428819a6c": { + "category": "settings", + "description": "Enumerates system variables.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19547", + "violations": 0 + }, + "88140d6c-15a7-4d43-b2f4-d8f07d162102": { + "category": "memory", + "description": "Writes to other process' memory.", + "occurrences": 108, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12821", + "violations": 0 + }, + "89592ce1-6102-4f58-a265-e58c31c18fb2": { + "category": "search", + "description": "Retrieves keyboard layout list.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13394", + "violations": 0 + }, + "8cbb4304-953e-4313-abd5-33ea9deb5965": { + "category": "search", + "description": "Checks operating system version.", + "occurrences": 37, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13380", + "violations": 0 + }, + "8d97e570-a86c-4235-9ec6-eaba9152b905": { + "category": "permissions", + "description": "Tampers with user/account privileges.", + "occurrences": 37, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12760", + "violations": 0 + }, + "8eefeb6f-b53f-4fab-a03d-05efc5322996": { + "category": "memory", + "description": "Does just-in-time compiling or code rewriting.", + "occurrences": 36, + "priority": 6, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12306", + "violations": 0 + }, + "920e9d03-084b-43bf-9cda-6bf5812fdd8a": { + "category": "registry", + "description": "Deletes a registry key and its values.", + "occurrences": 36, + "priority": 7, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12225", + "violations": 0 + }, + "93c8c909-8e0f-479c-aa04-6881fcd86d44": { + "category": "search", + "description": "Accesses list of all installed applications.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12110", + "violations": 0 + }, + "93cf09c9-a5b2-43cf-8e53-9c4042ba13cc": { + "category": "file", + "description": "Reads from files.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13328", + "violations": 0 + }, + "94d48ef4-a9eb-442b-a7c0-75dd9931ec79": { + "category": "evasion", + "description": "Detects presence of debuggers.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12805", + "violations": 0 + }, + "9bc24f84-7453-4882-8799-d4215c06ffc2": { + "category": "file", + "description": "Creates a directory.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13352", + "violations": 0 + }, + "9c8722f5-05f7-4b38-8d9e-615fa9ad03aa": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD2 hash function.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13636", + "violations": 0 + }, + "9ec246e4-1f15-4ee9-9474-c5c6539a9fb3": { + "category": "search", + "description": "Queries information about a display monitor.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13282", + "violations": 0 + }, + "9eecab7d-c138-4530-9d06-ccc4075092f2": { + "category": "monitor", + "description": "Monitors keyboard strokes.", + "occurrences": 108, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12432", + "violations": 0 + }, + "a2317496-d0d8-4e5f-9d29-b7b37f7e3557": { + "category": "execution", + "description": "Contains lzma compressed PE file.", + "occurrences": 1, + "priority": 7, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH15323", + "violations": 0 + }, + "a2c29cd8-dc29-494b-9ee0-d4987216ef01": { + "category": "steal", + "description": "Accesses clipboard.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13350", + "violations": 0 + }, + "a30a3e41-acca-4a84-81a7-c772e934c3a8": { + "category": "execution", + "description": "Forces a window to close.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13409", + "violations": 0 + }, + "a3bc2cc7-0949-4d38-970a-2feafab74c35": { + "category": "settings", + "description": "Queries the system time.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13417", + "violations": 0 + }, + "a64201d3-cd59-4b95-ba97-caef18842d50": { + "category": "file", + "description": "Reads from files in Windows system directories.", + "occurrences": 1, + "priority": 4, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH13336", + "violations": 0 + }, + "ab22a258-daac-447e-af77-611f2af3ae24": { + "category": "file", + "description": "Copies a file.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13391", + "violations": 0 + }, + "ac4495db-5d55-4e13-8bab-26854a546878": { + "category": "file", + "description": "Queries version information of a file.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13426", + "violations": 0 + }, + "ac5c2c6b-ee02-429d-90cd-7ca27efd1c1d": { + "category": "search", + "description": "Retrieves a list of printers installed on a computer.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19529", + "violations": 0 + }, + "ac962987-0d54-4ff0-b827-ae13aaf91779": { + "category": "settings", + "description": "Changes the priority of a thread.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13413", + "violations": 0 + }, + "ae400dc3-b5d7-4119-8710-e610e48df23f": { + "category": "execution", + "description": "Contains reference to ole32.dll which is Microsoft OLE for Windows.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12845", + "violations": 0 + }, + "ae9cc264-69f1-4085-a59f-5a1184a255da": { + "category": "file", + "description": "Writes to files.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13329", + "violations": 0 + }, + "b11f5a36-c98c-40d3-a8dd-f04a8851e1d0": { + "category": "registry", + "description": "Closes a previously open registry key.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13406", + "violations": 0 + }, + "b78633b5-8efc-43fd-a251-8f8b9b2ee05f": { + "category": "registry", + "description": "Accesses/modifies registry.", + "occurrences": 37, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13330", + "violations": 0 + }, + "b7e1c5a9-200a-4a8a-84d0-73c1f76b3df7": { + "category": "search", + "description": "Enumerates currently available disk drives.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19145", + "violations": 0 + }, + "b9c43fe4-bf45-4b8f-99e0-f8743a0ecb54": { + "category": "monitor", + "description": "Possibly does API hooking.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12849", + "violations": 0 + }, + "bbb339dd-5369-4fff-acd3-8542be97ad6e": { + "category": "search", + "description": "Enumerates system information.", + "occurrences": 37, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19295", + "violations": 0 + }, + "bc6661df-a14f-49cc-83ca-b093f55e04e0": { + "category": "search", + "description": "Enumerates files.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19546", + "violations": 0 + }, + "bf6c18b9-02b7-4749-98b8-e35608f6ac6a": { + "category": "memory", + "description": "Allocates additional memory in the calling process.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13404", + "violations": 0 + }, + "c0fea17c-33e0-4d04-a73a-a3212c796382": { + "category": "execution", + "description": "Contains a reference to a common dynamic library or an executable file.", + "occurrences": 336, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13314", + "violations": 0 + }, + "c1099740-d29d-4abd-b613-182243f7e0f6": { + "category": "steal", + "description": "Retrieves text from the clipboard.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13272", + "violations": 0 + }, + "c12bf405-52f9-4b8a-a5ee-7218e59d5b3a": { + "category": "execution", + "description": "Contains reference to shell32.dll which is Windows Shell Common Dll.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12846", + "violations": 0 + }, + "c291e752-b2cb-4b49-8aa0-c329743a62f0": { + "category": "execution", + "description": "Displays a dialog box with a message.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13408", + "violations": 0 + }, + "c2c890a8-017e-4dcd-97cb-6e959c90f93e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the CRC-32 cyclic redundancy check.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13758", + "violations": 0 + }, + "c36265c2-d055-4903-9274-fbfe121357cb": { + "category": "permissions", + "description": "Requests permission required to shut down a system.", + "occurrences": 1, + "priority": 7, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH12523", + "violations": 0 + }, + "c5170163-dd19-4618-af2e-2d2ff4aeb823": { + "category": "file", + "description": "Renames files.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13379", + "violations": 0 + }, + "d29fdc2c-b2a4-4ae9-a292-35aee15ad11c": { + "category": "memory", + "description": "Possibly does process injection.", + "occurrences": 36, + "priority": 4, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13348", + "violations": 0 + }, + "d356e866-4e89-4bf8-9076-5ec3946f46e0": { + "category": "search", + "description": "Reads paths to system directories on Windows.", + "occurrences": 1, + "priority": 4, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH13387", + "violations": 0 + }, + "d8db2fc8-ddf1-4c7d-9597-f745eef5d4bd": { + "category": "monitor", + "description": "Detects/enumerates running processes.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19102", + "violations": 0 + }, + "dc7c5fd9-87a9-4127-83c6-a9d3a79722b4": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-512 hash function, from the SHA-2 hash family.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13647", + "violations": 0 + }, + "dfa7ebf3-36bb-46d0-813e-f6ac6c6e2660": { + "category": "file", + "description": "Creates/opens files in Windows system directories.", + "occurrences": 1, + "priority": 4, + "references": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ], + "rule_id": "BH13335", + "violations": 0 + }, + "e1348a92-8159-4390-aaf9-faeb86aac42b": { + "category": "registry", + "description": "Enumerates registry keys.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19536", + "violations": 0 + }, + "e20f4c92-8c57-426d-a049-895987a6ef10": { + "category": "monitor", + "description": "Monitors mouse activity.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13355", + "violations": 0 + }, + "e41a18f7-9bb5-46e6-a69f-72f421155b0d": { + "category": "search", + "description": "Enumerates the installed system languages.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH19535", + "violations": 0 + }, + "e4544955-3207-4c6d-b1ac-1019f20b92fa": { + "category": "monitor", + "description": "Issues system-wide notifications for events performed by the application.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12394", + "violations": 0 + }, + "e4cfaebe-b2c2-4cb2-b534-b6f64e19e592": { + "category": "file", + "description": "Queries the size of a file.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13410", + "violations": 0 + }, + "e4ed4505-4c4d-4454-962f-71c634162951": { + "category": "signature", + "description": "Contains compression libraries.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13349", + "violations": 0 + }, + "e595d5e4-123e-4ec4-9aa3-5dfbbcf5ba7e": { + "category": "file", + "description": "Removes a directory.", + "occurrences": 37, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13353", + "violations": 0 + }, + "e7d804e5-8cdc-4b1b-8796-42b70ad3e448": { + "category": "settings", + "description": "Changes printer settings.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12712", + "violations": 0 + }, + "e8bc7333-5a69-4a05-b390-6711d2db9ea7": { + "category": "execution", + "description": "Contains reference to ntdll.dll which is NT Layer DLL.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12844", + "violations": 0 + }, + "ec22ea51-4186-43c5-b305-3887af617e43": { + "category": "execution", + "description": "Creates a mutual exclusion (mutex) lock.", + "occurrences": 36, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13414", + "violations": 0 + }, + "ec768526-5a24-4df5-a0d0-3c2afc5cee57": { + "category": "execution", + "description": "Loads additional APIs.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13334", + "violations": 0 + }, + "ed90af6c-faa7-4252-b4f9-bfff9a87fe76": { + "category": "search", + "description": "Gets the current working directory.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13419", + "violations": 0 + }, + "edf54ee0-4f6e-4405-8690-866ee583f3d2": { + "category": "execution", + "description": "Delays execution.", + "occurrences": 37, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12220", + "violations": 0 + }, + "f048c2b9-60ea-446d-84c3-f2b3314adf6e": { + "category": "file", + "description": "Closes a previously open file.", + "occurrences": 37, + "priority": 1, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13434", + "violations": 0 + }, + "f26eeed8-b216-4fbe-99c6-a18da59fc820": { + "category": "execution", + "description": "Creates a thread.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13418", + "violations": 0 + }, + "f384d92f-d2e3-4e56-8aff-25d1a22c4884": { + "category": "search", + "description": "Queries drive type.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13422", + "violations": 0 + }, + "f58933d0-3c88-4e37-9ed5-6df07162b062": { + "category": "anomaly", + "description": "Writes text to the clipboard.", + "occurrences": 36, + "priority": 2, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13429", + "violations": 0 + }, + "fd9faa7a-c7fc-4b06-9cfc-889cbb720945": { + "category": "registry", + "description": "Creates registry keys.", + "occurrences": 36, + "priority": 5, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH12216", + "violations": 0 + }, + "fde45283-37c9-4719-bb2e-6a3f01d57978": { + "category": "registry", + "description": "Detects web browser.", + "occurrences": 36, + "priority": 3, + "references": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ], + "rule_id": "BH13332", + "violations": 0 + } + }, + "licenses": { + "LicenseRef-rlsecure-microsoft-software-license-terms": { + "audit": null, + "family": "Proprietary", + "violations": [] + }, + "Zlib": { + "audit": null, + "family": "Permissive", + "violations": [] + } + }, + "ml_models": null, + "secrets": null, + "services": null, + "violations": { + "0d83b895-98f6-4894-b5b2-d2daec126082": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement CFG vulnerability mitigation protection.", + "effort": "medium", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14122", + "severity": "medium", + "statistics": { + "applicable": 37, + "enforcements": 0, + "exclusions": 0, + "violations": 37 + }, + "status": "pass" + }, + "2b15a643-0006-4f27-b3a4-fee2dd6f0cd6": { + "audit": null, + "category": "vulnerabilities", + "description": "Detected presence of critical severity vulnerabilities.", + "effort": "high", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ31104", + "severity": "high", + "statistics": { + "applicable": 36, + "enforcements": 36, + "exclusions": 0, + "violations": 36 + }, + "status": "fail" + }, + "3126f171-0030-4d97-8a0d-f2ba6a6eac3e": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that try to implement ASLR but do not have relocations to support that vulnerability mitigation protection.", + "effort": "low", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "1f9d6aee-2a8b-5eb2-909a-b01aee220621" + ] + }, + "rule_id": "SQ14107", + "severity": "high", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "4dc8e1b0-f540-4808-9417-dd3fe30bb928": { + "audit": null, + "category": "vulnerabilities", + "description": "Detected presence of severe vulnerabilities with active exploitation.", + "effort": "high", + "enabled": true, + "priority": 0, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ31102", + "severity": "high", + "statistics": { + "applicable": 36, + "enforcements": 36, + "exclusions": 0, + "violations": 36 + }, + "status": "fail" + }, + "83684779-0997-44fa-b0d1-3b781e76af75": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with imported functions susceptible to pointer hijacking.", + "effort": "medium", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "1f9d6aee-2a8b-5eb2-909a-b01aee220621", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14156", + "severity": "high", + "statistics": { + "applicable": 37, + "enforcements": 0, + "exclusions": 0, + "violations": 37 + }, + "status": "pass" + }, + "a580d93b-c258-477c-b805-484ad15708d6": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement the high entropy ASLR vulnerability mitigation protection.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14106", + "severity": "low", + "statistics": { + "applicable": 18, + "enforcements": 0, + "exclusions": 0, + "violations": 18 + }, + "status": "pass" + }, + "a9e8f091-cfd3-46fe-a117-f09d158949ad": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with exception handlers susceptible to pointer hijacking.", + "effort": "medium", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14159", + "severity": "high", + "statistics": { + "applicable": 18, + "enforcements": 0, + "exclusions": 0, + "violations": 18 + }, + "status": "pass" + }, + "c6512cb4-2d89-4315-afba-356b417655cb": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that trigger ASLR compatibility mode and reduce its effectiveness.", + "effort": "low", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14109", + "severity": "medium", + "statistics": { + "applicable": 18, + "enforcements": 0, + "exclusions": 0, + "violations": 18 + }, + "status": "pass" + }, + "f3465e6f-31ff-46ed-b67d-f23432946c69": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files with delay import functions susceptible to pointer hijacking.", + "effort": "medium", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ14157", + "severity": "high", + "statistics": { + "applicable": 36, + "enforcements": 0, + "exclusions": 0, + "violations": 36 + }, + "status": "pass" + }, + "fcbf8570-fe9e-43be-83e3-18c977b4c0e0": { + "audit": null, + "category": "vulnerabilities", + "description": "Detected presence of high severity vulnerabilities.", + "effort": "high", + "enabled": true, + "priority": 1, + "references": { + "component": [ + "0154ef7c-2d8a-5d65-9ee9-9ea9da7b0e2c", + "1a0766b9-221f-5037-bee0-362f92d6c17d", + "27ac297c-9d9a-5c19-81b8-1e2525d4a18c", + "2f9d5e83-3ffa-5fe7-8127-2c1b5fc8b51a", + "361b7eff-08bc-59df-a084-e53efaad5a7b", + "3692b9b0-0c62-54a0-bac7-c101ffaa3b81", + "49eeb0de-d7c3-5aff-bffd-2993ef357f96", + "53da119e-8f0b-5247-9f1d-1aad08906d5e", + "5efffded-784b-50fe-bf95-225860f71bd8", + "6f20ccf5-7111-56a9-a85b-818bcef1bdb2", + "6fe7cb97-cddd-5d76-9eea-040d31ee3b93", + "7606aaca-12d4-5727-bfbe-cde390cacb1a", + "799641a0-0f81-5c4b-9121-33c3047010e4", + "79aeacb6-d598-54cf-9694-c6138fb855a5", + "80eed969-895e-58fc-be58-223be60485a1", + "8fc63934-c082-5f78-a04c-e0abbd9a3496", + "977a1202-7ff4-582f-9ee2-413e170e1632", + "987e839a-4d3b-50c3-aec7-db6e282e3fee", + "98940edc-a624-58e6-9094-ca9ef6813dc6", + "9997e1ac-8b0e-5621-988c-e2f001af3dd5", + "a5ed2c61-5c87-5679-aa4c-5a6517024fdc", + "ad05e7f9-af70-5fa3-b05d-d43cc34e718e", + "adf0a841-99cd-51ea-ae8e-9fb471cfe4d0", + "ae0912be-184d-5799-9175-2b43bd7dbab3", + "b0d80657-45b1-5cdc-88f5-6a76173db102", + "b1751a66-735f-5b83-88ce-61a84cce63a2", + "ba2c091f-5fd1-5391-91af-6a98a6365b5e", + "c1b1620e-efff-548d-b37f-8eea4604ea86", + "c7a34c81-b53a-50e6-afa1-8b75adfba048", + "c7ebfa08-0d17-5bd3-91b7-f9fcef891801", + "d2c7f380-7306-5b0b-acf7-8e9984d1ff26", + "d52c970b-15bb-5711-8e84-474130b33dd3", + "e5f59b63-a682-5d63-9229-6d9c98ffac37", + "e6297bf7-e8b4-505c-b18c-6df8e8be14bf", + "efa50b22-5e1e-5acd-a5dd-854224b3b32a", + "f04a70c5-f97f-5084-9426-7a6564999690" + ] + }, + "rule_id": "SQ31105", + "severity": "high", + "statistics": { + "applicable": 36, + "enforcements": 0, + "exclusions": 0, + "violations": 36 + }, + "status": "pass" + } + }, + "vulnerabilities": { + "CVE-2016-9840": { + "cvss": { + "baseScore": "8.8", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "Required" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "High" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31105" + ] + }, + "CVE-2016-9841": { + "cvss": { + "baseScore": "9.8", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "None" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "High" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31104" + ] + }, + "CVE-2016-9842": { + "cvss": { + "baseScore": "8.8", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "Required" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "High" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31105" + ] + }, + "CVE-2016-9843": { + "cvss": { + "baseScore": "9.8", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "None" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "High" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31104" + ] + }, + "CVE-2018-25032": { + "cvss": { + "baseScore": "7.5", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "None" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "None" + ], + [ + "Integrity Impact", + "None" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31105" + ] + }, + "CVE-2022-37434": { + "cvss": { + "baseScore": "9.8", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "Low" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "None" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "High" + ], + [ + "Availability Impact", + "High" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31102", + "SQ31104" + ] + } + } + } + }, + "schema": 3, + "timestamp": "2025-04-14T10:55:38+02:00", + "version": "5.3.0.115" +} diff --git a/unittests/scans/reversinglabs_spectraassure/README.md b/unittests/scans/reversinglabs_spectraassure/README.md new file mode 100644 index 00000000000..304e2911964 --- /dev/null +++ b/unittests/scans/reversinglabs_spectraassure/README.md @@ -0,0 +1,13 @@ +# Test files + +files that wil be used by the `unittests/tools/test_reversinglabs_spectraassure_parser.py` + +- FD13-FullUSB.zip-report.rl.json +- putty_win_x64-0.80.exe-report.rl.json +- HxDSetup_2.5.0.exe-report.rl.json + +## Peculiarities per file + +- FD13-FullUSB.zip-report.rl.json No Findings +- putty_win_x64-0.80.exe-report.rl.json One Finding +- HxDSetup_2.5.0.exe-report.rl.json Multiple Findings but components with the same name but different sha256 diff --git a/unittests/scans/reversinglabs_spectraassure/putty_win_x64-0.80.exe-report.rl.json b/unittests/scans/reversinglabs_spectraassure/putty_win_x64-0.80.exe-report.rl.json new file mode 100644 index 00000000000..3446b082bfa --- /dev/null +++ b/unittests/scans/reversinglabs_spectraassure/putty_win_x64-0.80.exe-report.rl.json @@ -0,0 +1,2414 @@ +{ + "catalogue": 2, + "duration": "00:00:02.315", + "report": { + "info": { + "detections": { + "Goodware": { + "No Threats Detected": 589 + } + }, + "disabled": [ + "SQ14120", + "SQ14126", + "SQ14129", + "SQ14130", + "SQ14131", + "SQ14132", + "SQ14133", + "SQ14136", + "SQ18114", + "SQ20105", + "SQ30101" + ], + "file": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a9c5924063a253f64fb86bc924be6996" + ], + [ + "sha1", + "c39ba1e011318b3edf295d4bdde3d56b5de89972" + ], + [ + "sha256", + "eb1b278b91a8f183f9749948abd9556ec21b03ca852c53e423d824d5d7cc3de4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "cpe:2.3:a:putty:putty:0.80:*:*:*:*:*:*:*", + "dependencies": [ + "5241da9e-dc5e-41ba-856e-bfd33a686e3a", + "6ec7a56a-6207-4db8-a4ae-7565d1e3ff6b", + "88734367-33f8-4b75-a578-5b62f42a8d8a", + "99085d31-bc40-4e58-9800-1e9eaacdfe4a", + "bd8ac201-4c7b-491c-8c85-3a1ac51b9cae", + "cb966324-7d96-4d0a-9e08-b8ff538e1bed", + "cce29ecc-58f1-4226-870d-74cebf57ffa5", + "f65f7ec6-e9e7-4579-b8ff-158e5b3bed15" + ], + "edit": null, + "homepage": "", + "license": "Permissive (MIT)", + "original": [], + "product": "PuTTY", + "publisher": "Simon Tatham", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "0.80", + "vulnerabilities": { + "active": [ + "CVE-2024-31497" + ], + "triaged": [] + } + }, + "name": "putty_win_x64-0.80.exe", + "path": "", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1661216, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "inhibitors": { + "customized": false, + "exclusions": {}, + "next_level": 5, + "scan_level": 5 + }, + "properties": [], + "statistics": { + "bad_checksum": 0, + "bad_format": 0, + "bad_password": 0, + "components": 4, + "extracted": 589, + "licenses": { + "copyleft": 0, + "freemium": 0, + "freeware": 0, + "non_commercial": 0, + "permissive": 1, + "proprietary": 1, + "public_domain": 0, + "shareware": 0, + "undeclared": 0, + "weak_copyleft": 0 + }, + "quality": { + "issues": { + "fail": 0, + "high": 0, + "low": 4, + "medium": 2, + "pass": 6, + "total": 6, + "warning": 0 + }, + "metrics": { + "fail": 0, + "high": 0, + "low": 6, + "medium": 2, + "pass": 8, + "total": 8, + "warning": 0 + }, + "priority": 2, + "status": "pass" + }, + "unsupported": 0, + "vulnerabilities": { + "critical": 0, + "exploit": 1, + "fixable": 1, + "high": 0, + "low": 0, + "malware": 0, + "mandate": 0, + "medium": 1, + "named": 0, + "total": 1, + "triaged": 0 + } + }, + "unpacking": { + "errors": {}, + "warnings": {} + }, + "warnings": [] + }, + "metadata": { + "assessments": { + "hardening": { + "count": 1, + "evaluations": [ + { + "count": 1, + "label": "low priority mitigations absent", + "priority": 3, + "status": "pass", + "violations": [ + "SQ14127" + ] + } + ], + "final": false, + "label": "modern mitigations missing", + "priority": 3, + "status": "warning", + "violations": [ + "SQ14122" + ] + }, + "licenses": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No license compliance issues", + "priority": null, + "status": "pass", + "violations": [] + }, + "malware": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No evidence of malware inclusion", + "priority": null, + "status": "pass", + "violations": [] + }, + "secrets": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No sensitive information found", + "priority": null, + "status": "pass", + "violations": [] + }, + "tampering": { + "count": 0, + "evaluations": [], + "final": false, + "label": "No evidence of software tampering", + "priority": null, + "status": "pass", + "violations": [] + }, + "vulnerabilities": { + "count": 1, + "evaluations": [], + "final": true, + "label": "medium severity vulnerabilities", + "priority": 2, + "status": "warning", + "violations": [ + "SQ31106" + ] + } + }, + "components": { + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "", + "hashes": [ + [ + "md5", + "a9c5924063a253f64fb86bc924be6996" + ], + [ + "sha1", + "c39ba1e011318b3edf295d4bdde3d56b5de89972" + ], + [ + "sha256", + "eb1b278b91a8f183f9749948abd9556ec21b03ca852c53e423d824d5d7cc3de4" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "cpe:2.3:a:putty:putty:0.80:*:*:*:*:*:*:*", + "dependencies": [ + "5241da9e-dc5e-41ba-856e-bfd33a686e3a", + "6ec7a56a-6207-4db8-a4ae-7565d1e3ff6b", + "88734367-33f8-4b75-a578-5b62f42a8d8a", + "99085d31-bc40-4e58-9800-1e9eaacdfe4a", + "bd8ac201-4c7b-491c-8c85-3a1ac51b9cae", + "cb966324-7d96-4d0a-9e08-b8ff538e1bed", + "cce29ecc-58f1-4226-870d-74cebf57ffa5", + "f65f7ec6-e9e7-4579-b8ff-158e5b3bed15" + ], + "edit": null, + "homepage": "", + "license": "Permissive (MIT)", + "original": [], + "product": "PuTTY", + "publisher": "Simon Tatham", + "purl": "", + "repository": "", + "scenario": null, + "verified": true, + "version": "0.80", + "vulnerabilities": { + "active": [ + "CVE-2024-31497" + ], + "triaged": [] + } + }, + "name": "putty_win_x64-0.80.exe", + "path": "", + "properties": [], + "quality": { + "effort": "high", + "priority": 2, + "severity": "medium", + "status": "pass" + }, + "sbom": true, + "size": 1661216, + "subtype": "Exe", + "type": "PE+", + "version": "" + }, + "3a6f60d3-10d0-54bf-be31-a62c754313fb": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "9138f1f88497e900e3e9833d19c7c0aa" + ], + [ + "sha1", + "ff71ba38616b4accb1835c946ff207c3110eba38" + ], + [ + "sha256", + "d69ba78812b65e88edc7e9a316e7f829972d74a78e4c854710947b484f84eaaa" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "using-cmdline-ncmode.html", + "path": "binary_layer/resource/2000/2000:1033/using-cmdline-ncmode.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 3100, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "7756f17e-35e9-5083-9aff-eecf53ff5afc": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "403446f1c0c4b7be1d4201dcb1f2dda0" + ], + [ + "sha1", + "93ccc6e35e9d0d5953179b3e9b2103e7c349606f" + ], + [ + "sha256", + "1ca6dd14465e01fb826c487267c023b721494e294b0d44922fcb1e4d35f056db" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "using-port-forwarding.html", + "path": "binary_layer/resource/2000/2000:1033/using-port-forwarding.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 6777, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + }, + "b41bd087-da2a-5b89-92b3-4b9e2465bd18": { + "classification": { + "result": "", + "status": "Goodware" + }, + "format": "HTML", + "hashes": [ + [ + "md5", + "1fb950efc4e2d79cfb083132b69249fe" + ], + [ + "sha1", + "19a4d70b95a2294c51368858488eacb630046a1c" + ], + [ + "sha256", + "f3a84471da9a6b42763159a881124322785e61460c6f5a0edb903f0e2da223ed" + ] + ], + "identity": { + "authors": [], + "classification": { + "result": "", + "status": "Goodware" + }, + "community": "general", + "cpe": "", + "dependencies": [], + "edit": null, + "homepage": "", + "license": "", + "original": [], + "product": "", + "publisher": "", + "purl": "", + "repository": "", + "scenario": null, + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "name": "config-ssh-portfwd.html", + "path": "binary_layer/resource/2000/2000:1033/config-ssh-portfwd.html", + "properties": [], + "quality": { + "effort": "high", + "priority": 3, + "severity": "low", + "status": "pass" + }, + "sbom": false, + "size": 5370, + "subtype": "HTML", + "type": "Text", + "version": "Generic" + } + }, + "cryptography": { + "algorithms": { + "178929b3-f970-47ce-9041-b48ee5f9cb7c": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "haval", + "violations": [] + }, + "1a9cd198-61d5-47b7-888c-3f4a715e5f54": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "ripemd128", + "violations": [] + }, + "1b23d5e3-683a-4778-8b7b-e0c78090b497": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md5", + "violations": [] + }, + "29f94155-7b1c-47db-9a75-3799b8e5f8d1": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 5, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 512, + "sources": [ + "pattern" + ], + "type": "sha512", + "violations": [] + }, + "30b7e5e2-3a94-4d86-a2f6-099757d89582": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 160, + "sources": [ + "pattern" + ], + "type": "ripemd160", + "violations": [] + }, + "49d97487-9960-40be-acaa-9e5893373596": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 384, + "sources": [ + "pattern" + ], + "type": "blake384", + "violations": [] + }, + "4adfa604-82c6-4137-bb94-c8ce83237f01": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 256, + "sources": [ + "pattern" + ], + "type": "blake256", + "violations": [] + }, + "4ae094c1-47a1-40e5-8d2c-b52731e5db9a": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 128, + "sources": [ + "pattern" + ], + "type": "md4", + "violations": [] + }, + "4c3bb2d1-950d-4467-915d-d8609bf7d5ac": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 160, + "sources": [ + "pattern" + ], + "type": "sha1", + "violations": [] + }, + "5f7d92ad-1674-445d-a624-5372ad89cdab": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 2, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 256, + "sources": [ + "pattern" + ], + "type": "sha256", + "violations": [] + }, + "74e2f2d9-54a1-4866-bd9f-36582c6301c9": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "blake2", + "violations": [] + }, + "760b7cf9-e0dd-4751-bd87-a432d100bc53": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 224, + "sources": [ + "pattern" + ], + "type": "sha224", + "violations": [] + }, + "831d94f5-82f5-4439-aaed-4e05f8373dea": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "stream-cipher", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "chacha20", + "violations": [] + }, + "b5f558f8-eee4-4454-80c2-7b586073dd91": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 512, + "sources": [ + "pattern" + ], + "type": "blake512", + "violations": [] + }, + "e0676676-9df8-41f0-a798-9ee6d88156df": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "sha3", + "violations": [] + }, + "edb0189e-811f-4759-8b7d-a40af7a51699": { + "functions": [ + "decrypt", + "encrypt" + ], + "mode": "unknown", + "pqc_level": 0, + "primitive": "block-cipher", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 0, + "sources": [ + "pattern" + ], + "type": "blowfish", + "violations": [] + }, + "f4e0af92-b707-4ba9-9ae7-9976761ac119": { + "functions": [ + "digest" + ], + "mode": "unknown", + "pqc_level": 4, + "primitive": "hash", + "properties": [], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "size": 384, + "sources": [ + "pattern" + ], + "type": "sha384", + "violations": [] + } + }, + "certificates": { + "8b5d2a54b182d234cc46d2fd4d9b139610ce6d3abf3beef328e3884e9b14a850": { + "algorithm": "sha384WithRSAEncryption", + "extensions": [ + { + "is_critical": false, + "name": "X509v3 Authority Key Identifier", + "value": "0F:2A:CB:20:87:28:B8:EC:6F:48:AE:2B:54:A6:29:AA:17:A4:CD:0C" + }, + { + "is_critical": false, + "name": "X509v3 Subject Key Identifier", + "value": "FF:81:BD:4D:75:16:75:02:B0:BE:63:75:70:AB:31:77:DB:D2:E0:3F" + }, + { + "is_critical": true, + "name": "X509v3 Key Usage", + "value": "Digital Signature" + }, + { + "is_critical": true, + "name": "X509v3 Basic Constraints", + "value": "CA:FALSE" + }, + { + "is_critical": false, + "name": "X509v3 Extended Key Usage", + "value": "Code Signing" + }, + { + "is_critical": false, + "name": "Netscape Cert Type", + "value": "Object Signing" + }, + { + "is_critical": false, + "name": "X509v3 Certificate Policies", + "value": "Policy: 1.3.6.1.4.1.6449.1.2.1.3.2\n CPS: https://sectigo.com/CPS\nPolicy: 2.23.140.1.4.1" + }, + { + "is_critical": false, + "name": "X509v3 CRL Distribution Points", + "value": "Full Name:\n URI:http://crl.sectigo.com/SectigoPublicCodeSigningCAR36.crl" + }, + { + "is_critical": false, + "name": "Authority Information Access", + "value": "CA Issuers - URI:http://crt.sectigo.com/SectigoPublicCodeSigningCAR36.crt\nOCSP - URI:http://ocsp.sectigo.com" + } + ], + "issuer": [ + [ + "countryName", + "GB" + ], + [ + "organizationName", + "Sectigo Limited" + ], + [ + "commonName", + "Sectigo Public Code Signing CA R36" + ] + ], + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "serial_number": "8e3fbfb91be6da041ba41f7a983ad61e", + "size": 0, + "subject": [ + [ + "countryName", + "GB" + ], + [ + "stateOrProvinceName", + "Cambridgeshire" + ], + [ + "organizationName", + "Simon Tatham" + ], + [ + "commonName", + "Simon Tatham" + ] + ], + "thumbprint": "8b5d2a54b182d234cc46d2fd4d9b139610ce6d3abf3beef328e3884e9b14a850", + "type": "X.509", + "valid_from": "2021-11-06T00:00:00Z", + "valid_to": "2024-11-05T23:59:59Z", + "violations": [ + "SQ20119", + "SQ20121" + ] + } + }, + "materials": null, + "protocols": null + }, + "dependencies": { + "5241da9e-dc5e-41ba-856e-bfd33a686e3a": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "imm32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "6ec7a56a-6207-4db8-a4ae-7565d1e3ff6b": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "ole32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "88734367-33f8-4b75-a578-5b62f42a8d8a": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "gdi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "99085d31-bc40-4e58-9800-1e9eaacdfe4a": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "comdlg32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "bd8ac201-4c7b-491c-8c85-3a1ac51b9cae": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "advapi32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "cb966324-7d96-4d0a-9e08-b8ff538e1bed": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "kernel32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "cce29ecc-58f1-4226-870d-74cebf57ffa5": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "shell32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + }, + "f65f7ec6-e9e7-4579-b8ff-158e5b3bed15": { + "authors": [], + "classification": { + "result": "", + "status": "Unknown" + }, + "community": "general", + "cpe": "", + "edit": null, + "homepage": "", + "license": "Proprietary (LicenseRef-rlsecure-microsoft-software-license-terms)", + "original": [], + "product": "user32", + "publisher": "Microsoft Corporation", + "purl": "", + "repository": "", + "scenario": "release", + "verified": false, + "version": "Generic", + "vulnerabilities": null + } + }, + "indicators": { + "03705237-b87a-476a-a494-399997002121": { + "category": "registry", + "description": "Changes the value of a registry key.", + "occurrences": 1, + "priority": 6, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12168", + "violations": 0 + }, + "097e5572-787b-40ca-9279-53299f887f93": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-224 hash function, from the SHA-2 hash family.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13644", + "violations": 0 + }, + "0a19e629-a474-46e9-abd3-d5509f58aade": { + "category": "execution", + "description": "Creates a thread.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13418", + "violations": 0 + }, + "0f5de484-a542-4817-aa55-e9fd45468d87": { + "category": "search", + "description": "Checks if the specified window is minimized.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13443", + "violations": 0 + }, + "170344c9-be5d-4ac6-bf3e-5c9c7dea0042": { + "category": "registry", + "description": "Deletes a registry key and its values.", + "occurrences": 1, + "priority": 7, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12225", + "violations": 0 + }, + "186b7a46-9a17-4555-b91e-60fc2a4afe02": { + "category": "file", + "description": "Writes to files.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13329", + "violations": 0 + }, + "1aa8ba34-a441-4db6-b297-b54f5f2dd25e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the RIPEMD128 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13639", + "violations": 0 + }, + "1f485593-b47f-48c9-81be-eb4d6998d14a": { + "category": "network", + "description": "Contains placeholders for IP addresses.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH16330", + "violations": 0 + }, + "2002063c-4a40-4509-b337-3034d5caafe3": { + "category": "search", + "description": "Checks if the window is maximized.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13421", + "violations": 0 + }, + "2342e5c2-1b73-4502-8488-3e6d4162470a": { + "category": "execution", + "description": "Writes data to the STDOUT stream.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13412", + "violations": 0 + }, + "2895398f-ce80-4ad4-a4c6-7db0621607f5": { + "category": "network", + "description": "Contains URLs related to online payment services.", + "occurrences": 1, + "priority": 6, + "references": [], + "rule_id": "BH16103", + "violations": 0 + }, + "299fd2e3-e4b1-4cbc-bd5b-5d46565e322b": { + "category": "settings", + "description": "Queries the system time.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13417", + "violations": 0 + }, + "2b5c497c-4d00-4764-b825-f404e8cff239": { + "category": "execution", + "description": "Forces a window to close.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13409", + "violations": 0 + }, + "2c6a652e-e3f1-4f04-89b1-f6ab48d08c4e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Keccak (SHA3) hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13635", + "violations": 0 + }, + "2f77c35a-80de-43de-af3e-0eb3e4963214": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-256 hash function, from the SHA-2 hash family.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13645", + "violations": 0 + }, + "2ff05bfd-4fd6-4814-888d-0bfa19026c08": { + "category": "execution", + "description": "Contains reference to shell32.dll which is Windows Shell Common Dll.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12846", + "violations": 0 + }, + "318e6fef-1c63-42db-8d06-632c363463c5": { + "category": "signature", + "description": "Contains HTTP header fields.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH16327", + "violations": 0 + }, + "3406a0f0-62f1-470e-8969-1e1958b22dc3": { + "category": "search", + "description": "Retrieves the name of the user associated with the process.", + "occurrences": 1, + "priority": 7, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19452", + "violations": 0 + }, + "362ee2e5-006a-4b76-a76d-b739e85c74f3": { + "category": "network", + "description": "Contains URLs related to search engines.", + "occurrences": 2, + "priority": 2, + "references": [], + "rule_id": "BH16364", + "violations": 0 + }, + "37693c24-23ac-4faf-b112-9094e0f2dd7b": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE-256 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13630", + "violations": 0 + }, + "38389af7-4bd3-4550-8af5-378b4279ebe0": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the RIPEMD160 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13640", + "violations": 0 + }, + "38ebf9d0-bf5f-4d89-9481-36f432adaa18": { + "category": "search", + "description": "Queries memory related information.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13428", + "violations": 0 + }, + "39fb9612-ef8f-4e11-aa96-dc869a3c8e01": { + "category": "anomaly", + "description": "Plays a sound.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13424", + "violations": 0 + }, + "3e8d88f6-3121-4803-8c99-58677a55fdb1": { + "category": "network", + "description": "Contains IP addresses.", + "occurrences": 3, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93", + "b41bd087-da2a-5b89-92b3-4b9e2465bd18" + ], + "rule_id": "BH16329", + "violations": 0 + }, + "402d1810-3805-4c50-9b9d-a1b4fe9b8e9d": { + "category": "execution", + "description": "Terminates a process/thread.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12794", + "violations": 0 + }, + "4296ea8d-34db-474b-8724-f5fe8e5936e6": { + "category": "monitor", + "description": "Contains timestamp-related format strings.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13402", + "violations": 0 + }, + "42f51258-7bde-4034-8d20-266bb6f1562b": { + "category": "monitor", + "description": "Detects/enumerates process modules.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19545", + "violations": 0 + }, + "44c1efa7-4b26-482f-bea8-8e620da51cab": { + "category": "execution", + "description": "Creates a mutual exclusion (mutex) lock.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13414", + "violations": 0 + }, + "4695de41-77dc-4625-a49b-65c037768064": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-1 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13643", + "violations": 0 + }, + "47d433c1-6ea5-4ebd-a561-1e5f46a7a8d7": { + "category": "network", + "description": "Contains URLs that use non-standard ports.", + "occurrences": 3, + "priority": 5, + "references": [ + "3a6f60d3-10d0-54bf-be31-a62c754313fb", + "7756f17e-35e9-5083-9aff-eecf53ff5afc", + "b41bd087-da2a-5b89-92b3-4b9e2465bd18" + ], + "rule_id": "BH16111", + "violations": 0 + }, + "49088ed9-b817-476b-ac98-1a2c36352aa3": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD4 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13637", + "violations": 0 + }, + "4c5550c0-eadc-441c-ba6d-c0110c392f8f": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Blowfish symmetric-key block cipher.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13651", + "violations": 0 + }, + "4e5ba37e-555d-4acb-b16c-4d7466134b67": { + "category": "file", + "description": "Queries the file type of a file.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13441", + "violations": 0 + }, + "50876364-4b6e-43f6-897f-14dccbf5f264": { + "category": "execution", + "description": "Tampers with module search locations.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12678", + "violations": 0 + }, + "514cd419-1517-412f-bc58-88bce18c05c5": { + "category": "behavior", + "description": "Retrieves the position of the mouse cursor.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13411", + "violations": 0 + }, + "56428a7b-a4b9-4849-889e-a6cde5be44c1": { + "category": "file", + "description": "Flushes the file's buffer to disk.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13407", + "violations": 0 + }, + "67c57e07-5341-4fdb-974f-34e910b68027": { + "category": "network", + "description": "Loads additional networking APIs.", + "occurrences": 2, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH16334", + "violations": 0 + }, + "68ae7f46-8f79-4596-aae7-998d2f7c1e47": { + "category": "settings", + "description": "Enumerates system variables.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19547", + "violations": 0 + }, + "695157b9-5aeb-48bb-966a-044475deca20": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE-512 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13632", + "violations": 0 + }, + "6a940913-b66f-46d2-8000-9deff3e722ba": { + "category": "execution", + "description": "Reads data from the STDIN stream.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13432", + "violations": 0 + }, + "6adaa089-f68d-49e2-b668-43d49a8f54ba": { + "category": "file", + "description": "Reads from files.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13328", + "violations": 0 + }, + "6cef43ed-1953-49b8-b6aa-cfbc8766ece0": { + "category": "search", + "description": "Enumerates user locale information.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19548", + "violations": 0 + }, + "6d356fad-eda5-4fd8-9bba-838f41b0721a": { + "category": "file", + "description": "Queries the size of a file.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13410", + "violations": 0 + }, + "6e7f10ce-83a6-410a-9d62-bbb646700cf5": { + "category": "steal", + "description": "Retrieves text from the clipboard.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13272", + "violations": 0 + }, + "6eab9f89-2e22-4095-8aee-dbe31d73fc0f": { + "category": "execution", + "description": "Releases a mutual exclusion (mutex) lock.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13415", + "violations": 0 + }, + "6f6a049a-4d52-4b0c-9a5a-45171e6b49ee": { + "category": "execution", + "description": "Loads additional APIs.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13334", + "violations": 0 + }, + "70e3f0e6-75b1-4ae1-9064-43460be82ca3": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-512 hash function, from the SHA-2 hash family.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13647", + "violations": 0 + }, + "738dcee7-b8b1-450d-9e5c-f3786f67bec2": { + "category": "execution", + "description": "Contains a reference to a common dynamic library or an executable file.", + "occurrences": 13, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13314", + "violations": 0 + }, + "77e80d42-0a7a-4bc0-bad6-20c58fcea13c": { + "category": "search", + "description": "Reads path to temporary file location on Windows.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13388", + "violations": 0 + }, + "79206a0c-6ece-4036-a012-a8449de923a2": { + "category": "execution", + "description": "Contains reference to kernel32.dll which is Windows NT BASE API Client DLL.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12842", + "violations": 0 + }, + "7a12ce24-2b2a-45b6-8b65-a7c4d43084d3": { + "category": "monitor", + "description": "Tampers with keyboard/mouse status.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12670", + "violations": 0 + }, + "7e36b1ea-89c5-4c49-9e4d-b3db0f894ec4": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the HAVAL hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13634", + "violations": 0 + }, + "82b043a4-584b-4061-9445-1a4388a55b8a": { + "category": "permissions", + "description": "Enumerates user/account privilege information.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19330", + "violations": 0 + }, + "830168a6-a330-4635-832c-8a60ae3adfc5": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE-384 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13631", + "violations": 0 + }, + "861eecec-50f7-4d3f-97a2-74f1de1e7d56": { + "category": "monitor", + "description": "Logs timestamped data to file.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13403", + "violations": 0 + }, + "884510b9-65e8-4509-95dd-ed69bffa04c5": { + "category": "file", + "description": "Changes the size of a file.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13442", + "violations": 0 + }, + "8ac99d4f-e672-47eb-9215-1b8e7b94d014": { + "category": "monitor", + "description": "Takes screenshots.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12590", + "violations": 0 + }, + "8b1d96aa-cd7a-4015-9c77-1366331e3e91": { + "category": "execution", + "description": "Uses pipes for interprocess communication.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13378", + "violations": 0 + }, + "91161bc1-3778-4100-9560-373c2553dbf6": { + "category": "registry", + "description": "Opens registry keys.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13288", + "violations": 0 + }, + "915319fb-5ace-4dd4-a110-6a7a29ac5e94": { + "category": "settings", + "description": "Tampers with system environment variables.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12739", + "violations": 0 + }, + "9196cfd8-3ea8-4609-a185-41301334c9f5": { + "category": "network", + "description": "Contains URLs.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH16331", + "violations": 0 + }, + "9796b0b8-29e0-4214-80fb-caa53ec95068": { + "category": "registry", + "description": "Enumerates the values of a registry key.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19456", + "violations": 0 + }, + "982ffb96-a550-46f5-8922-65a07ccd3910": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the base64 binary-to-text encoding algorithm.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13760", + "violations": 0 + }, + "9c0c8959-4f70-4cf6-9b44-6472be423e9c": { + "category": "execution", + "description": "Loads additional libraries.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12406", + "violations": 0 + }, + "9ce56620-a342-4b56-8624-7c55a96332f8": { + "category": "file", + "description": "Sets or updates the file pointer position within an open file.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13405", + "violations": 0 + }, + "9dd201ff-3c4c-442c-9051-4a4bdb970cf1": { + "category": "search", + "description": "Enumerates files.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19546", + "violations": 0 + }, + "9f0db531-fe47-47dc-be38-40f9ee839b69": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the SHA-384 hash function, from the SHA-2 hash family.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13646", + "violations": 0 + }, + "9fe97c16-cd13-462d-8e07-e480045e106c": { + "category": "search", + "description": "Enumerates system information.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19295", + "violations": 0 + }, + "a098bed4-b8c9-4bef-83b6-d0f6e3d18212": { + "category": "execution", + "description": "Contains reference to advapi32.dll which is Advanced Windows 32 Base API.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12838", + "violations": 0 + }, + "a22d2449-30f4-4f47-a3c8-b73fb61fcdd9": { + "category": "steal", + "description": "Accesses clipboard.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13350", + "violations": 0 + }, + "a2f8b7e3-dd5c-4a4c-8201-8c5012ae2e9b": { + "category": "monitor", + "description": "Monitors mouse activity.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13355", + "violations": 0 + }, + "a37ec86c-6325-4e7b-b0ae-5d8d16245f79": { + "category": "file", + "description": "Opens a file for reading or writing.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13401", + "violations": 0 + }, + "a410bff3-ec64-4f56-ab61-012b5a2da5a5": { + "category": "evasion", + "description": "Contains potentially deceptive links.", + "occurrences": 1, + "priority": 8, + "references": [], + "rule_id": "BH16101", + "violations": 0 + }, + "a4510138-f980-4b9a-996b-7cd2176063d8": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the Salsa20 stream cipher.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13682", + "violations": 0 + }, + "a47c377e-dea6-4674-adce-7c96a130c014": { + "category": "file", + "description": "Reads from files in Windows system directories.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13336", + "violations": 0 + }, + "a4a9afcf-9b36-445f-875f-e8b0d4ed6033": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the MD5 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13638", + "violations": 0 + }, + "a7c32356-1a52-44ca-a8d1-c6799eb21516": { + "category": "file", + "description": "Deletes a file/directory.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12223", + "violations": 0 + }, + "b32b5cd8-fa1a-4c3a-85a7-4b53fea9a50e": { + "category": "signature", + "description": "Contains patterns identifying the constants related to the BLAKE2 hash function.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13628", + "violations": 0 + }, + "b436bc14-fac6-48ac-b443-a122788b358e": { + "category": "registry", + "description": "Accesses/modifies registry.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13330", + "violations": 0 + }, + "b4946ac7-16b0-44ec-8da8-87c3266fe9ab": { + "category": "network", + "description": "Contains generic SQL database queries.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13368", + "violations": 0 + }, + "b66626f5-4106-45f5-a537-0bb64a321c5b": { + "category": "file", + "description": "Creates/opens files in Windows system directories.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13335", + "violations": 0 + }, + "badfeec1-86b2-47ea-a338-96c7c5d6b2d8": { + "category": "search", + "description": "Retrieves keyboard layout list.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13394", + "violations": 0 + }, + "bdbba796-2e76-4f1b-941f-28046aa9d978": { + "category": "registry", + "description": "Enumerates registry keys.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH19536", + "violations": 0 + }, + "c81810ae-6f20-456e-9fd3-b314c3f981de": { + "category": "file", + "description": "Deletes files in Windows system directories.", + "occurrences": 1, + "priority": 7, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12237", + "violations": 0 + }, + "cd46a344-aa38-4c5f-895c-3c02050f9a83": { + "category": "search", + "description": "Gets the current working directory.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13419", + "violations": 0 + }, + "d044ee29-4736-4b60-866b-3e3cb9f6be97": { + "category": "execution", + "description": "Executes a file.", + "occurrences": 1, + "priority": 6, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13331", + "violations": 0 + }, + "d47e9a51-df83-49cd-89b6-3cd97b6f67cb": { + "category": "registry", + "description": "Creates registry keys.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12216", + "violations": 0 + }, + "d5ffcd61-6bbf-4ad2-971b-8a59e019a7fe": { + "category": "evasion", + "description": "Detects presence of debuggers.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12805", + "violations": 0 + }, + "d75c5f94-8c58-47a5-80df-f9bc0a569f81": { + "category": "file", + "description": "Creates/Opens a file.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13327", + "violations": 0 + }, + "d891adde-05d0-4c66-886e-957c720ee86d": { + "category": "anomaly", + "description": "Writes text to the clipboard.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13429", + "violations": 0 + }, + "dd3f911d-92e5-4f45-9d6b-82638894cf02": { + "category": "file", + "description": "Writes to files in Windows system directories.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12820", + "violations": 0 + }, + "e11e6b00-391a-4d22-af93-d29db581b27d": { + "category": "memory", + "description": "Allocates additional memory in the calling process.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13404", + "violations": 0 + }, + "e361e79c-3e81-42ac-85a9-7844958b55d7": { + "category": "search", + "description": "Checks operating system version.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13380", + "violations": 0 + }, + "ec9a7d81-2417-4e6c-b5bf-f081e48595ae": { + "category": "file", + "description": "Changes the current directory.", + "occurrences": 1, + "priority": 3, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13423", + "violations": 0 + }, + "eca509a5-7561-4a1a-811c-56bdb84b417b": { + "category": "registry", + "description": "Closes a previously open registry key.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13406", + "violations": 0 + }, + "edd00c84-2a89-4ce1-8b75-3d141eb49e8d": { + "category": "anomaly", + "description": "Contains a reference to ActiveX GUID with the Kill-Bit flag set.", + "occurrences": 1, + "priority": 5, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13395", + "violations": 0 + }, + "f0b03f29-f833-49e3-bc80-adfa6dd6e884": { + "category": "execution", + "description": "Displays a dialog box with a message.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13408", + "violations": 0 + }, + "f820dfe7-4fe9-4f97-a8c8-55180f09a811": { + "category": "search", + "description": "Reads paths to system directories on Windows.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13387", + "violations": 0 + }, + "fa3962f9-0d31-4a6f-9fa9-0a2b74e14902": { + "category": "monitor", + "description": "Monitors keyboard strokes.", + "occurrences": 1, + "priority": 4, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH12432", + "violations": 0 + }, + "fc788bc0-a65c-4c88-9534-2137a003ae1a": { + "category": "file", + "description": "Closes a previously open file.", + "occurrences": 1, + "priority": 1, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH13434", + "violations": 0 + }, + "fca7792b-1749-4f93-9528-8fee4b3544f0": { + "category": "network", + "description": "Accesses PuTTY registry keys.", + "occurrences": 1, + "priority": 2, + "references": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ], + "rule_id": "BH17301", + "violations": 0 + } + }, + "licenses": { + "LicenseRef-rlsecure-microsoft-software-license-terms": { + "audit": null, + "family": "Proprietary", + "violations": [] + }, + "MIT": { + "audit": null, + "family": "Permissive", + "violations": [] + } + }, + "ml_models": null, + "secrets": null, + "services": null, + "violations": { + "183b7599-1c52-4064-858a-ead0932003ac": { + "audit": null, + "category": "signatures", + "description": "Detected digital signatures that rely on a weak digest algorithm for integrity validation.", + "effort": "medium", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "rule_id": "SQ20119", + "severity": "low", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "265d60a1-f34d-4ce4-82e5-3a7fdb7468c8": { + "audit": null, + "category": "vulnerabilities", + "description": "Detected presence of medium severity vulnerabilities.", + "effort": "high", + "enabled": true, + "priority": 2, + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "rule_id": "SQ31106", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "89c3053e-a25f-4346-a861-95fcf3946078": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement long jump control flow vulnerability mitigation protection.", + "effort": "medium", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "rule_id": "SQ14127", + "severity": "low", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "d610ce5b-9c65-42a6-848b-bd03cac786a4": { + "audit": null, + "category": "hardening", + "description": "Detected Windows executable files that do not implement CFG vulnerability mitigation protection.", + "effort": "medium", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "rule_id": "SQ14122", + "severity": "medium", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + }, + "edd00600-f73a-4c2f-a2a9-7ca0de0c3bd4": { + "audit": null, + "category": "hunting", + "description": "Detected presence of files containing URLs that use non-standard ports.", + "effort": "high", + "enabled": true, + "priority": 3, + "references": { + "component": [ + "3a6f60d3-10d0-54bf-be31-a62c754313fb", + "7756f17e-35e9-5083-9aff-eecf53ff5afc", + "b41bd087-da2a-5b89-92b3-4b9e2465bd18" + ] + }, + "rule_id": "TH17115", + "severity": "low", + "statistics": { + "applicable": 3, + "enforcements": 0, + "exclusions": 0, + "violations": 3 + }, + "status": "pass" + }, + "f58959f7-ef29-42b5-9b41-65dd49420de4": { + "audit": null, + "category": "signatures", + "description": "Detected digital signatures that have not been performed with an extended validation certificate.", + "effort": "high", + "enabled": true, + "priority": 4, + "references": { + "component": [ + "023dcfaf-b24e-568c-9948-0a6dcd4cfe93" + ] + }, + "rule_id": "SQ20121", + "severity": "low", + "statistics": { + "applicable": 1, + "enforcements": 0, + "exclusions": 0, + "violations": 1 + }, + "status": "pass" + } + }, + "vulnerabilities": { + "CVE-2024-31497": { + "cvss": { + "baseScore": "5.9", + "metrics": [ + [ + "Attack Vector", + "Network" + ], + [ + "Attack Complexity", + "High" + ], + [ + "Privileges Required", + "None" + ], + [ + "User Interaction", + "None" + ], + [ + "Scope", + "Unchanged" + ], + [ + "Confidentiality Impact", + "High" + ], + [ + "Integrity Impact", + "None" + ], + [ + "Availability Impact", + "None" + ] + ], + "version": 3 + }, + "exploit": [ + "EXISTS", + "FIXABLE" + ], + "name": "", + "sources": [ + "NVD" + ], + "violations": [ + "SQ31106" + ] + } + } + } + }, + "schema": 3, + "timestamp": "2025-04-14T10:21:15+02:00", + "version": "5.3.0.115" +} diff --git a/unittests/tools/test_reversinglabs_spectraassure_parser.py b/unittests/tools/test_reversinglabs_spectraassure_parser.py new file mode 100644 index 00000000000..c0078a36ad4 --- /dev/null +++ b/unittests/tools/test_reversinglabs_spectraassure_parser.py @@ -0,0 +1,74 @@ +from dojo.models import Finding, Test +from dojo.tools.reversinglabs_spectraassure.parser import ReversinglabsSpectraassureParser +from unittests.dojo_test_case import DojoTestCase, get_unit_tests_scans_path + +""" +run with: + +./run-unittest.sh --test-case + unittests.tools.test_reversinglabs_spectraassure_parser.TestReversingLabsSpectraAssureParser + +FD13-FullUSb.zip: finds no vulnerabilities +putty_win_x64-0.80.exe: finds only one vulnerability +HxDSetup_2.5.0.exe: has multiple components with the same name but different sha256 (different languages) + +""" + +_WHERE = "reversinglabs_spectraassure" + +_FILES = [ + "FD13-FullUSB.zip-report.rl.json", # No Vulnerabilities + "putty_win_x64-0.80.exe-report.rl.json", # One vulnerability + "HxDSetup_2.5.0.exe-report.rl.json", # Multiple with identical component name but different sha256 +] + + +# mypy gives: error: Class cannot subclass "DojoTestCase" (has type "Any") [misc] +class TestReversingLabsSpectraAssureParser(DojoTestCase): # type: ignore[misc] + def common_checks(self, finding: Finding) -> None: + self.assertLessEqual(len(finding.title), 250) + self.assertIn(finding.severity, Finding.SEVERITIES) + if finding.cwe: + self.assertIsInstance(finding.cwe, int) + self.assertEqual(True, finding.static_finding) # by specification + self.assertEqual(False, finding.dynamic_finding) # by specification + + def test_parse_file_with_no_vuln(self) -> None: + with (get_unit_tests_scans_path(_WHERE) / "FD13-FullUSB.zip-report.rl.json").open(encoding="utf-8") as testfile: + parser = ReversinglabsSpectraassureParser() + findings = parser.get_findings( + testfile, + Test(), + ) + self.assertEqual(0, len(findings)) + for finding in findings: + self.common_checks(finding) + self.assertEqual(1, len(finding.unsaved_vulnerability_ids)) + + def test_parse_file_with_one_vuln(self) -> None: + with (get_unit_tests_scans_path(_WHERE) / "putty_win_x64-0.80.exe-report.rl.json").open( + encoding="utf-8", + ) as testfile: + parser = ReversinglabsSpectraassureParser() + findings = parser.get_findings( + testfile, + Test(), + ) + self.assertEqual(1, len(findings)) + for finding in findings: + self.common_checks(finding) + self.assertEqual(1, len(finding.unsaved_vulnerability_ids)) + + def test_parse_file_with_many_vulns(self) -> None: + with (get_unit_tests_scans_path(_WHERE) / "HxDSetup_2.5.0.exe-report.rl.json").open( + encoding="utf-8", + ) as testfile: + parser = ReversinglabsSpectraassureParser() + findings = parser.get_findings( + testfile, + Test(), + ) + self.assertEqual(12, len(findings)) + for finding in findings: + self.common_checks(finding) + self.assertEqual(1, len(finding.unsaved_vulnerability_ids))