{"id":276,"date":"2026-08-05T08:16:17","date_gmt":"2026-08-05T08:16:17","guid":{"rendered":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/"},"modified":"2026-08-05T08:16:17","modified_gmt":"2026-08-05T08:16:17","slug":"your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026","status":"publish","type":"post","link":"https:\/\/wp.spain2.com\/es\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/","title":{"rendered":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026"},"content":{"rendered":"<p>In July 2026, the news hit the DevOps world like a freight train: an <strong>intrusion at Hugging Face<\/strong>, one of the most trusted names in AI infrastructure, became the most-discussed reliability story of the month on Hacker News. Days later, researchers disclosed the <strong>ChainDrop npm campaign<\/strong> and a compromise of the <strong>keyv<\/strong> package \u2014 a dependency with over 127 million weekly downloads. None of these were Hollywood-style attacks on fortified enterprise fortresses. They were supply chain attacks, and they succeeded because somewhere in the chain, a small team trusted the wrong artifact.<\/p>\n<p>Here is the uncomfortable truth for SMBs: <strong>you are the primary target.<\/strong> Attackers know large enterprises have SBOM mandates, signing pipelines, and dedicated AppSec teams. Your two-person DevOps team? It probably builds containers, pushes them to a registry, and deploys without ever asking <em>who signed this image<\/em> or <em>what is actually inside it<\/em>.<\/p>\n<p>This guide gives you a pragmatic, open-source supply chain security program: generate SBOMs with <code>syft<\/code>, scan them with <code>grype<\/code>, sign images with <strong>Sigstore<\/strong>, and enforce verification in CI and at runtime. No enterprise budget required.<\/p>\n<h2>Why 2026&#8217;s Attacks Should Scare Every SMB<\/h2>\n<p>Modern attacks rarely target your servers directly anymore. Instead, they target <strong>the software you build on top of<\/strong>. The typical chain looks like this:<\/p>\n<ol>\n<li>An attacker compromises a popular open-source package or a maintainer&#8217;s account.<\/li>\n<li>A malicious version is published and pulled by thousands of builds \u2014 including yours.<\/li>\n<li>The poisoned code steals credentials, injects backdoors, or ships in your container image to production.<\/li>\n<li>Your customers, your data, and your reputation are the casualties \u2014 but the &#8220;breach&#8221; happened upstream, in a repo you never audited.<\/li>\n<\/ol>\n<p>Worse: in containerized stacks, the risk compounds. A base image pulled from a public registry can contain vulnerable system libraries, and a single compromised build tool in your pipeline can sign its own malicious output. If you cannot answer <em>&#8220;what is in this image, who built it, and can I prove neither was tampered with?&#8221;<\/em> \u2014 you are running on trust, not security.<\/p>\n<p>This is exactly the gap our <a href=\"https:\/\/wp.spain2.com\/devsecops-for-smbs-automating-security-in-your-ci-cd-pipeline-without-an-enterprise-budget\/\">DevSecOps for SMBs guide<\/a> starts to close with scanning and shift-left checks. What follows is the next layer: <strong>artifact integrity<\/strong>.<\/p>\n<h2>Step 1: Generate an SBOM for Every Artifact<\/h2>\n<p>An SBOM (Software Bill of Materials) is exactly what it sounds like: a machine-readable inventory of every component in your software \u2014 libraries, system packages, language runtimes, and their versions. The two dominant formats are <strong>SPDX<\/strong> and <strong>CycloneDX<\/strong>. You cannot secure what you cannot see, and you cannot scan what you cannot enumerate.<\/p>\n<p><a href=\"https:\/\/github.com\/anchore\/syft\">Syft<\/a> is the de facto open-source tool for this. Generate an SBOM for a container image or a source tree in one command:<\/p>\n<pre><code># SBOM for a container image (CycloneDX JSON)\nsyft packages yourregistry\/yourorg\/app:v1.2.3 -o cyclonedx-json &gt; sbom.json\n\n# SBOM for a local codebase (SPDX JSON)\nsyft packages .\/src -o spdx-json &gt; sbom.spdx.json\n\n# Quick human-readable inventory\nsyft packages yourregistry\/yourorg\/app:v1.2.3 -o table<\/code><\/pre>\n<p>Then scan that SBOM for known vulnerabilities with <a href=\"https:\/\/github.com\/anchore\/grype\">Grype<\/a>:<\/p>\n<pre><code>grype sbom.json -o table\n\n# Fail the build on high-severity findings\ngrype sbom.json --fail-on high -o table<\/code><\/pre>\n<p>Two habits make this stick:<\/p>\n<ul>\n<li><strong>Generate the SBOM at build time<\/strong>, in CI, from the exact artifacts you publish \u2014 not from a snapshot taken later.<\/li>\n<li><strong>Attach the SBOM to the image<\/strong> in your registry using OCI artifacts, so anyone (or any policy engine) can pull it later: <code>cosign attach sbom --sbom sbom.json yourregistry\/yourorg\/app:v1.2.3<\/code><\/li>\n<\/ul>\n<h2>Step 2: Sign Your Images with Sigstore \u2014 No Keys to Lose<\/h2>\n<p>Scanning tells you what is in the image. <strong>Signing tells you who built it and that it hasn&#8217;t been tampered with since.<\/strong> Traditional signing required managing private keys \u2014 and a leaked key is worse than no key at all. <a href=\"https:\/\/www.sigstore.dev\/\">Sigstore<\/a> fixes this with <strong>keyless signing<\/strong>: your CI system&#8217;s OpenID Connect (OIDC) identity (e.g., from GitHub Actions) becomes the signing credential, and the certificate is short-lived and automatically audited to a public transparency log.<\/p>\n<p>With <a href=\"https:\/\/github.com\/sigstore\/cosign\">Cosign<\/a> (v2+, where keyless is the default), signing a container image is one command:<\/p>\n<pre><code># Keyless signing \u2014 CI identity becomes the certificate\ncosign sign ghcr.io\/yourorg\/app:v1.2.3\n\n# Classic key pair (still useful for air-gapped registries)\ncosign generate-key-pair\ncosign sign --key cosign.key ghcr.io\/yourorg\/app:v1.2.3<\/code><\/pre>\n<p>In a GitHub Actions workflow, the full SBOM + scan + sign sequence fits in a few steps:<\/p>\n<pre><code>jobs:\n  build-and-sign:\n    runs-on: ubuntu-latest\n    permissions:\n      id-token: write   # required for keyless signing\n      contents: read\n    steps:\n      - uses: actions\/checkout@v4\n      - name: Build image\n        run: docker build -t ghcr.io\/${{ github.repository }}:${{ github.sha }} .\n      - name: Generate SBOM\n        run: syft packages ghcr.io\/${{ github.repository }}:${{ github.sha }} -o cyclonedx-json &gt; sbom.json\n      - name: Scan SBOM\n        run: grype sbom.json --fail-on high -o table\n      - name: Push image\n        run: docker push ghcr.io\/${{ github.repository }}:${{ github.sha }}\n      - name: Sign image\n        run: cosign sign --yes ghcr.io\/${{ github.repository }}:${{ github.sha }}<\/code><\/pre>\n<p>Anyone can now verify the artifact came from your workflow \u2014 not from a compromised laptop or a rogue maintainer&#8217;s account:<\/p>\n<pre><code>cosign verify ghcr.io\/yourorg\/app:v1.2.3 \\\n  --certificate-identity-regexp \"https:\/\/github.com\/yourorg\/*\" \\\n  --certificate-oidc-issuer \"https:\/\/token.actions.githubusercontent.com\"<\/code><\/pre>\n<h2>Step 3: Enforce Verification in CI and at Runtime<\/h2>\n<p>Signing only helps if you <em>verify<\/em> \u2014 automatically, every time. Two enforcement points matter:<\/p>\n<h3>In the pipeline: verify before deploy<\/h3>\n<pre><code># CI gate: the image must be signed by your workflow AND pass scanning\ncosign verify --certificate-identity-regexp \"https:\/\/github.com\/yourorg\/*\" \\\n  --certificate-oidc-issuer \"https:\/\/token.actions.githubusercontent.com\" \\\n  ghcr.io\/yourorg\/app:v1.2.3\ngrype ghcr.io\/yourorg\/app:v1.2.3 --fail-on high -o table<\/code><\/pre>\n<h3>In the cluster: reject unsigned images at admission<\/h3>\n<p>Your Kubernetes cluster should refuse to run images that don&#8217;t meet your policy. An admission controller like <a href=\"https:\/\/kyverno.io\/\">Kyverno<\/a> (the same approach we use in our <a href=\"https:\/\/wp.spain2.com\/policy-as-code-with-opa-a-practical-guide-for-smb-kubernetes-security-and-compliance-in-2026\/\">Policy as Code with OPA guide<\/a>) makes this a declarative policy:<\/p>\n<pre><code>apiVersion: kyverno.io\/v1\nkind: ClusterPolicy\nmetadata:\n  name: require-signed-images\nspec:\n  validationFailureAction: Enforce\n  rules:\n    - name: verify-signature\n      match:\n        any:\n          - resources:\n              kinds: [\"Pod\"]\n      verifyImages:\n        - image: \"ghcr.io\/yourorg\/*\"\n          key: |\n            -----BEGIN PUBLIC KEY-----\n            MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE...\n            -----END PUBLIC KEY-----<\/code><\/pre>\n<p>Combine this with strict <a href=\"https:\/\/wp.spain2.com\/your-secrets-management-is-a-breach-waiting-to-happen-how-smbs-can-secure-credentials-without-enterprise-tools\/\">secrets management<\/a> so build credentials can&#8217;t be exfiltrated, and you have closed the loop: <strong>only verified, scanned, signed artifacts from your own pipelines can reach production.<\/strong><\/p>\n<h2>The Minimum Viable Program: A 6-Item Checklist<\/h2>\n<ol>\n<li>Generate an SBOM for every image and release artifact (syft).<\/li>\n<li>Scan every SBOM in CI and fail on high severity (grype).<\/li>\n<li>Sign every release with Sigstore keyless signing (cosign).<\/li>\n<li>Verify signatures as a deploy gate in CI.<\/li>\n<li>Enforce image verification in the cluster with Kyverno.<\/li>\n<li>Pin base images by digest and pin dependencies with lockfiles, so &#8220;latest&#8221; can never surprise you.<\/li>\n<\/ol>\n<p>You can implement all six items this quarter with free, open-source tools. The hardest part isn&#8217;t the tooling \u2014 it&#8217;s making the decision to stop trusting and start verifying.<\/p>\n<p>If you&#8217;d like a second pair of eyes on your build and deployment pipeline \u2014 or help rolling out SBOMs, signing, and admission policies across your stack \u2014 <a href=\"https:\/\/wp.spain2.com\/reserva-cita\">book a free consultation with our team<\/a> and we&#8217;ll map out exactly what your SMB needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hugging Face and the 2026 NPM attacks prove SMBs are supply-chain targets. Generate SBOMs, sign images with Sigstore, and enforce verification in CI.<\/p>","protected":false},"author":0,"featured_media":278,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2],"tags":[109,107,108,106],"class_list":["post-276","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops-engineering","tag-cosign","tag-sbom","tag-sigstore","tag-software-supply-chain"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wp.spain2.com\/es\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM\" \/>\n<meta property=\"og:description\" content=\"Hugging Face and the 2026 NPM attacks prove SMBs are supply-chain targets. Generate SBOMs, sign images with Sigstore, and enforce verification in CI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wp.spain2.com\/es\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/\" \/>\n<meta property=\"og:site_name\" content=\"SPAIN2.COM\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-05T08:16:17+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026\",\"datePublished\":\"2026-08-05T08:16:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/\"},\"wordCount\":894,\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/featured_a.png\",\"keywords\":[\"cosign\",\"SBOM\",\"sigstore\",\"software supply chain\"],\"articleSection\":[\"DevOps Engineering\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/\",\"name\":\"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/featured_a.png\",\"datePublished\":\"2026-08-05T08:16:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/featured_a.png\",\"contentUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/featured_a.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wp.spain2.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#website\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"name\":\"SPAIN2.COM\",\"description\":\"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs\",\"publisher\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wp.spain2.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#organization\",\"name\":\"SPAIN2.COM\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"contentUrl\":\"https:\\\/\\\/wp.spain2.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/spain2-logo.svg\",\"caption\":\"SPAIN2.COM\"},\"image\":{\"@id\":\"https:\\\/\\\/wp.spain2.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wp.spain2.com\/es\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/","og_locale":"es_ES","og_type":"article","og_title":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM","og_description":"Hugging Face and the 2026 NPM attacks prove SMBs are supply-chain targets. Generate SBOMs, sign images with Sigstore, and enforce verification in CI.","og_url":"https:\/\/wp.spain2.com\/es\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/","og_site_name":"SPAIN2.COM","article_published_time":"2026-08-05T08:16:17+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#article","isPartOf":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/"},"author":{"name":"","@id":""},"headline":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026","datePublished":"2026-08-05T08:16:17+00:00","mainEntityOfPage":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/"},"wordCount":894,"publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"image":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#primaryimage"},"thumbnailUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/08\/featured_a.png","keywords":["cosign","SBOM","sigstore","software supply chain"],"articleSection":["DevOps Engineering"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/","url":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/","name":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026 - SPAIN2.COM","isPartOf":{"@id":"https:\/\/wp.spain2.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#primaryimage"},"image":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#primaryimage"},"thumbnailUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/08\/featured_a.png","datePublished":"2026-08-05T08:16:17+00:00","breadcrumb":{"@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#primaryimage","url":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/08\/featured_a.png","contentUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/08\/featured_a.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/wp.spain2.com\/your-software-supply-chain-is-under-attack-how-smbs-can-secure-builds-with-sboms-and-image-signing-in-2026\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wp.spain2.com\/"},{"@type":"ListItem","position":2,"name":"Your Software Supply Chain Is Under Attack: How SMBs Can Secure Builds with SBOMs and Image Signing in 2026"}]},{"@type":"WebSite","@id":"https:\/\/wp.spain2.com\/#website","url":"https:\/\/wp.spain2.com\/","name":"SPAIN2.COM","description":"Cloud Consulting That Delivers \u2014 DevOps, SRE &amp; Cloud Infrastructure for SMBs","publisher":{"@id":"https:\/\/wp.spain2.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wp.spain2.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/wp.spain2.com\/#organization","name":"SPAIN2.COM","url":"https:\/\/wp.spain2.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/","url":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","contentUrl":"https:\/\/wp.spain2.com\/wp-content\/uploads\/2026\/07\/spain2-logo.svg","caption":"SPAIN2.COM"},"image":{"@id":"https:\/\/wp.spain2.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/276","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/comments?post=276"}],"version-history":[{"count":0,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/posts\/276\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media\/278"}],"wp:attachment":[{"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/media?parent=276"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/categories?post=276"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.spain2.com\/es\/wp-json\/wp\/v2\/tags?post=276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}