Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an add-on pipeline for collecting dwarfs from elfs #1068

Merged
merged 15 commits into from
Feb 19, 2024
Prev Previous commit
Next Next commit
Fix tests
Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
  • Loading branch information
TG1999 committed Feb 19, 2024
commit 5d0d4dff8bb09457b6f866134652ad916b791b4a
2 changes: 1 addition & 1 deletion scanpipe/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1955,7 +1955,7 @@ def elfs(self):
return (
self.files()
.filter(
file_type__istartswith="elf",
file_type__istartswith="ELF",
)
.filter(
Q(file_type__icontains="executable")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ scancodeio_pipelines =
analyze_root_filesystem_or_vm_image = scanpipe.pipelines.root_filesystem:RootFS
analyze_windows_docker_image = scanpipe.pipelines.docker_windows:DockerWindows
find_vulnerabilities = scanpipe.pipelines.find_vulnerabilities:FindVulnerabilities
inspect_elf_binaries = scanpipe.pipelines.inspect_elf_binaries:InspectElfBinaries
inspect_elf_binaries = scanpipe.pipelines.inspect_elf_binaries:InspectELFBinaries
inspect_packages = scanpipe.pipelines.inspect_packages:InspectPackages
load_inventory = scanpipe.pipelines.load_inventory:LoadInventory
load_sbom = scanpipe.pipelines.load_sbom:LoadSBOM
Expand Down
Loading