<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: gritzon</title>
    <description>The latest articles on DEV Community by gritzon (@gritzon).</description>
    <link>https://dev.to/gritzon</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3876679%2F7bc26be8-654e-4ad3-b97c-54672075af36.png</url>
      <title>DEV Community: gritzon</title>
      <link>https://dev.to/gritzon</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gritzon"/>
    <language>en</language>
    <item>
      <title>I built a free public REST API to check CRA compliance for WordPress plugins and Rust crates</title>
      <dc:creator>gritzon</dc:creator>
      <pubDate>Tue, 14 Apr 2026 11:18:29 +0000</pubDate>
      <link>https://dev.to/gritzon/i-built-a-free-public-rest-api-to-check-cra-compliance-for-wordpress-plugins-and-rust-crates-iej</link>
      <guid>https://dev.to/gritzon/i-built-a-free-public-rest-api-to-check-cra-compliance-for-wordpress-plugins-and-rust-crates-iej</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;The EU Cyber Resilience Act deadline is September 11, 2026 — 150 days away.&lt;/p&gt;

&lt;p&gt;Developers need a simple way to check if their WordPress plugins or &lt;br&gt;
Rust crates are compliant — without installing anything or reading &lt;br&gt;
through JSON files.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;CRA Compliance API&lt;/strong&gt; — a free public REST API built with PHP 8.4 &lt;br&gt;
and Symfony 8.0.&lt;/p&gt;

&lt;p&gt;Three endpoints, zero authentication required:&lt;/p&gt;

&lt;h3&gt;
  
  
  Check API status
&lt;/h3&gt;

&lt;p&gt;GET &lt;a href="https://web-production-8ad02.up.railway.app/api/status" rel="noopener noreferrer"&gt;https://web-production-8ad02.up.railway.app/api/status&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Check WordPress plugin
&lt;/h3&gt;

&lt;p&gt;GET &lt;a href="https://web-production-8ad02.up.railway.app/api/check/plugin/%7Bslug%7D" rel="noopener noreferrer"&gt;https://web-production-8ad02.up.railway.app/api/check/plugin/{slug}&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Check Rust crate
&lt;/h3&gt;

&lt;p&gt;GET &lt;a href="https://web-production-8ad02.up.railway.app/api/check/crate/%7Bname%7D" rel="noopener noreferrer"&gt;https://web-production-8ad02.up.railway.app/api/check/crate/{name}&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Example response
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"slug"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"woocommerce"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"WooCommerce"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; 
  &lt;/span&gt;&lt;span class="nl"&gt;"version"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"10.6.2"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"cra_status"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"ok"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"issues"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"checked_at"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"2026-04-14T11:04:34+00:00"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Status values
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;ok&lt;/code&gt; — no issues&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;warning&lt;/code&gt; — not updated in 6+ months
&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;risk&lt;/code&gt; — not updated in 12+ months&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;unknown&lt;/code&gt; — cannot determine status&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it now
&lt;/h2&gt;

&lt;p&gt;Check WooCommerce:&lt;br&gt;
&lt;a href="https://web-production-8ad02.up.railway.app/api/check/plugin/woocommerce" rel="noopener noreferrer"&gt;https://web-production-8ad02.up.railway.app/api/check/plugin/woocommerce&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Check an old abandoned crate:&lt;br&gt;
&lt;a href="https://web-production-8ad02.up.railway.app/api/check/crate/rustc-serialize" rel="noopener noreferrer"&gt;https://web-production-8ad02.up.railway.app/api/check/crate/rustc-serialize&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add WPScan vulnerability data&lt;/li&gt;
&lt;li&gt;Add rate limiting&lt;/li&gt;
&lt;li&gt;Add caching with Redis&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/gritzon/cra-api" rel="noopener noreferrer"&gt;https://github.com/gritzon/cra-api&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free and open source. Feedback welcome!&lt;/p&gt;

</description>
      <category>php</category>
      <category>symfony</category>
      <category>security</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I built a free WordPress plugin to help with EU Cyber Resilience Act compliance</title>
      <dc:creator>gritzon</dc:creator>
      <pubDate>Mon, 13 Apr 2026 12:48:32 +0000</pubDate>
      <link>https://dev.to/gritzon/i-built-a-free-wordpress-plugin-to-help-with-eu-cyber-resilience-act-compliance-4d8d</link>
      <guid>https://dev.to/gritzon/i-built-a-free-wordpress-plugin-to-help-with-eu-cyber-resilience-act-compliance-4d8d</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;The EU Cyber Resilience Act (CRA) deadline is September 11, 2026 — &lt;br&gt;
less than 5 months away.&lt;/p&gt;

&lt;p&gt;After that date, WordPress plugin developers and site owners in the EU &lt;br&gt;
must follow formal vulnerability handling procedures. Non-compliant &lt;br&gt;
products can be removed from the EU market. Fines reach up to &lt;br&gt;
&lt;strong&gt;€15 million&lt;/strong&gt; or 2.5% of global annual turnover.&lt;/p&gt;

&lt;p&gt;Most WordPress site owners have no idea which of their plugins are &lt;br&gt;
outdated or have known vulnerabilities.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;CRA Scanner&lt;/strong&gt; — a free WordPress plugin that scans your active &lt;br&gt;
plugins and shows a clear compliance status for each one.&lt;/p&gt;

&lt;p&gt;It checks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;When each plugin was last updated (6+ months = warning, 12+ = risk)&lt;/li&gt;
&lt;li&gt;Known vulnerabilities via WPScan API — filtered to show only issues 
affecting your &lt;strong&gt;current installed version&lt;/strong&gt;, not historical ones&lt;/li&gt;
&lt;li&gt;Whether PHP version requirements are declared&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result is a simple dashboard:&lt;/p&gt;

&lt;p&gt;![CRA Scanner screenshot]&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;I couldn't find a simple free tool that just scans your plugins and &lt;br&gt;
gives you a clear picture. Most solutions are either paid, overly &lt;br&gt;
complex, or focused on documentation rather than actual plugin health.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/gritzon/cra-scanner-wp" rel="noopener noreferrer"&gt;https://github.com/gritzon/cra-scanner-wp&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;WordPress.org: pending review (submitted April 2026)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Free and open source under GPL-2.0.&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback welcome
&lt;/h2&gt;

&lt;p&gt;This is v0.2.0 — early but functional. If you try it and find issues &lt;br&gt;
or have suggestions, open an issue on GitHub or drop a comment below.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4k3bqnb75xcede3crxvl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4k3bqnb75xcede3crxvl.png" alt=" " width="800" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>security</category>
      <category>wordpress</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
