Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome CRA Awesome

A curated list of resources for the EU Cyber Resilience Act (Regulation (EU) 2024/2847), written from a product-security and offensive-security angle - not just compliance paperwork.

The CRA sets mandatory cybersecurity requirements for products with digital elements (hardware, software, and the cloud backends they depend on) placed on the EU market. This list maps the regulation to concrete engineering: firmware signing, SBOMs, coordinated disclosure, and the tooling that produces real evidence of (non-)compliance.

Scope of this list: things an engineer, security researcher, or product team can actually use. Legal-only commentary is kept to the essential primary sources.

Contents

Key Dates

Date Milestone
10 Dec 2024 Regulation entered into force
27 Jul 2026 Commission published practical implementation guidance
11 Jun 2026 Conformity assessment bodies notification provisions apply
11 Sep 2026 Reporting obligations (Article 14) apply - actively exploited vulns and severe incidents
11 Dec 2027 Full application - all essential requirements, CE marking, conformity assessment

Primary Sources

Official Guidance

Standards

The Commission issued Standardisation Request M/606, accepted by CEN, CENELEC, and ETSI, covering 41 harmonised standards targeted for delivery around Q3 2026. Applying a harmonised standard (once cited in the Official Journal) gives a presumption of conformity with the mapped Annex I requirements.

Status (as of mid-2026): no CRA harmonised standard is yet ratified as an EN or cited in the Official Journal. Several EN 40000 drafts have passed public enquiry; the first citations are expected in the second half of 2026. Until then, conformity must be demonstrated against Annex I directly. Verify the current state before relying on any specific standard.

Scope and Classification

The conformity route depends on the product's risk tier:

  • Default - most consumer IoT and software. Self-assessment (Module A).
  • Important, Class I (Annex III) - password managers, VPNs, browsers, routers, antivirus, physical/logical access control. Self-assessment allowed only if a harmonized standard is applied.
  • Important, Class II (Annex III) - hypervisors, firewalls, IDS/IPS, tamper-resistant microcontrollers, industrial routers. Third-party assessment required.
  • Critical (Annex IV) - HSMs, smart meter gateways, secure elements / smartcards. Third-party plus possible mandatory EU certification (EUCC).

Annex I Mapped to Engineering

The essential requirements, translated into things you can test and produce evidence for.

Part I - Product security properties

Requirement Concrete failure mode a researcher can demonstrate
No known exploitable vulnerabilities at ship time Bundled library with an unpatched public CVE (see cra-sbom-gate)
Secure by default configuration Default/hardcoded credentials, open debug services
Confidentiality (encryption in transit/at rest) Cleartext protocol, interceptable traffic, plaintext secrets on flash
Integrity of code and data Unsigned firmware, no anti-rollback, mutable config
Minimize attack surface Exposed UART/JTAG, unnecessary open ports, debug endpoints
Exploit mitigation Missing ASLR/stack canaries/NX in shipped binaries
Secure update mechanism Firmware update without signature verification or downgrade protection

Part II - Vulnerability handling

Requirement What it means in practice
Component inventory (SBOM) Machine-readable SBOM, at least top-level dependencies
CVD policy + reporting contact Reachable security contact, published disclosure policy, security.txt
Public disclosure of fixed vulns Security advisories once a patch ships
Secure update distribution Signed updates, integrity verification

Conformity Assessment Routes

Which route a manufacturer may use depends on the product tier (see Scope and Classification). The modules come from the New Legislative Framework (Decision 768/2008/EC).

Module Name When usable
A Internal control (self-assessment) Default products, and Class I products if a harmonised standard is fully applied
B + C EU-type examination + conformity to type Class I without a harmonised standard, and Class II; requires a notified body
H Full quality assurance Alternative third-party route for Class I/II
European cybersecurity certification Under the Cybersecurity Act (e.g. EUCC) Critical products (Annex IV), where mandated

Self-assessment is only available where explicitly permitted; higher tiers require a notified body.

Technical Documentation (Annex VII)

The manufacturer must compile and keep a technical file. At minimum it contains:

  • General product description and intended purpose.
  • Design, development, and production information.
  • Cybersecurity risk assessment the product is designed against.
  • The list of harmonised standards or other specifications applied.
  • SBOM and information on the vulnerability handling process.
  • Test reports demonstrating conformity with Annex I.
  • The EU Declaration of Conformity.

Retention: for at least 10 years after the product is placed on the market, or the support period, whichever is longer.

SBOM Tooling

  • Syft - generate SBOMs (CycloneDX, SPDX) from images, filesystems, and firmware roots.
  • CycloneDX - SBOM standard with a strong security/VEX focus.
  • SPDX - ISO-standard SBOM format.
  • Dependency-Track - continuous SBOM analysis platform.
  • BSI TR-03183-2 - German technical guideline defining concrete SBOM content requirements, widely used as the practical baseline for CRA SBOMs.
  • cra-sbom-cli - validates SBOM format/metadata completeness against CRA expectations and generates PDF reports. Complements cra-sbom-gate: quality validation vs. known-vulnerability gating.

Vulnerability Data and Known-CVE Checking

  • OSV.dev - open, precise vulnerability database with a free batch API. Backbone of cra-sbom-gate.
  • OSV-Scanner - scan SBOMs and lockfiles against OSV.
  • Grype - vulnerability scanner for SBOMs and container images.
  • Trivy - broad scanner covering OS packages, dependencies, and IaC.
  • NIST NVD - the US National Vulnerability Database, CVE enrichment source.

Coordinated Vulnerability Disclosure

Firmware Update Security

Reporting Obligations

Article 14 requires manufacturers to notify the relevant national CSIRT and ENISA (via a single platform) when they become aware of:

  • Actively exploited vulnerability: early warning within 24 hours, notification within 72 hours, final report within 14 days.
  • Severe incident: early warning within 24 hours, notification within 72 hours, final report within 1 month.

The clock is the manufacturer's and starts on awareness - which a researcher's report can create.

Reports go to the ENISA Single Reporting Platform (SRP) - one submission, routed simultaneously to the national CSIRT coordinator and ENISA. The 24-hour early warning only needs an indication of active exploitation and the affected Member States; technical detail follows in the 72-hour notification.

Voluntary reporting (relevant to researchers): any person - not only manufacturers - may voluntarily notify a vulnerability, cyber threat, incident, or near miss. Voluntary reporting adds no new obligations to the notifier.

Open Source and the CRA

  • Non-commercial open source developed outside a commercial activity is out of scope.

  • The CRA introduces the open-source software steward (Article 24) - a lighter-touch regime, with no administrative fines, for foundations that systematically support FOSS used in commercial products.

  • Contributing a patch or hosting a repo does not make you a manufacturer; monetizing or commercializing does. Commercial vendors remain fully responsible for the open-source components they ship.

  • OpenSSF - Cyber Resilience Act resources - where the open-source community works through the steward role and CRA tooling in practice.

Related Regulations

Related Lists

Other curated CRA collections. This list differs by taking a product-security and offensive-security angle (Annex I mapped to failure modes, evidence-producing tooling) rather than a compliance-officer angle.

Tools in this Repo

  • cra-check - tests an extracted firmware root filesystem against CRA Annex I requirements, driven by a machine-readable catalog (annex1.json) that maps each requirement to an automated check, an offensive test procedure, and pass/fail evidence. Includes a stdlib checksec (NX/PIE/canary/RELRO), secrets, default-account, and insecure-service checks. Offline, deterministic, CI-gateable. This is the project's core artifact.
  • cra-sbom-gate - a known-vulnerability gate, not a format validator. Takes a CycloneDX or SPDX SBOM, cross-checks every component against the OSV database, and flags known-vulnerable components as a violation of Annex I Part I (1) ("no known exploitable vulnerabilities at the time of placing on the market"). Deterministic, reproducible, evidence-producing. Pairs with format validators like cra-sbom-cli, which check SBOM completeness rather than component vulnerabilities.

Contributing

Contributions welcome. See CONTRIBUTING.md. Every entry must be a real, reachable resource that a practitioner can use - no filler, no dead links.

License

CC0

To the extent possible under law, the author has waived all copyright and related rights to this work.

About

Awesome CRA - EU Cyber Resilience Act resources from a product/offensive-security angle, plus tooling

Resources

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages