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

Track executables with setuid and setgid flags #1707

Merged
merged 4 commits into from
Mar 27, 2025
Merged

Conversation

prabhu
Copy link
Collaborator

@prabhu prabhu commented Mar 26, 2025

In container SBOMs, cdxgen will now track executables with setuid and setgid bits.

The property names are internal:has_setuid and internal:has_setgid.

{
      "name": "ps",
      "type": "file",
      "purl": "pkg:generic/ps",
      "bom-ref": "pkg:generic/ps",
      "hashes": [
        {
          "alg": "MD5",
          "content": "ad3c7574d6c79888c0c1603e5d131016"
        },
        {
          "alg": "SHA-1",
          "content": "5f8f7fa276da206cec1d6df090200ddeca599a11"
        }
      ],
      "properties": [
        {
          "name": "SrcFile",
          "value": "/bin/ps"
        },
        {
          "name": "internal:is_executable",
          "value": "true"
        },
        {
          "name": "internal:has_setuid",
          "value": "true"
        }
      ],

SCA tools could use this information to determine reachability, container escape, and file persistence.

Signed-off-by: Prabhu Subramanian <[email protected]>
@prabhu
Copy link
Collaborator Author

prabhu commented Mar 26, 2025

Pass --json-pretty to get pretty printed boms.

@prabhu
Copy link
Collaborator Author

prabhu commented Mar 26, 2025

{
      "name": "write",
      "type": "file",
      "purl": "pkg:generic/write",
      "bom-ref": "pkg:generic/write",
      "hashes": [
        {
          "alg": "MD5",
          "content": "bc3f6f1a2729a65e2cd4d02d404fe83a"
        },
        {
          "alg": "SHA-1",
          "content": "0e59fe552179c48b126a3342445a9d53339221f4"
        }
      ],
      "properties": [
        {
          "name": "SrcFile",
          "value": "/usr/bin/write"
        },
        {
          "name": "internal:is_executable",
          "value": "true"
        },
        {
          "name": "internal:has_setgid",
          "value": "true"
        }
      ],

@prabhu prabhu merged commit c32b2b6 into master Mar 27, 2025
31 checks passed
@prabhu prabhu deleted the feature/setuid-checks branch March 27, 2025 05:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant