Defense-Grade Failures: Why RTX and Lockheed Martin’s Public-Facing Infrastructure Is a National Security Concern + Video

Listen to this Post

Featured Image

Introduction:

The public internet presence of major defense contractors serves as a critical attack surface that, when misconfigured, can provide adversaries with footholds for espionage, redirection, and supply chain compromise. Recent public observations of prime contractors Raytheon (RTX) and Lockheed Martin reveal persistent gaps in DNSSEC implementation, insecure DNS delegations, and support for deprecated TLS protocols years after their formal deprecation. These findings, set against the backdrop of stringent NIST guidance and CMMC mandates, expose a troubling disconnect between regulatory compliance narratives and the operational reality of securing infrastructure tied to trillions in defense programs.

Learning Objectives:

  • Understand the technical risks associated with incomplete DNSSEC deployment and insecure DNS delegations.
  • Identify and remediate deprecated TLS protocol usage on critical infrastructure.
  • Learn how to audit DNS and TLS configurations using open-source tools and command-line utilities.

You Should Know:

1. Auditing DNSSEC Validation and Zone Integrity

DNSSEC (Domain Name System Security Extensions) protects against cache poisoning and redirection by cryptographically signing DNS records. The failure to implement or properly maintain DNSSEC on domains belonging to defense contractors undermines the integrity of the internet’s naming layer, potentially allowing attackers to hijack subdomains, redirect email, or intercept sensitive communications. The observed “insecure delegations” and persistent validation warnings indicate either a lack of operational focus or a systemic tolerance for suboptimal configurations.

To verify DNSSEC status, use `dig` on Linux/macOS or `nslookup` with specific flags on Windows. Start by checking if a domain has DNSSEC records:

 Linux/macOS: Query DNSKEY records
dig +dnssec example.com DNSKEY

Check for RRSIG records on an A record
dig +dnssec example.com A

Validate delegation chain
dig +trace +dnssec example.com

For Windows, use `nslookup` to set query types and check for `DNSSEC` status:

nslookup -type=DNSKEY example.com
nslookup -type=RRSIG example.com

If `ad` (authenticated data) flags are missing or signatures fail validation, the zone is either unsigned or misconfigured. Tools like `dnssec-verify` (Linux) can validate a zone file locally, while online services like DNSViz provide visual delegation chain analysis. To remediate, generate DNSSEC keys using dnssec-keygen, sign the zone with dnssec-signzone, and configure the name server to serve the signed zone, ensuring DS records are published with the registrar.

2. Eliminating Deprecated TLS Protocols

The persistence of TLS 1.0 and 1.1 support on name-server-associated endpoints—protocols formally deprecated by the IETF in March 2021—represents a clear violation of modern security standards. These protocols are vulnerable to attacks such as POODLE and BEAST, and their continued use facilitates downgrade attacks that can decrypt traffic or impersonate services. For defense contractors, this directly increases exposure to man-in-the-middle attacks and supply chain compromise.

Use `nmap` or `openssl` to test for deprecated protocols:

 nmap script to enumerate TLS versions
nmap --script ssl-enum-ciphers -p 443,8443 target.com

OpenSSL manual test for TLS 1.0
openssl s_client -connect target.com:443 -tls1

Test for TLS 1.1
openssl s_client -connect target.com:443 -tls1_1

On Windows, use `Test-NetConnection` with PowerShell and the `-Tls` parameter, or utilize the `Invoke-WebRequest` cmdlet with `-SslProtocol` to check support. Remediation involves disabling TLS 1.0 and 1.1 at the web server level (IIS, Apache, Nginx) and ensuring that only TLS 1.2 and 1.3 are enabled. For IIS, this is done through the registry or the IIS Crypto tool. For Nginx, update the `ssl_protocols` directive:

ssl_protocols TLSv1.2 TLSv1.3;

After changes, restart the service and re-scan to confirm deprecated versions are no longer accepted.

3. Auditing Insecure DNS Delegations and NS Records

Insecure delegations occur when a parent zone does not properly delegate DNSSEC trust to a child zone, or when name servers (NS records) point to misconfigured or outdated infrastructure. This can lead to subdomain takeover, where an attacker claims an orphaned DNS record to host malicious content. The observed “insecure delegations” in prime contractor domains suggest a lack of control over the delegation chain.

To audit NS records and delegation, use `dig`:

 Query NS records
dig example.com NS

