generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added in code and tests for a new wheel file presence heuristic…
… in the pypi malware analyzer, which checks for whether a wheel file is available with the package.
- Loading branch information
Showing
6 changed files
with
305 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
src/macaron/malware_analyzer/pypi_heuristics/metadata/wheel_presence.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Copyright (c) 2024 - 2024, Oracle and/or its affiliates. All rights reserved. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/. | ||
|
||
"""The heuristic analyzer to check .whl file presence.""" | ||
|
||
import logging | ||
|
||
from macaron.errors import HeuristicAnalyzerValueError | ||
from macaron.json_tools import JsonType | ||
from macaron.malware_analyzer.pypi_heuristics.base_analyzer import BaseHeuristicAnalyzer | ||
from macaron.malware_analyzer.pypi_heuristics.heuristics import HeuristicResult, Heuristics | ||
from macaron.slsa_analyzer.package_registry.pypi_registry import PyPIPackageJsonAsset | ||
|
||
logger: logging.Logger = logging.getLogger(__name__) | ||
|
||
|
||
class WheelPresenceAnalyzer(BaseHeuristicAnalyzer): | ||
""" | ||
Analyze to see if a .whl file is available for the package. | ||
If a package is distributed with a .whl file, this heuristic passes. Otherwise, the | ||
heuristic fails. | ||
""" | ||
|
||
WHEEL: str = "bdist_wheel" | ||
|
||
def __init__(self) -> None: | ||
super().__init__( | ||
name="download_file_presence_analyzer", | ||
heuristic=Heuristics.WHEEL_PRESENCE, | ||
depends_on=None, | ||
) | ||
|
||
def analyze(self, pypi_package_json: PyPIPackageJsonAsset) -> tuple[HeuristicResult, dict[str, JsonType]]: | ||
"""Analyze the package. | ||
Parameters | ||
---------- | ||
pypi_package_json: PyPIPackageJsonAsset | ||
The PyPI package JSON asset object. | ||
Returns | ||
------- | ||
tuple[HeuristicResult, dict[str, JsonType]]: | ||
The result and related information collected during the analysis. | ||
Raises | ||
------ | ||
HeuristicAnalyzerValueError | ||
If there is no release information, or has no most recent version (if queried). | ||
""" | ||
releases = pypi_package_json.get_releases() | ||
if releases is None: # no release information | ||
raise HeuristicAnalyzerValueError("There is no information for any release of this package.") | ||
|
||
version = pypi_package_json.component.version | ||
if version is None: # check latest release version | ||
version = pypi_package_json.get_latest_version() | ||
if version is None: | ||
raise HeuristicAnalyzerValueError("There is no latest version of this package.") | ||
|
||
release_files: list[JsonType] = [] | ||
wheel_present: bool = False | ||
|
||
for release_metadata in releases[version]: | ||
if release_metadata["packagetype"] == self.WHEEL: | ||
wheel_present = True | ||
|
||
release_files.append(release_metadata["filename"]) | ||
|
||
if wheel_present: | ||
return HeuristicResult.PASS, {version: release_files} | ||
|
||
return HeuristicResult.FAIL, {version: release_files} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.