Is your self-hosted network actually secure?
A brand new CVE-2026-40172 just dropped for Authentik, targeting Single Sign-On (SSO) gateways. Don't let hackers compromise your Proxmox cluster.More https://ww.valtersit.com/ #infosec #devops #proxmox #valtersit #CVE #CVEAlert #devsecops #hackers #sysadmins #sysadmin #developers

Inspecting the core components of a container is necessary for government compliance.
Our blog details how to address specific control families, including Configuration Management (CM-2), System Integrity (SI-2), and Access Control (AC-6), before images hit production.

https://anchore.com/blog/mapping-container-inspection-to-dow-rmf-controls/

#DevSecOps #NIST #Compliance

CISA left plain-text passwords, SSH keys, & AWS GovCloud creds in a public GitHub repo for ~6 months (with secret scanning reportedly disabled). If it can happen to the US cyber agency, it can happen to anyone.
#cybersecurity #DevSecOps #GitHubSecurity https://zurl.co/Em3WP

Kubernetes-аудит после Wiz и Prisma: как живут без CNAPP в 2026

В 2022–2024 западные CNAPP-платформы — Wiz, Prisma Cloud, Lacework — закрыли доступ для российских компаний. Сбер и Яндекс собрали свой стек на коленке, а вот у банков второго эшелона и финтеха с командой ИБ из 1-3 человек стало больно: Kubernetes в проде, аудит ФСТЭК через три месяца, а показать аудитору нечего. С 1 марта 2026 действует Приказ ФСТЭК №117, где контейнеризация впервые выделена в отдельную группу мер защиты. Рассказываю, как сейчас выглядит K8s-аудит без Wiz, что предлагают Kaspersky Container Security и НОТА КУПОЛ, и показываю OSS-инструмент, который пишу под эту задачу. Читать далееЧто показывать аудитору

https://habr.com/ru/articles/1039100/

#kubernetes #security #devsecops #фстэк #compliance #cnapp #container_security #приказ_117 #аудит #k8s

Kubernetes-аудит после Wiz и Prisma: как живут без CNAPP в 2026

Если коротко — плохо живут. Я последние полгода копаю эту тему и хочу поделиться тем, что увидел. Заодно показать инструмент, который пишу по результатам. Возможно, кто-то узнает свою ситуацию и...

Хабр

Modern CI/CD pipelines deploy code rapidly — security must move just as fast. 🔐

DevSecOps security integration enables continuous security testing across development, APIs, cloud environments, and deployment pipelines.

✅ DevSecOps Security
✅ CI/CD Security Testing
✅ Continuous Vulnerability Detection

🌐 https://www.vaptsecurity.com/devsecops-ci-cd-security-integration/

#CyberSecurity #DevSecOps #CICD #VAPT #CloudSecurity #APISecurity

The 1,468-Day Suicide Note: Why Your SPFx Build is a Security Ghost Ship

1,958 words, 10 minutes read time.

You want to talk about the stack? Fine. We’re staring down the barrel of the SharePoint Framework (SPFx) toolchain—a bloated, rotting carcass of npm dependencies that would make a seasoned systems architect weep. You haven’t even touched your keyboard to define a single props interface yet, and your Black Duck scan is already screaming like a server room with a blown coolant line. You’re looking at hundreds of “High” and “Critical” vulnerabilities, and you’re paralyzed because you know the truth: if you try to fix them, you’ll snap the brittle spine of the Microsoft build engine.

The thesis is simple: Modern web development is a house of cards built on a foundation of unvetted, legacy garbage, and your job isn’t to reach “zero vulnerabilities”—it’s to master the art of tactical risk and architectural integrity in a broken system. Most of you handle this like cowards, either ignoring the red text until it’s too late or blindly running npm audit fix --force like a child playing with a loaded gun. We are going to break down the “Dirty Third-Party” reality, the failure of the “Vendor-Locked” mindset, and the structural collapse of the transitive dependency tree.

Before we dive into the wreckage, understand this: your career lives or dies in the node_modules folder. If you don’t know what’s running on your build agent, you aren’t an engineer; you’re just a script-kiddy with a LinkedIn premium account. We’re going to look at the three primary failure points that are leaking memory and security into your professional life: the False God of the Toolchain, the Dependency Debt Trap, and the cowardice of the “Just-In-Time” Developer.

The False God of the Toolchain: Why “Out of the Box” is Already Broken

When you run @microsoft/sharepoint, you’re not just downloading a framework; you’re inviting a thousand strangers into your codebase, and half of them are carrying pathogens. The SPFx toolchain is a monolithic beast built on Gulp, Webpack, and the Yeoman generator—technologies that, in the fast-moving world of JavaScript, are practically ancient artifacts. Microsoft “locks” these versions to ensure that when you run gulp bundle, the machine actually produces a file. But that stability comes at a visceral cost: security debt.

The direct dependencies Microsoft hands you are the tip of the iceberg, but the real rot is in the transitive dependencies—the dependencies of your dependencies. You see a “High” risk in a library like minimist or ajv and your first instinct is to patch it. Don’t. You’re working in a sandbox designed by Redmond, and that sandbox has walls you didn’t build. If you force an update on a deep-level utility library to satisfy a Black Duck scan, you’ll often find that the Gulp tasks responsible for manifest generation or localized resource mapping simply stop working.

This is the hard truth of the “Vendor-Locked” reality: Microsoft values a working build over a clean scan. They are shipping you a factory floor that was built three years ago, and they expect you to produce modern results on it. If you’re a junior, you’ll panic and try to fix the factory. If you’re a veteran, you’ll realize that the factory is a controlled environment. The “High” risk vulnerabilities in the build tools—things like Regular Expression Denial of Service (ReDoS)—are technically threats, but they require an attacker to control the input to your build script. If an attacker is already sitting on your build agent, you’ve already lost the war; the “vulnerable” npm package is just a footnote in your obituary.

You have to develop the technical discipline to distinguish between “Production Risk” and “Tooling Noise.” The code that actually ships in your .sppkg file is a fraction of what lives in your node_modules. If a vulnerability exists in a library used only during the minification process, it never reaches the end user’s browser. It never touches the SharePoint REST API. It never sees the light of day. Learning to document this “Accepted Risk” is what separates the architects from the code-monkeys who just want the red lights to turn green so they can go home.

The Heft Illusion: New Engine, Old Exhaust

Heft was supposed to be the savior of the SharePoint Framework—a rigorous, multi-project build system designed to bring sanity to the chaos of the Rush Stack. But here’s the hard truth: Heft is just a high-velocity delivery system for the same legacy rot. It doesn’t matter how fast the engine turns if the fuel is contaminated. Even in the latest 2026 releases of SPFx, Heft still sits on top of a mountain of transitive dependencies that Black Duck will tear apart before you can even run your first local serve.

The problem is systemic. Heft uses a “rig” system to standardize builds across projects, but those rigs are tied to specific versions of TypeScript, ESLint, and API Documenter. When you pull down the latest SPFx version, you’re still pulling in deep-nested libraries like glob-parent, trim-newlines, or loader-utils that have CVEs dating back to when you still had hair. Microsoft’s engineers have prioritized “build reproducibility” over “security hygiene.” They want to ensure that if a developer in London and a developer in Tokyo run the same command, they get the exact same byte-for-byte output. To achieve that, they freeze the version tree, effectively preserving vulnerabilities like they’re insects in amber.

Why isn’t Microsoft fixing this? Why isn’t their omnipotent Copilot writing new packages or refactoring the dying ones? Because Microsoft is obsessed with backward compatibility. They are terrified of breaking the billions of lines of enterprise code already running in SharePoint Online. They aren’t “fixing” the old toolchain; they are abandoning it in favor of a newer, leaner SPFx CLI, but until that transition is complete, you are stuck guarding a graveyard.

If you can’t handle the cognitive dissonance of a “dirty” scan and a “clean” deployment, you aren’t ready for enterprise-scale architecture. You have to be able to look a security lead in the eye and explain that the heft-sass-plugin‘s dependency on a vulnerable version of node-sass is irrelevant because the SASS is compiled to CSS before it ever leaves your machine. Integrity in code mirrors integrity in life: it’s about knowing what truly matters and what is just noise designed to distract the weak.

The Transitive Debt Trap: 1,468 Days of Stagnation

The final insult in the SPFx ecosystem is the transitive dependency—the friend of a friend who turns out to be a thief. This is our main thesis in a nutshell: you are inheriting legacy failure. Look no further than serialize-javascript version 6.0.2. This package is a common transitive dependency in the toolchain, and it was released on May 5, 2022. As of today, May 12, 2026, that code has been sitting in your stack for exactly 1,468 days.

Think about that number. For 1,468 days, this dependency has sat unchanged while the security landscape shifted under its feet. It is the smoking gun of vendor negligence. You are running 4-year-old code in a 2026 environment, and you can’t swap it out because the rest of the factory—Heft, the compilers, the minifiers—has been “tuned” to that specific, 1,468-day-old behavior. This isn’t just “npm noise”; it is a systemic failure to maintain the very tools we use to build the future.

You might ask, “Why don’t they just use AI to fix the dead ones?” Because AI-generated patches for structural dependencies require an astronomical level of regression testing that Microsoft isn’t willing to pay for. It’s cheaper for them to let you deal with the Black Duck report than it is for them to risk an AI-generated bug in the TypeScript compiler. They’ve outsourced the headache to you. This technical debt is massive, but the psychological debt is worse. Developers who rely entirely on automated scans are outsourcing their judgment to a machine.

In the SPFx world, transitive dependencies like serialize-javascript are a test of your resolve. You have to audit the audit. You have to trace the dependency path and prove that the vulnerable code path is never actually executed. Refactoring a life is like refactoring a dependency tree. You have to identify the toxic influences that were “installed” years ago—habits, excuses, and lazy shortcuts—and you have to have the courage to cut them out, even if it feels like the whole system might crash. If you’re willing to ship a project with 400 “High” risks just because “that’s how Microsoft made it,” you’re demonstrating a lack of professional pride.

The Protocol of the Unbroken Build

We’ve stripped the SPFx toolchain down to its rusted frame. We’ve looked at the “High” risks in the npm depths, the illusion of the Heft build system, and the 1,468-day trap of transitive debt. The hard truth is that the “perfect” scan is a lie. In the real world of SharePoint architecture, you are always operating in a state of partial failure. The question is: do you have the technical and personal stability to manage that failure, or does it manage you?

Stop looking for the “Update All” button. It doesn’t exist. Your career isn’t a series of successful npm installs; it’s a series of deployments that held up under load despite the flaws in the foundation. You need to stop being a “consumer” of frameworks and start being a “governor” of your environment. When Black Duck screams, you don’t panic. You analyze. You document. You defend.

The protocol for moving forward is simple, but it requires a level of discipline most of your peers lack. First, isolate your production dependencies from your build-time tools. Second, master the overrides or resolutions field in your package.json for the 1% of vulnerabilities that actually pose a runtime threat. Third, stop making excuses. If your deployment is blocked, it’s not Microsoft’s fault—it’s your failure to communicate the technical reality to your leadership.

Get back in the trenches. Audit your node_modules. Know your enemy. And for the love of the kernel, stop running code you haven’t vetted. The system only works if you do.

Call to Action: Stop being a silent passenger in a failing pipeline.

Microsoft’s reliance on 1,468-day-old vulnerabilities isn’t just a “technical constraint”—it’s a choice to prioritize legacy convenience over your security posture. It’s time to stop making excuses for a multi-billion dollar vendor and start holding the line. Every time you accept a “High” risk in a toolchain that could be fixed with a focused sprint and a bit of Copilot-driven refactoring, you are validating mediocrity.

  • Open the Ticket: Go to the SPFx GitHub Issues and the Microsoft 365 Developer Feedback portals. Don’t just report a bug—demand a modernized, decoupled toolchain that isn’t tethered to the corpses of dead npm modules.
  • Expose the Math: Show your leadership the raw numbers. Use the “1,468-day” metric. Show them that you are being forced to defend code released half a decade ago. Let the business pressure flow upward to the vendor.
  • Refuse the Rot: If we keep quiet, the “monthly cleanup” will remain a surface-level PR stunt. Push for a toolchain where security is baked in, not patched over with waivers.
  • The “Dark Matter” of the codebase only stays dark if you refuse to shine a light on it. It’s time to stop treating Microsoft like a protected entity and start treating them like a vendor that needs to earn your trust back.

    CTA HERE

    SUPPORTSUBSCRIBECONTACT ME

    D. Bryan King

    Sources

    Disclaimer:

    The views and opinions expressed in this post are solely those of the author. The information provided is based on personal research, experience, and understanding of the subject matter at the time of writing. Readers should consult relevant experts or authorities for specific guidance related to their unique situations.

    #architect #BlackDuckScan #buildTimeDependencies #CICDSecurity #codeAudit #codingStandards #CVE #dependencyHell #dependencyRot #devdependencies #DevSecOps #EnterpriseArchitecture #Gulp #HeftBuildSystem #JavaScriptSecurity #LeadDeveloper #legacyCode #Microsoft365Development #MicrosoftToolchain #nodeModules #npmAudit #npmOverrides #npmVulnerabilities #packageLockJson #patchManagement #productionRisk #prototypePollution #ReDoS #riskMitigation #RushStack #SBOM #SCA #securityDebt #securityWaiver #serializeJavascript #SharePointDevelopment #SharePointFramework #softwareBillOfMaterials #SoftwareCompositionAnalysis #softwareEngineering #softwareSupplyChain #SPFx #technicalDebt #transitiveDependencies #TypeScriptBuild #vulnerabilityManagement #webPartSecurity #Webpack #YeomanGenerator #zeroDay
    "Rust va a salvar Linux" — Greg Kroah-Hartman. 80% menys de CVE. Zero segfaults. Que els de C plorin al seu malloc. 😎 La segona persona més influent de Linux ho ha dit a la Rust Week 2026. Preneu nota.#RustLang #Linux #DevSecOps #Programació

    [^BgTA^] :verified: :opensuse:...
    [^BgTA^] :verified: :opensuse: (@[email protected])

    "Rust va a salvar Linux" — Greg Kroah-Hartman. 80% menys de CVE. Zero segfaults. Que els de C plorin al seu malloc. 😎 La segona persona més influent de Linux ho ha dit a la Rust Week 2026. Preneu nota. #RustLang #Linux #DevSecOps #Programació

    In4Matics

    "Rust va a salvar Linux" — Greg Kroah-Hartman. 80% menys de CVE. Zero segfaults. Que els de C plorin al seu malloc. 😎

    La segona persona més influent de Linux ho ha dit a la Rust Week 2026. Preneu nota.

    #RustLang #Linux #DevSecOps #Programació

    Security Tip: Integrate container image scanning directly into your CI/CD pipeline. 🛡️

    Waiting until production to find vulnerabilities is too late. By shifting security left, you can automatically block builds that contain critical CVEs. Tools like Trivy or Grype make this easy to automate.

    Stay proactive and keep your environment secure with data from https://cvedatabase.com

    #CyberSecurity #InfoSec #DevSecOps #Docker #Containers

    CVEDatabase.com - Search & Analyze CVE Vulnerabilities

    Search and analyze CVE vulnerabilities with instant access to CVSS scores, affected products, and AI-powered remediation guidance.

    CVEDatabase.com

    Relying on fragmented security tools creates conflicting remediation priorities. What one tool considers acceptable before the build, another flags in production.

    Anchore Enterprise v6 solves this with the new Unified Asset Model. Join our June 4 webinar to see how v6 combines all of your application assets—from modern containers to legacy infrastructure and third-party SBOMs—into a single, normalized "Application Version" for unified... https://go.anchore.com/anchore-enterprise-6.html

    #DevSecOps #SupplyChainSecurity