Perform a full delegation trace
dig +trace example.com NS

Check for glue records and ensure that all authoritative name servers are consistent and secured. Use `whois` to verify registrar details and ensure DS records are present. Automated tools like `dnsrecon` or `subfinder` can enumerate name servers across subdomains. Remediation involves consolidating name server infrastructure, enabling DNSSEC on all child zones, and periodically scanning for orphaned NS records that could lead to takeover.

  1. Automated Compliance Scanning Against NIST and CMMC Frameworks

The gap between compliance narratives and operational reality highlights the need for continuous, automated validation of infrastructure against frameworks like NIST SP 800-53 and CMMC. Manual audits are insufficient; instead, integrate security scanning into CI/CD pipelines or continuous monitoring platforms. Tools like `OpenSCAP` can validate system configurations against security benchmarks.

On Linux, install `openscap-scanner` and run a scan against a NIST-derived profile:

 Install OpenSCAP
sudo apt install openscap-scanner

Scan against a DISA STIG profile
oscap xccdf eval --profile stig --results results.xml /usr/share/xml/scap/ssg/content/ssg-ubuntu2004-ds.xml

For network-level compliance, use `nmap` with NSE scripts to check for CIS benchmarks:

nmap --script cis-benchmark -p 443 target.com

Integrate these scans into a dashboard (e.g., using Splunk or ELK) to track compliance drift over time. The persistence of deprecated TLS and DNSSEC failures indicates that point-in-time audits are failing; only continuous monitoring can ensure baseline cyber hygiene.

5. Supply Chain Risks of Misconfigured Public Infrastructure

Public-facing DNS and TLS misconfigurations are not merely operational errors—they are supply chain risks. An attacker who compromises a defense contractor’s DNS can redirect software updates, intercept intellectual property, or pivot into internal networks. The “institutional tolerance” for suboptimal configurations suggests that security is viewed as optional rather than foundational.

To assess supply chain exposure, map all external-facing assets using tools like `amass` or Shodan. Use `shodan` CLI to query for TLS versions:

 Shodan search for TLS 1.0 on contractor ASN
shodan search --fields ip_str,port,ssl.version ssl.version:TLSv1.0 asn:AS12345

Establish a formal asset inventory and enforce a policy that all external endpoints must pass automated security checks (e.g., SSL Labs A+ rating, DNSSEC validation) before being allowed to resolve publicly. Implement strict certificate lifecycle management with automated renewal and revocation checks.

What Undercode Say:

  • Compliance is not security: The gap between NIST/CMMC mandates and observable configurations proves that meeting paperwork requirements does not equate to operational security.
  • Public infrastructure mirrors internal hygiene: Suboptimal public-facing configurations often indicate deeper internal vulnerabilities, including poor patch management and insecure development practices.
  • Defense contractors are prime targets: Adversaries continuously scan for such weaknesses; persistent TLS 1.0 support is an open invitation for downgrade attacks and traffic interception.
  • Automation is non-negotiable: Without continuous scanning and automated remediation, misconfigurations will persist for years, as evidenced by the documented failures dating back multiple years.
  • DNSSEC is a foundational control: Incomplete DNSSEC deployment undermines the entire DNS integrity model, exposing organizations to redirection attacks that bypass other security layers.

The findings from public observations of RTX and Lockheed Martin infrastructure underscore a systemic issue: even organizations central to national security struggle with baseline cyber hygiene. The coexistence of multi-billion-dollar defense budgets alongside publicly observable, years-old misconfigurations reveals a failure of both technical oversight and risk governance. For the security community, it is a reminder that the most critical infrastructure often relies on the same internet protocols as any other enterprise—and those protocols are only as strong as their implementation. The path forward demands a shift from compliance-driven checkbox security to outcome-focused, continuously validated operational resilience.

Prediction:

As NIST DNSSEC guidance and CMMC mandates mature, we will see increased regulatory scrutiny and potential contractual penalties for defense contractors that fail to address public-facing infrastructure weaknesses. Future breaches will likely trace back to these foundational misconfigurations, accelerating the adoption of mandatory, real-time security posture reporting as a condition for federal contracts. Contractors who delay remediation will face not only increased cyber risk but also reputational and financial consequences as supply chain security becomes a board-level liability.

▶️ Related Video (80% Match):

🎯Let’s Practice For Free:

IT/Security Reporter URL:

Reported By: Andy Jenkinson – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeTesting & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky