{
    "api_version": "1",
    "kind": "dse_post",
    "self": "https://update.dsesecurity.com/api/v1/posts/memory-safety-product-roadmap-procurement/",
    "item": {
        "id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
        "slug": "memory-safety-product-roadmap-procurement",
        "url": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
        "alternate_urls": {
            "markdown": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement.md",
            "json": "https://update.dsesecurity.com/api/v1/posts/memory-safety-product-roadmap-procurement/"
        },
        "title": "Make memory safety a product roadmap, not a patching promise",
        "summary": "Memory-safety flaws remain a major source of exploitable software defects. Buyers and builders should ask for an owned roadmap covering new code, legacy components, open-source dependencies, unsafe interfaces, compensating defenses, and measurable progress.",
        "format": {
            "slug": "guide",
            "name": "Guide"
        },
        "priority": {
            "slug": "advisory",
            "name": "Advisory"
        },
        "featured": false,
        "image": {
            "theme": "managed-it",
            "label": "Managed IT operations",
            "alt": "A controlled technology lifecycle progressing from assessment to approved production.",
            "card_url": "https://update.dsesecurity.com/assets/editorial/managed-it-card.webp?v=1.8.20",
            "hero_url": "https://update.dsesecurity.com/assets/editorial/managed-it-hero.webp?v=1.8.20",
            "social_url": "https://update.dsesecurity.com/assets/editorial/managed-it-social-v2.jpg?v=1.8.20",
            "width": 2400,
            "height": 1350
        },
        "topics": [
            {
                "slug": "cybersecurity",
                "name": "Cybersecurity",
                "url": "https://update.dsesecurity.com/topic/cybersecurity/"
            },
            {
                "slug": "it",
                "name": "IT",
                "url": "https://update.dsesecurity.com/topic/it/"
            }
        ],
        "author": {
            "name": "Gavin Stewart",
            "url": "https://www.linkedin.com/in/gavin-stewart-0718/",
            "type": "Person"
        },
        "publisher": {
            "name": "Detection Systems & Engineering",
            "url": "https://dsesecurity.com/"
        },
        "published_at": "2026-08-11T09:49:00+00:00",
        "modified_at": "2026-08-11T14:12:10+00:00",
        "reviewed_on": "2026-08-11",
        "reading_minutes": 4,
        "word_count": 711,
        "potentially_affected": "Custom applications, commercial software, firmware, embedded devices, network appliances, security products, open-source components, and development pipelines using memory-unsafe languages.",
        "dse_recommendation": "Inventory memory-unsafe code and dependencies, require supplier roadmaps, favor memory-safe languages for new components, isolate unavoidable unsafe code, and measure defect reduction rather than accepting general assurances.",
        "primary_source": {
            "name": "CISA and international partners: The Case for Memory Safe Roadmaps",
            "url": "https://www.cisa.gov/sites/default/files/2023-12/The-Case-for-Memory-Safe-Roadmaps-508c.pdf",
            "published_on": "2023-12-06",
            "authority": "Cybersecurity and Infrastructure Security Agency"
        },
        "publishing_principles": "https://update.dsesecurity.com/updates/dse-updates-editorial-methodology/",
        "usage_info": "https://update.dsesecurity.com/usage/",
        "copyright_notice": "Copyright © 2026 Detection Systems & Engineering. All rights reserved.",
        "content_html": "<h2>Source fact: memory-safety defects are a persistent vulnerability class</h2>\n<p>CISA, NSA, FBI, and international cybersecurity authorities describe memory-safety vulnerabilities as among the most prevalent classes of disclosed software vulnerability. Examples include buffer overflows, use-after-free errors, uninitialized memory, and double-free conditions. Successful exploitation can expose data, corrupt execution, crash a service, or allow unauthorized code execution.</p>\n\n<p>The joint guidance explains that memory-safe programming languages move much of the responsibility for valid memory access from individual developers to the language, compiler, or runtime. The agencies urge software manufacturers to create and publish memory-safety roadmaps rather than relying indefinitely on training, testing, and patches to compensate for the same recurring class of defect.</p>\n\n<p>NSA separately recommends using memory-safe languages when possible and applying code-hardening defenses when unsafe languages must remain. CISA’s analysis of critical open-source projects also emphasizes a dependency boundary: an application written in a memory-safe language may still rely on libraries or interfaces containing memory-unsafe code.</p>\n\n<h2>Source fact: memory safety is not the same as complete software security</h2>\n<p>A memory-safe language can prevent or sharply reduce specific memory-handling errors; it does not automatically prevent broken authorization, injection, insecure design, logic errors, weak cryptography, exposed secrets, or unsafe deployment. Native extensions, foreign-function interfaces, embedded libraries, and operating-system components may preserve memory-unsafe paths inside an otherwise safe product.</p>\n\n<p>A useful roadmap therefore describes boundaries and evidence. A claim that a product “uses Rust,” “uses a managed runtime,” or “has secure coding training” does not reveal which high-risk components remain unsafe, whether dependencies are covered, or whether new unsafe code is still being added.</p>\n\n<h2>DSE recommendation: establish a defensible baseline</h2>\n<p>For internally developed software, inventory languages by repository and component, including generated code, firmware, drivers, third-party libraries, native extensions, build tools, and transitive dependencies where evidence is available. Identify components exposed to untrusted network traffic, files, media, device input, or privilege boundaries. These are often better early targets than choosing projects only by line count.</p>\n\n<p>For purchased products, ask the manufacturer for a roadmap that identifies accountable leadership, scope, milestones, treatment of open-source and third-party dependencies, criteria for exceptions, and how customers will receive progress and residual-risk information. Protect legitimate proprietary details, but do not accept secrecy as a substitute for an engineering plan.</p>\n\n<h2>DSE recommendation: divide the roadmap into four workstreams</h2>\n<ol>\n<li><strong>New development.</strong> Define approved memory-safe languages and runtimes for new services, parsers, agents, and exposed components. Require an engineering exception before introducing new memory-unsafe code.</li>\n<li><strong>High-risk migration.</strong> Prioritize parsers, network-facing services, privileged components, update mechanisms, and code with a history of memory-safety defects. Rewrite bounded components through tested interfaces instead of promising an immediate whole-product rewrite.</li>\n<li><strong>Unsafe-code containment.</strong> Where migration is not yet practical, use supported compiler hardening, platform protections, sandboxing, least privilege, protocol isolation, fuzzing, static and dynamic analysis, and prompt vulnerability response.</li>\n<li><strong>Dependency governance.</strong> Track the language and maintenance status of critical dependencies, constrain unsafe interfaces, monitor vulnerabilities, and document when an upstream project—not the product team—controls remediation.</li>\n</ol>\n\n<h2>DSE recommendation: measure outcomes that customers can verify</h2>\n<p>Track the percentage of new security-sensitive components implemented without unsafe code; exposed components migrated or isolated; approved exceptions and their age; memory-safety vulnerabilities discovered in first-party and dependency code; time to remediate; fuzzing and analysis coverage; and roadmap milestones completed. Avoid rewarding raw lines rewritten if the highest-risk interfaces remain unchanged.</p>\n\n<p>Migration needs compatibility and rollback discipline. Define behavior, performance, resource, update, telemetry, and recovery acceptance tests before replacing a mature component. Preserve the ability to restore a supported version if the new implementation introduces operational risk.</p>\n\n<h2>DSE recommendation: use procurement leverage without creating false certainty</h2>\n<p>Add memory-safety questions to software and connected-device reviews. Ask whether the supplier has an executive-owned roadmap, which product layers remain memory-unsafe, how unsafe dependencies are identified, how researchers can report defects, and what support period applies to migrated and legacy components.</p>\n\n<p>Treat transparent residual risk as a sign of maturity. The objective is not a logo or an absolute claim that vulnerabilities are impossible. It is sustained reduction of an exploitable defect class, backed by architecture, milestones, testing, disclosure, and accountable ownership.</p>\n\n<h2>Official references</h2>\n<ul>\n<li><a href=\"https://www.cisa.gov/sites/default/files/2023-12/The-Case-for-Memory-Safe-Roadmaps-508c.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">CISA and partners: The Case for Memory Safe Roadmaps</a></li>\n<li><a href=\"https://www.nsa.gov/Press-Room/Digital-Media-Center/Document-Gallery/igphoto/2003210083/\" target=\"_blank\" rel=\"noopener noreferrer\">NSA: Software Memory Safety</a></li>\n<li><a href=\"https://www.cisa.gov/sites/default/files/2024-06/joint-guidance-exploring-memory-safety-in-critical-open-source-projects-508c.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">CISA and partners: Exploring Memory Safety in Critical Open Source Projects</a></li>\n<li><a href=\"https://www.cisa.gov/news-events/alerts/2025/01/17/cisa-and-fbi-release-updated-guidance-product-security-bad-practices\" target=\"_blank\" rel=\"noopener noreferrer\">CISA and FBI: Product Security Bad Practices update</a></li>\n</ul>",
        "content_text": "Source fact: memory-safety defects are a persistent vulnerability class\nCISA, NSA, FBI, and international cybersecurity authorities describe memory-safety vulnerabilities as among the most prevalent classes of disclosed software vulnerability. Examples include buffer overflows, use-after-free errors, uninitialized memory, and double-free conditions. Successful exploitation can expose data, corrupt execution, crash a service, or allow unauthorized code execution.\n\nThe joint guidance explains that memory-safe programming languages move much of the responsibility for valid memory access from individual developers to the language, compiler, or runtime. The agencies urge software manufacturers to create and publish memory-safety roadmaps rather than relying indefinitely on training, testing, and patches to compensate for the same recurring class of defect.\n\nNSA separately recommends using memory-safe languages when possible and applying code-hardening defenses when unsafe languages must remain. CISA’s analysis of critical open-source projects also emphasizes a dependency boundary: an application written in a memory-safe language may still rely on libraries or interfaces containing memory-unsafe code.\n\nSource fact: memory safety is not the same as complete software security\nA memory-safe language can prevent or sharply reduce specific memory-handling errors; it does not automatically prevent broken authorization, injection, insecure design, logic errors, weak cryptography, exposed secrets, or unsafe deployment. Native extensions, foreign-function interfaces, embedded libraries, and operating-system components may preserve memory-unsafe paths inside an otherwise safe product.\n\nA useful roadmap therefore describes boundaries and evidence. A claim that a product “uses Rust,” “uses a managed runtime,” or “has secure coding training” does not reveal which high-risk components remain unsafe, whether dependencies are covered, or whether new unsafe code is still being added.\n\nDSE recommendation: establish a defensible baseline\nFor internally developed software, inventory languages by repository and component, including generated code, firmware, drivers, third-party libraries, native extensions, build tools, and transitive dependencies where evidence is available. Identify components exposed to untrusted network traffic, files, media, device input, or privilege boundaries. These are often better early targets than choosing projects only by line count.\n\nFor purchased products, ask the manufacturer for a roadmap that identifies accountable leadership, scope, milestones, treatment of open-source and third-party dependencies, criteria for exceptions, and how customers will receive progress and residual-risk information. Protect legitimate proprietary details, but do not accept secrecy as a substitute for an engineering plan.\n\nDSE recommendation: divide the roadmap into four workstreams\n\nNew development. Define approved memory-safe languages and runtimes for new services, parsers, agents, and exposed components. Require an engineering exception before introducing new memory-unsafe code.\nHigh-risk migration. Prioritize parsers, network-facing services, privileged components, update mechanisms, and code with a history of memory-safety defects. Rewrite bounded components through tested interfaces instead of promising an immediate whole-product rewrite.\nUnsafe-code containment. Where migration is not yet practical, use supported compiler hardening, platform protections, sandboxing, least privilege, protocol isolation, fuzzing, static and dynamic analysis, and prompt vulnerability response.\nDependency governance. Track the language and maintenance status of critical dependencies, constrain unsafe interfaces, monitor vulnerabilities, and document when an upstream project—not the product team—controls remediation.\n\nDSE recommendation: measure outcomes that customers can verify\nTrack the percentage of new security-sensitive components implemented without unsafe code; exposed components migrated or isolated; approved exceptions and their age; memory-safety vulnerabilities discovered in first-party and dependency code; time to remediate; fuzzing and analysis coverage; and roadmap milestones completed. Avoid rewarding raw lines rewritten if the highest-risk interfaces remain unchanged.\n\nMigration needs compatibility and rollback discipline. Define behavior, performance, resource, update, telemetry, and recovery acceptance tests before replacing a mature component. Preserve the ability to restore a supported version if the new implementation introduces operational risk.\n\nDSE recommendation: use procurement leverage without creating false certainty\nAdd memory-safety questions to software and connected-device reviews. Ask whether the supplier has an executive-owned roadmap, which product layers remain memory-unsafe, how unsafe dependencies are identified, how researchers can report defects, and what support period applies to migrated and legacy components.\n\nTreat transparent residual risk as a sign of maturity. The objective is not a logo or an absolute claim that vulnerabilities are impossible. It is sustained reduction of an exploitable defect class, backed by architecture, milestones, testing, disclosure, and accountable ownership.\n\nOfficial references\n\nCISA and partners: The Case for Memory Safe Roadmaps\nNSA: Software Memory Safety\nCISA and partners: Exploring Memory Safety in Critical Open Source Projects\nCISA and FBI: Product Security Bad Practices update",
        "content_markdown": "## Source fact: memory-safety defects are a persistent vulnerability class\n\nCISA, NSA, FBI, and international cybersecurity authorities describe memory-safety vulnerabilities as among the most prevalent classes of disclosed software vulnerability. Examples include buffer overflows, use-after-free errors, uninitialized memory, and double-free conditions. Successful exploitation can expose data, corrupt execution, crash a service, or allow unauthorized code execution.\n\nThe joint guidance explains that memory-safe programming languages move much of the responsibility for valid memory access from individual developers to the language, compiler, or runtime. The agencies urge software manufacturers to create and publish memory-safety roadmaps rather than relying indefinitely on training, testing, and patches to compensate for the same recurring class of defect.\n\nNSA separately recommends using memory-safe languages when possible and applying code-hardening defenses when unsafe languages must remain. CISA’s analysis of critical open-source projects also emphasizes a dependency boundary: an application written in a memory-safe language may still rely on libraries or interfaces containing memory-unsafe code.\n\n## Source fact: memory safety is not the same as complete software security\n\nA memory-safe language can prevent or sharply reduce specific memory-handling errors; it does not automatically prevent broken authorization, injection, insecure design, logic errors, weak cryptography, exposed secrets, or unsafe deployment. Native extensions, foreign-function interfaces, embedded libraries, and operating-system components may preserve memory-unsafe paths inside an otherwise safe product.\n\nA useful roadmap therefore describes boundaries and evidence. A claim that a product “uses Rust,” “uses a managed runtime,” or “has secure coding training” does not reveal which high-risk components remain unsafe, whether dependencies are covered, or whether new unsafe code is still being added.\n\n## DSE recommendation: establish a defensible baseline\n\nFor internally developed software, inventory languages by repository and component, including generated code, firmware, drivers, third-party libraries, native extensions, build tools, and transitive dependencies where evidence is available. Identify components exposed to untrusted network traffic, files, media, device input, or privilege boundaries. These are often better early targets than choosing projects only by line count.\n\nFor purchased products, ask the manufacturer for a roadmap that identifies accountable leadership, scope, milestones, treatment of open-source and third-party dependencies, criteria for exceptions, and how customers will receive progress and residual-risk information. Protect legitimate proprietary details, but do not accept secrecy as a substitute for an engineering plan.\n\n## DSE recommendation: divide the roadmap into four workstreams\n\n- New development. Define approved memory-safe languages and runtimes for new services, parsers, agents, and exposed components. Require an engineering exception before introducing new memory-unsafe code.\n\n- High-risk migration. Prioritize parsers, network-facing services, privileged components, update mechanisms, and code with a history of memory-safety defects. Rewrite bounded components through tested interfaces instead of promising an immediate whole-product rewrite.\n\n- Unsafe-code containment. Where migration is not yet practical, use supported compiler hardening, platform protections, sandboxing, least privilege, protocol isolation, fuzzing, static and dynamic analysis, and prompt vulnerability response.\n\n- Dependency governance. Track the language and maintenance status of critical dependencies, constrain unsafe interfaces, monitor vulnerabilities, and document when an upstream project—not the product team—controls remediation.\n\n## DSE recommendation: measure outcomes that customers can verify\n\nTrack the percentage of new security-sensitive components implemented without unsafe code; exposed components migrated or isolated; approved exceptions and their age; memory-safety vulnerabilities discovered in first-party and dependency code; time to remediate; fuzzing and analysis coverage; and roadmap milestones completed. Avoid rewarding raw lines rewritten if the highest-risk interfaces remain unchanged.\n\nMigration needs compatibility and rollback discipline. Define behavior, performance, resource, update, telemetry, and recovery acceptance tests before replacing a mature component. Preserve the ability to restore a supported version if the new implementation introduces operational risk.\n\n## DSE recommendation: use procurement leverage without creating false certainty\n\nAdd memory-safety questions to software and connected-device reviews. Ask whether the supplier has an executive-owned roadmap, which product layers remain memory-unsafe, how unsafe dependencies are identified, how researchers can report defects, and what support period applies to migrated and legacy components.\n\nTreat transparent residual risk as a sign of maturity. The objective is not a logo or an absolute claim that vulnerabilities are impossible. It is sustained reduction of an exploitable defect class, backed by architecture, milestones, testing, disclosure, and accountable ownership.\n\n## Official references\n\n- [CISA and partners: The Case for Memory Safe Roadmaps](https://www.cisa.gov/sites/default/files/2023-12/The-Case-for-Memory-Safe-Roadmaps-508c.pdf)\n\n- [NSA: Software Memory Safety](https://www.nsa.gov/Press-Room/Digital-Media-Center/Document-Gallery/igphoto/2003210083/)\n\n- [CISA and partners: Exploring Memory Safety in Critical Open Source Projects](https://www.cisa.gov/sites/default/files/2024-06/joint-guidance-exploring-memory-safety-in-critical-open-source-projects-508c.pdf)\n\n- [CISA and FBI: Product Security Bad Practices update](https://www.cisa.gov/news-events/alerts/2025/01/17/cisa-and-fbi-release-updated-guidance-product-security-bad-practices)"
    },
    "json_ld": {
        "@context": "https://schema.org",
        "@graph": [
            {
                "@type": "Organization",
                "@id": "https://dsesecurity.com/#organization",
                "name": "Detection Systems & Engineering",
                "alternateName": "DSE Security",
                "url": "https://dsesecurity.com/",
                "logo": {
                    "@type": "ImageObject",
                    "url": "https://update.dsesecurity.com/assets/dse-logo-20260812.png?v=1.8.20"
                }
            },
            {
                "@type": "Organization",
                "@id": "https://update.dsesecurity.com/#editorial-team",
                "name": "DSE Security Editorial Team",
                "url": "https://update.dsesecurity.com/",
                "parentOrganization": {
                    "@id": "https://dsesecurity.com/#organization"
                }
            },
            {
                "@type": "WebSite",
                "@id": "https://update.dsesecurity.com/#website",
                "name": "DSE Updates",
                "alternateName": "DSE Security Knowledge Hub",
                "url": "https://update.dsesecurity.com/",
                "inLanguage": "en-US",
                "publisher": {
                    "@id": "https://dsesecurity.com/#organization"
                },
                "potentialAction": {
                    "@type": "SearchAction",
                    "target": {
                        "@type": "EntryPoint",
                        "urlTemplate": "https://update.dsesecurity.com/?q={search_term_string}"
                    },
                    "query-input": "required name=search_term_string"
                }
            },
            {
                "@type": "WebPage",
                "@id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
                "url": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
                "isPartOf": {
                    "@id": "https://update.dsesecurity.com/#website"
                },
                "lastReviewed": "2026-08-11"
            },
            {
                "@type": "BreadcrumbList",
                "@id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/#breadcrumbs",
                "itemListElement": [
                    {
                        "@type": "ListItem",
                        "position": 1,
                        "name": "DSE Updates",
                        "item": "https://update.dsesecurity.com/"
                    },
                    {
                        "@type": "ListItem",
                        "position": 2,
                        "name": "Make memory safety a product roadmap, not a patching promise",
                        "item": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/"
                    }
                ]
            },
            {
                "@type": [
                    "Article",
                    "TechArticle"
                ],
                "@id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/#article",
                "identifier": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
                "url": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/",
                "headline": "Make memory safety a product roadmap, not a patching promise",
                "description": "Memory-safety flaws remain a major source of exploitable software defects. Buyers and builders should ask for an owned roadmap covering new code…",
                "abstract": "Memory-safety flaws remain a major source of exploitable software defects. Buyers and builders should ask for an owned roadmap covering new code, legacy components, open-source dependencies, unsafe interfaces, compensating defenses, and measurable progress.",
                "articleBody": "Source fact: memory-safety defects are a persistent vulnerability class\nCISA, NSA, FBI, and international cybersecurity authorities describe memory-safety vulnerabilities as among the most prevalent classes of disclosed software vulnerability. Examples include buffer overflows, use-after-free errors, uninitialized memory, and double-free conditions. Successful exploitation can expose data, corrupt execution, crash a service, or allow unauthorized code execution.\n\nThe joint guidance explains that memory-safe programming languages move much of the responsibility for valid memory access from individual developers to the language, compiler, or runtime. The agencies urge software manufacturers to create and publish memory-safety roadmaps rather than relying indefinitely on training, testing, and patches to compensate for the same recurring class of defect.\n\nNSA separately recommends using memory-safe languages when possible and applying code-hardening defenses when unsafe languages must remain. CISA’s analysis of critical open-source projects also emphasizes a dependency boundary: an application written in a memory-safe language may still rely on libraries or interfaces containing memory-unsafe code.\n\nSource fact: memory safety is not the same as complete software security\nA memory-safe language can prevent or sharply reduce specific memory-handling errors; it does not automatically prevent broken authorization, injection, insecure design, logic errors, weak cryptography, exposed secrets, or unsafe deployment. Native extensions, foreign-function interfaces, embedded libraries, and operating-system components may preserve memory-unsafe paths inside an otherwise safe product.\n\nA useful roadmap therefore describes boundaries and evidence. A claim that a product “uses Rust,” “uses a managed runtime,” or “has secure coding training” does not reveal which high-risk components remain unsafe, whether dependencies are covered, or whether new unsafe code is still being added.\n\nDSE recommendation: establish a defensible baseline\nFor internally developed software, inventory languages by repository and component, including generated code, firmware, drivers, third-party libraries, native extensions, build tools, and transitive dependencies where evidence is available. Identify components exposed to untrusted network traffic, files, media, device input, or privilege boundaries. These are often better early targets than choosing projects only by line count.\n\nFor purchased products, ask the manufacturer for a roadmap that identifies accountable leadership, scope, milestones, treatment of open-source and third-party dependencies, criteria for exceptions, and how customers will receive progress and residual-risk information. Protect legitimate proprietary details, but do not accept secrecy as a substitute for an engineering plan.\n\nDSE recommendation: divide the roadmap into four workstreams\n\nNew development. Define approved memory-safe languages and runtimes for new services, parsers, agents, and exposed components. Require an engineering exception before introducing new memory-unsafe code.\nHigh-risk migration. Prioritize parsers, network-facing services, privileged components, update mechanisms, and code with a history of memory-safety defects. Rewrite bounded components through tested interfaces instead of promising an immediate whole-product rewrite.\nUnsafe-code containment. Where migration is not yet practical, use supported compiler hardening, platform protections, sandboxing, least privilege, protocol isolation, fuzzing, static and dynamic analysis, and prompt vulnerability response.\nDependency governance. Track the language and maintenance status of critical dependencies, constrain unsafe interfaces, monitor vulnerabilities, and document when an upstream project—not the product team—controls remediation.\n\nDSE recommendation: measure outcomes that customers can verify\nTrack the percentage of new security-sensitive components implemented without unsafe code; exposed components migrated or isolated; approved exceptions and their age; memory-safety vulnerabilities discovered in first-party and dependency code; time to remediate; fuzzing and analysis coverage; and roadmap milestones completed. Avoid rewarding raw lines rewritten if the highest-risk interfaces remain unchanged.\n\nMigration needs compatibility and rollback discipline. Define behavior, performance, resource, update, telemetry, and recovery acceptance tests before replacing a mature component. Preserve the ability to restore a supported version if the new implementation introduces operational risk.\n\nDSE recommendation: use procurement leverage without creating false certainty\nAdd memory-safety questions to software and connected-device reviews. Ask whether the supplier has an executive-owned roadmap, which product layers remain memory-unsafe, how unsafe dependencies are identified, how researchers can report defects, and what support period applies to migrated and legacy components.\n\nTreat transparent residual risk as a sign of maturity. The objective is not a logo or an absolute claim that vulnerabilities are impossible. It is sustained reduction of an exploitable defect class, backed by architecture, milestones, testing, disclosure, and accountable ownership.\n\nOfficial references\n\nCISA and partners: The Case for Memory Safe Roadmaps\nNSA: Software Memory Safety\nCISA and partners: Exploring Memory Safety in Critical Open Source Projects\nCISA and FBI: Product Security Bad Practices update",
                "datePublished": "2026-08-11T09:49:00+00:00",
                "dateModified": "2026-08-11T14:12:10+00:00",
                "mainEntityOfPage": {
                    "@id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/"
                },
                "inLanguage": "en-US",
                "isAccessibleForFree": true,
                "author": {
                    "@type": "Person",
                    "name": "Gavin Stewart",
                    "url": "https://www.linkedin.com/in/gavin-stewart-0718/"
                },
                "publisher": {
                    "@id": "https://dsesecurity.com/#organization"
                },
                "image": {
                    "@type": "ImageObject",
                    "@id": "https://update.dsesecurity.com/updates/memory-safety-product-roadmap-procurement/#primaryimage",
                    "url": "https://update.dsesecurity.com/assets/editorial/managed-it-social-v2.jpg?v=1.8.20",
                    "contentUrl": "https://update.dsesecurity.com/assets/editorial/managed-it-social-v2.jpg?v=1.8.20",
                    "width": 1200,
                    "height": 630,
                    "caption": "Make memory safety a product roadmap, not a patching promise"
                },
                "articleSection": [
                    "Cybersecurity",
                    "IT"
                ],
                "keywords": [
                    "Cybersecurity",
                    "IT",
                    "Guide",
                    "Advisory priority"
                ],
                "genre": "Guide",
                "about": [
                    {
                        "@type": "Thing",
                        "name": "Cybersecurity",
                        "url": "https://update.dsesecurity.com/topic/cybersecurity/"
                    },
                    {
                        "@type": "Thing",
                        "name": "IT",
                        "url": "https://update.dsesecurity.com/topic/it/"
                    }
                ],
                "wordCount": 711,
                "timeRequired": "PT4M",
                "publishingPrinciples": "https://update.dsesecurity.com/updates/dse-updates-editorial-methodology/",
                "usageInfo": "https://update.dsesecurity.com/usage/",
                "copyrightHolder": {
                    "@id": "https://dsesecurity.com/#organization"
                },
                "copyrightNotice": "Copyright © 2026 Detection Systems & Engineering. All rights reserved.",
                "citation": {
                    "@type": "CreativeWork",
                    "name": "CISA and international partners: The Case for Memory Safe Roadmaps",
                    "url": "https://www.cisa.gov/sites/default/files/2023-12/The-Case-for-Memory-Safe-Roadmaps-508c.pdf",
                    "datePublished": "2023-12-06"
                }
            }
        ]
    }
}