TLP:CLEAR
RESOLVED · HISTORICAL
KEV LISTED
// Vulnerability Advisory — Information Disclosure (Memory Over-Read) · OpenSSL / TLS Heartbeat Extension

HEARTBLEED

COMPILED: 2026-09-13  |  PREVIOUSLY COMPILED: 2026-08-30  |  CVE: CVE-2014-0160  |  CWE: CWE-125 (Out-of-bounds Read)  |  SOURCES: 14
CVSS: 7.5 (HIGH)
Affected: OpenSSL 1.0.1 – 1.0.1f (and 1.0.2-beta1)
Disclosed: 2014-04-07 (coordinated)
Patch Date: 2014-04-07 (OpenSSL 1.0.1g)
KEV Added: 2022-05-04 (8 years post-disclosure)
EPSS: 0.99999 (99.997th pct.)
7.5
CVSS v3.1 Base Score
CVE-2014-0160
Single CVE — originally scored CVSSv2 5.0 (Medium); rescored 7.5 (High) under v3.1 methodology
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
~500K
Internet-facing TLS servers vulnerable at disclosure (~17% of the secure web)
25 MO
The bug shipped silently before discovery (Mar 2012 → Apr 2014)
99.9%
EPSS — 30-day exploitation probability, still, a decade on
300K+
Servers still confirmed vulnerable months after the patch shipped
01
Situation Overview

Heartbleed is a buffer over-read vulnerability in OpenSSL's implementation of the TLS/DTLS Heartbeat Extension (RFC 6520) that allows a remote, unauthenticated attacker to read up to 64KB of a server's process memory per request, repeatable indefinitely, with no authentication and no trace in application logs. Because OpenSSL powered an estimated two-thirds of all TLS-secured web servers in 2014, and because the leaked memory could contain anything the process had recently handled — TLS private keys, session cookies, HTTP Basic Auth credentials, plaintext form submissions, other tenants' data on shared hosting — Heartbleed is widely regarded as one of the most consequential vulnerabilities in the history of the commercial internet (Electronic Frontier Foundation, 2014; Bruce Schneier, 2014).

The vulnerability is significant beyond its raw technical severity because of what it revealed and what it changed. It exposed that a piece of cryptographic infrastructure trusted by most of the internet — OpenSSL — was maintained by a two-person, effectively volunteer team surviving on roughly $2,000 a year in donations (Wikipedia; Core Infrastructure Initiative, 2014). It produced one of the first "branded" vulnerabilities, complete with a name, logo, and dedicated website (heartbleed.com), a media-relations pattern that shaped how the industry has communicated critical CVEs ever since. And it triggered a durable structural response: within weeks, twelve major technology companies funded the Linux Foundation's Core Infrastructure Initiative to pay full-time maintainers for critical open-source infrastructure, and two independent OpenSSL forks (LibreSSL, BoringSSL) were created specifically to harden the codebase.

Heartbleed is more than a decade old but remains directly relevant to a working CTI/vulnerability-research practice for three reasons: it is a canonical teaching example of an out-of-bounds read with catastrophic confidentiality impact from a single missing bounds check; its exploitation continued for years after the patch (Community Health Systems, Canada Revenue Agency) because "patch the library" and "the exposure is actually closed" are not the same claim when private key material may have leaked; and CISA added it to the KEV catalog in May 2022 — eight years after disclosure — a reminder that KEV listing dates track ongoing exploitation evidence, not vulnerability age.

Who remains at risk in 2026: any organization running end-of-life appliances, embedded devices, or unmaintained internal services built on an unpatched OpenSSL 1.0.1–1.0.1f build. Public scanning has continued to find on the order of 100,000–300,000 internet-facing devices with vulnerable or outdated OpenSSL version banners years after the patch, concentrated in exactly the categories — legacy embedded systems, forgotten internal infrastructure, unsupported network appliances — that most CTI programs should already be hunting for as part of general attack-surface hygiene.

02
Root Cause Analysis CWE Classification + Architectural Failure
CWE-125 Out-of-bounds Read
The product reads data past the end, or before the beginning, of the intended buffer, typically allowing an attacker to read sensitive information from other memory locations or cause a crash (MITRE CWE-125). In Heartbleed's case, the read is remotely triggerable, requires no authentication, and returns the leaked memory directly to the attacker in a normal-looking protocol response — with no crash, and therefore no obvious signal that anything went wrong.

The TLS/DTLS Heartbeat Extension (RFC 6520) lets either side of a connection send a small "are you there" message containing an arbitrary payload and a declared payload length; the receiver is supposed to echo the exact same payload back. OpenSSL's implementation (in ssl/t1_lib.c / ssl/d1_both.c) read the attacker-supplied 2-byte length field from the incoming heartbeat request and used it directly — without checking it against the actual number of bytes received in the packet — as the length argument to a memcpy() call that copied the "payload" into a newly allocated response buffer sized to match the claimed length.

Because the claimed length could be up to 65,535 bytes regardless of how much data the client actually sent (as little as a single-byte payload), a malicious heartbeat request could claim a payload far larger than what was transmitted. OpenSSL would then memcpy that many bytes starting at the correctly-sized payload pointer — reading past the end of the small request buffer and into whatever adjacent heap memory happened to be there, then dutifully returning it to the attacker inside the heartbeat response. Repeating the request harvested a different ~64KB slice of process heap each time, since heap layout shifts between requests; enough repetitions could, and demonstrably did, surface TLS private keys, session tokens, and plaintext credentials that had transited the same process.

The code was authored by Robin Seggelmann as part of a legitimate RFC 6520 feature contribution, reviewed and merged by OpenSSL core team member Stephen N. Henson, and committed to the OpenSSL repository on December 31, 2011 — shipping in the 1.0.1 release on March 14, 2012. It is a textbook example of a missing bounds check surviving code review: the review process trusted that the length field would be validated somewhere, no automated fuzzing or memory-safety tooling was in the OpenSSL pipeline at the time to catch it, and — because OpenSSL is open source — the code was visible to anyone for over two years without anyone reporting the flaw before Google's and Codenomicon's simultaneous, independent discovery.

03
Vulnerability Lifecycle
01
Discovery
2014-04-01
02
Disclosure
2014-04-07
03
Patch
2014-04-07
04
Exploitation
2014-04 → years
05
Resolution
2014–2015 (industry response)

The bug shipped in OpenSSL 1.0.1 on March 14, 2012, and sat in production code, unreported, for roughly 25 months. On April 1, 2014, Neel Mehta of Google's security team privately reported it to the OpenSSL team. Almost simultaneously and entirely independently, researchers at the Finnish security firm Codenomicon discovered the same flaw during routine testing of their own product around April 3, 2014, and notified Finland's national CERT (NCSC-FI) for coordination — a rare case of two unrelated teams finding the identical critical bug within days of each other, underscoring how mechanically discoverable the flaw was once someone looked in the right place.

OpenSSL, Codenomicon, and a coordinating group of major infrastructure operators (including Akamai, Cloudflare, Facebook, Google, Yahoo, and several Linux distribution maintainers) agreed a coordinated public disclosure date of April 7, 2014. On that date, three things happened almost simultaneously: OpenSSL published version 1.0.1g and a security advisory, Codenomicon's heartbleed.com site went live with the "Heartbleed" name, a purpose-designed bleeding-heart logo, and plain-language explanation — one of the first vulnerabilities to receive full marketing treatment — and CVE-2014-0160 was published. This branding choice proved consequential: it made an obscure cryptographic library bug comprehensible to a general audience overnight, driving both rapid patch adoption and a template later reused for Shellshock, POODLE, and subsequent branded vulnerabilities.

Patching, however, did not equal remediation. Because the bug could have leaked TLS private keys before anyone knew to look, the complete remediation chain required patching OpenSSL, then revoking and reissuing every potentially-exposed TLS certificate, then rotating every session token and credential that might have transited the vulnerable process — a three-step chain that many organizations completed only partially or not at all. This gap between "patched" and "actually safe" directly enabled continued exploitation for years, including breaches attributed to Heartbleed well after the April 2014 patch was publicly available.

04
Disclosure Analysis
Disclosure TypeCoordinated, multi-party — but contested
Discovered ByNeel Mehta (Google) and Codenomicon, independently, days apart
Reported To Vendor2014-04-01 (Mehta) / ~2014-04-03 (Codenomicon via NCSC-FI)
PoC ReleasedConcurrent with disclosure — no meaningful pre-patch PoC window
PoC vs PatchSimultaneous — patch (1.0.1g) shipped at public disclosure
Vendor ResponseFast and complete for the code fix; industry-wide certificate/credential rotation lagged for years
Community ReactionWidespread alarm; EFF and Schneier called it "catastrophic"
CVD Policy FollowedMostly — but a tiered pre-notification to select large infrastructure providers drew criticism

Unlike PrintNightmare, Heartbleed's disclosure was intentionally coordinated rather than accidental — but the coordination itself became controversial. Ahead of the April 7 public release, a subset of large infrastructure operators (Akamai, Cloudflare, Facebook, Google, and several others) received advance notice under embargo so they could patch before attackers had any opportunity to exploit the newly-public bug. Critics pointed out that this created a two-tier disclosure: well-resourced companies got a head start that smaller operators, other certificate authorities, and the general public did not, raising a fairness question about vulnerability coordination that remains debated in CVD policy circles today.

A second, more serious controversy followed within days: Bloomberg reported, citing two anonymous sources, that the NSA had known about and secretly exploited Heartbleed for approximately two years before public disclosure. The NSA and the White House both issued formal denials, stating the agency was not aware of the vulnerability until it became public and that the U.S. government's policy is to disclose vulnerabilities it discovers rather than stockpile them. The claim was never independently corroborated and was disputed by other outlets, but it materially shaped public and policy debate in 2014 about government vulnerability-disclosure practices (the debate that later produced the modern Vulnerabilities Equities Process framework). This repository's confidence in the underlying technical facts of Heartbleed is high; confidence in the NSA-foreknowledge claim specifically is low, and it is presented here as a disputed historical claim, not an established fact.

05
Technical Deep Dive Exploitation Mechanics · CVSS Breakdown · Affected Versions

Exploitation requires no authentication and a single TCP connection to any TLS or DTLS service linked against a vulnerable OpenSSL build. The attacker completes (or partially completes) a TLS handshake, then sends a heartbeat request record whose declared payload length field is set larger than the actual payload bytes included — for example, claiming a 65,535-byte payload while sending only a few bytes of actual data. The vulnerable server allocates a response buffer sized to the claimed length, memcpy()s that many bytes starting from the (small, correctly-received) payload location, and returns the result. The returned buffer contains the few legitimate payload bytes the attacker sent, followed by up to ~64KB of whatever else happened to occupy adjacent process heap memory — potentially including the server's own TLS private key, other clients' plaintext session data, HTTP request bodies containing credentials, or internal application secrets. Because the response is a syntactically valid heartbeat reply, nothing about the exchange looks anomalous to the server process itself; there is no crash and no error condition, only a successful-looking heartbeat round-trip that happens to contain far more data than it should.

Repeating the request with different declared lengths and at different times samples different regions of heap memory (as the heap's contents shift with normal server activity), which is why real-world exploitation typically involved hundreds to thousands of requests to reliably harvest specific secrets like a private key, rather than a single request producing the "jackpot."

CVSS v3.1 Vector Breakdown — CVE-2014-0160 · CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Attack Vector
NETWORK
Exploitable over any TLS/DTLS connection the vulnerable service accepts — no local access needed.
Attack Complexity
LOW
A single malformed heartbeat record is sufficient; widely available scripts automated exploitation within hours of disclosure.
Privileges Required
NONE
Fully unauthenticated — the heartbeat extension operates before or independent of any application-layer authentication.
User Interaction
NONE
No victim action required; the attacker initiates the connection and request directly.
Scope
UNCHANGED
Impact is confined to the vulnerable process's own memory space (though that space may itself hold the "keys to the kingdom").
Confidentiality
HIGH
Can leak TLS private keys, credentials, and session data — a complete confidentiality failure for anything the process touched.
Integrity
NONE
The bug is a read primitive only — it does not, by itself, let an attacker modify data or system state.
Availability
NONE
No direct denial-of-service impact; the process continues operating normally throughout exploitation.
Affected Versions
VendorComponentAffected VersionsFixed VersionStatus
OpenSSL ProjectOpenSSL (TLS/DTLS Heartbeat)1.0.1 – 1.0.1f; 1.0.2-beta11.0.1g (2014-04-07); 1.0.2-beta2Fixed — patch complete, single generation
Downstream (all)Any product statically/dynamically linking a vulnerable OpenSSL buildVersion-dependent — hundreds of vendor advisories issued 2014-04Vendor-specific rebuild against 1.0.1g+Remediation required a full rebuild/redeploy, not just a library swap, for statically-linked binaries
06
Exploitation in the Wild Threat Actors · Campaigns · KEV Status
CISA KEV LISTED Added: 2022-05-04 · Required Remediation: 2022-05-25
CISA added CVE-2014-0160 to the KEV catalog on May 4, 2022 — as part of a five-vulnerability batch that also included two other 2014-era CVEs — giving federal civilian agencies a three-week remediation window (Flashpoint, 2022). The eight-year gap between public disclosure and KEV listing does not mean exploitation stopped; it reflects that KEV entries track confirmed, ongoing exploitation evidence rather than vulnerability age, and Heartbleed continued to be actively probed and exploited against legacy systems well into the 2020s.
Exploitation Timeline
2014-04-07
Mass Scanning Begins Within Hours
Working exploit scripts circulated publicly the same day as disclosure; internet-wide scanning for vulnerable hosts began almost immediately.
2014-04 (mid)
Canada Revenue Agency — SIN Theft
Approximately 900 Canadian Social Insurance Numbers were stolen from the CRA's public-facing systems; suspect Stephen Solis-Reyes was arrested and charged. Broader Canadian federal departments were also reported affected in a subsequent CBC investigation.
2014-06 → 08
Community Health Systems Breach — 4.5M Patients
Attackers harvested VPN credentials from a CHS-operated Juniper device via Heartbleed and used them to log into the corporate network, exfiltrating personal data on approximately 4.5 million patients — reported by TrustedSec/Mandiant as among the largest documented Heartbleed-enabled breaches (HealthcareInfoSecurity, 2014).
2014 → 2019
Sustained Opportunistic Exploitation
Five years post-disclosure, Heartbleed was reported as the third-most-exploited vulnerability observed in the wild, reflecting the long tail of unpatched and unmaintained systems (Flashpoint, 2022, citing 2019 exploitation data).
2022-05-04
CISA KEV Listing
Formally added to the KEV catalog based on continued confirmed exploitation evidence, nearly a decade after disclosure.
2024–2026
Long-Tail Legacy Exposure Persists
Internet-wide scans continue to find on the order of 100,000–300,000 devices running outdated or vulnerable OpenSSL version banners, concentrated in legacy embedded systems and unmaintained appliances (Network World; TechTarget).
2026-09-13
Public PoC/Exploit Availability Re-Confirmed (vulnpedia.com)
Cross-referenced per this project's standing vulnpedia.com exploit-availability check: four ExploitDB entries (32764, 32791, 32998, 32745) and a Nuclei detection template remain publicly listed and current — this is not a purely historical finding; functional, ready-to-use PoC tooling has been continuously accessible since 2014.

No card currently on file in this repository documents an actor or a specific incident case file tied to the Community Health Systems or Canada Revenue Agency compromises — see Section 10. Heartbleed's exploitation profile is unusual for a "famous" CVE: it was not associated with a single dominant threat actor or campaign but rather with broad, opportunistic scanning by a wide range of unrelated criminal and unknown actors, consistent with its nature as a low-skill, high-yield credential/key-theft primitive rather than a targeted exploit chain.

07
Architectural Lessons Why this class of vulnerability keeps recurring

Heartbleed is the canonical case study for a structural failure mode distinct from PrintNightmare's "whack-a-mole patch cascade": it is what happens when critical internet infrastructure is maintained as an under-resourced volunteer effort. At the time of disclosure, OpenSSL — linked into a majority of the internet's TLS-secured traffic — was maintained by a two-person team receiving on the order of $2,000 per year in donations, with no dedicated funding for security auditing, fuzzing, or a formal code-review gate strong enough to catch a missing bounds check in a new feature (Core Infrastructure Initiative retrospectives, 2014–2016). The vulnerability itself — a single missing length validation — is trivial in isolation; what made it catastrophic was the mismatch between how critical the software was and how little organizational capacity existed to secure it.

The industry's response is itself an instructive architectural lesson, and a comparatively rare example of a systemic fix following a systemic failure. Within three weeks, the Linux Foundation's Core Infrastructure Initiative was announced with twelve major technology companies each committing $100,000 per year for three years, funding full-time OpenSSL maintainers and pushing the project from a two-person team to roughly fifteen contributors with a mandatory two-reviewer code-review policy. Independently, the OpenBSD project forked OpenSSL into LibreSSL within two weeks (stripping over 90,000 lines of legacy C code in its first week of work), and Google forked its own hardened variant, BoringSSL, two months later. Both forks were explicit acknowledgments that the existing codebase's engineering practices, not just this one bug, needed to change.

The lesson that has proven durable, and the one most relevant to a working security practice today, is that critical open-source dependencies inherit an organization's risk regardless of whether that organization pays for, audits, or even knows it depends on them. Heartbleed's persistence for years after patching — via embedded devices, unmaintained appliances, and statically-linked binaries nobody thought to rebuild — previews exactly the software-supply-chain dependency risk that later drove SBOM (Software Bill of Materials) mandates and the broader open-source-security funding movement. The Core Infrastructure Initiative's funding has since lapsed for many of the projects it originally supported, and OpenSSL and comparable projects continue to cite sustainable funding as an open problem — meaning the underlying structural risk Heartbleed exposed has been only partially, and not permanently, addressed.

08
Purple Team Detection · Hunting · Patch Guidance · Compensating Controls
A · Detection
B · Threat Hunting
C · Patch Guidance
D · Compensating Controls
Suricata/Snort — TLS heartbeat length-mismatch signature (illustrative, based on public 2014-era rules)
alert tls any any -> $HOME_NET any (msg:"SERVER-OTHER OpenSSL TLSv1 heartbeat information disclosure attempt (Heartbleed)"; \ flow:established,to_server; content:"|18 03|"; offset:0; depth:2; \ byte_test:2,>,3,3,relative; classtype:attempted-recon; \ reference:cve,2014-0160; sid:1000001; rev:1;)
Protocol-analysis length-mismatch heuristic (as implemented by Wireshark/IDS heartbeat decoders)
IF (heartbeat_record.declared_payload_length + 16) > (heartbeat_record.actual_tls_record_length - 3) THEN flag "Heartbleed-style overread attempt" (severity: critical, direction: client-to-server) # Reference implementation logic per Errata Security / Inliniac Suricata detection notes, 2014-04

Behavioral indicators independent of a specific signature: any heartbeat request whose declared payload length exceeds the size of the TLS record actually received; repeated heartbeat requests from a single source in rapid succession (legitimate heartbeat traffic is infrequent and small); and, on the host itself, an OpenSSL process handling an unusually high volume of heartbeat records relative to normal keep-alive traffic. Because exploitation leaves no crash and no application-log trace, network-layer detection (packet capture, IDS/IPS with TLS protocol decoding) is the only reliable detection surface — host-based logging alone will not reveal historical exploitation.

Hypothesis 1 — Legacy/embedded OpenSSL never rebuilt. Enumerate every network-facing device and appliance (VPN concentrators, load balancers, IoT/OT management interfaces, printers, IP cameras, older network gear) and fingerprint the OpenSSL version in use via TLS handshake analysis or vendor firmware inventory. Statically-linked binaries are the highest-risk finding here, since a host OS patch does not remediate them — the specific binary must be rebuilt and redeployed.

Hypothesis 2 — Certificates never rotated after the 2014 patch. For any organization with TLS infrastructure that predates April 2014, verify that certificate/key rotation actually occurred at the time, rather than assuming a patched OpenSSL version implies a safe certificate. A certificate issued before the 2014 patch and never reissued is a standing risk regardless of current library version, since the original private key's exposure (if it occurred) was never remediated.

Hypothesis 3 — Historical compromise via harvested credentials. For high-value environments that existed in April 2014, hunt for anomalous authentication activity in the weeks immediately following disclosure (2014-04-07 through roughly 2014-05-31) using any retained historical logs — credential-based intrusions following a Heartbleed-enabled harvest would show as successful logins using otherwise-valid credentials with no corresponding password-reset or phishing event, consistent with the Community Health Systems pattern.

Primary PatchOpenSSL 1.0.1g or later (or migrate to a maintained fork/branch)
Release Date2014-04-07
Regression RiskLow — the fix is a narrow bounds-check addition with no known functional regressions
Testing RequiredMinimal for the patch itself; the real work is certificate/credential rotation, which requires a coordinated maintenance window
Public PoC (vulnpedia.com)Confirmed — 4 ExploitDB entries + Nuclei template, checked 2026-09-13
Vendor AdvisoryOpenSSL Security Advisory, 2014-04-07
Out-of-Band PatchYes — released simultaneously with public disclosure
Superseded ByNot superseded — this is the complete, final fix for CVE-2014-0160 itself

Unlike PrintNightmare, Heartbleed does not have a patch-bypass lineage — 1.0.1g fully closes CVE-2014-0160. The residual risk in 2026 is entirely a deployment-hygiene problem: unpatched legacy/embedded devices, statically-linked binaries never rebuilt, and certificates/credentials that were never rotated after the original patch. For any newly-discovered legacy system still running vulnerable OpenSSL, the correct remediation sequence is: (1) patch or replace the OpenSSL build, (2) treat any TLS private key the device held as compromised and reissue the certificate, (3) rotate any credentials or session secrets that could plausibly have transited the vulnerable process, in that order — patching alone is an incomplete remediation for a confidentiality-impact vulnerability of this severity.

01
Terminate TLS at a modern reverse proxy or load balancer in front of any legacy device that cannot be patched or rebuilt. This removes the vulnerable OpenSSL build from the network-facing attack surface entirely, at the cost of an additional infrastructure component to maintain.
02
Disable the TLS heartbeat extension at compile time (OPENSSL_NO_HEARTBEATS) or via configuration where the underlying stack supports it, if a full library upgrade is genuinely not possible in the short term.
03
Network-segment and restrict inbound access to any confirmed-legacy device pending replacement, minimizing the population of hosts that can reach it.
04
Deploy IDS/IPS heartbeat length-validation signatures (Section A) as a monitoring control while remediation of the underlying device is scheduled.
05
Formally retire end-of-life devices on a lifecycle schedule rather than treating "still hasn't been breached" as evidence the device is safe to leave in place — the multi-year tail of Heartbleed-vulnerable devices found by internet-wide scans is overwhelmingly a device-lifecycle failure, not a patching-technique failure.
09
CVE / CVSS / KEV Reference Full metadata block
CVE-2014-0160
CVSS v3.1 Score7.5 (High)
Vector String (v3.1)CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
CVSS v2 Score (original)5.0 (Medium)
Vector String (v2)AV:N/AC:L/Au:N/C:P/I:N/A:N
CWECWE-125 (Out-of-bounds Read)
EPSS Score0.99999 (99.997th percentile)
KEV StatusListed — confirmed ongoing exploitation
KEV Date Added2022-05-04 (due 2022-05-25)
10
Cross-References Linked actor and incident cards
Threat Actors Who Weaponized This Vulnerability
No companion actor cards on file as of 2026-08-30 — Heartbleed's exploitation was broad and opportunistic rather than tied to a single tracked threat actor or group. This repository's existing actor cards (APT1, Gonjeshke Darande, JadePuffer, Lapsus$, REvil, Salt Typhoon, Scattered Spider, TeamPCP) do not include any confirmed Heartbleed operators.
Incidents Where This Was the Initial Vector
No companion incident cards on file as of 2026-08-30. The Community Health Systems breach (~4.5M patient records, 2014) and the Canada Revenue Agency SIN-theft incident (2014) are both documented, publicly-attributed candidates for future incident card creation.
11
References URLs are NOT defanged — navigate directly
NVD / NIST
Accessed: 2026-08-30
MITRE / CVE.org
Accessed: 2026-08-30
OpenSSL Project
Accessed: 2026-08-30
Codenomicon
Accessed: 2026-08-30
CISA KEV Catalog
Accessed: 2026-08-30
FIRST.org
Accessed: 2026-08-30
Wikipedia (secondary, corroborating)
Accessed: 2026-08-30
Errata Security
Accessed: 2026-08-30
Inliniac (Suricata)
Accessed: 2026-08-30
HealthcareInfoSecurity
Accessed: 2026-08-30
Wikipedia — Core Infrastructure Initiative
Accessed: 2026-08-30
Wikipedia — LibreSSL
Accessed: 2026-08-30