diff --git a/README.md b/README.md index 502e551..a528d9d 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,8 @@ If you maintain an open-source JavaScript or TypeScript project and want CVE Lit ## Press +- **[As AI speeds coding, CVE Lite CLI keeps security deliberately AI-free](https://www.csoonline.com/article/4176701/as-ai-speeds-coding-cve-lite-cli-keeps-security-deliberately-ai-free.html)** — CSO Online (Shweta Sharma), May 2026 +- **[AI Security Is Changing Fast — These 6 Open-Source Tools Prove It](https://medium.com/@techlatest.net/ai-security-is-changing-fast-these-6-open-source-tools-prove-it-5c5c9081cff7)** — Medium (TechLatest.Net), May 2026 - **[CVE Lite CLI: Open-source dependency vulnerability scanner](https://www.helpnetsecurity.com/2026/05/20/cve-lite-cli-open-source-dependency-vulnerability-scanner/)** — Help Net Security, May 2026 - **[Review of CVE Lite CLI](https://developmentcurated.com/testing-and-security/review-of-cve-lite-cli/)** — Development Curated (Sebastian Raiffen, IT Security Consultant), April 2026 diff --git a/website/docs/press.md b/website/docs/press.md index 882468a..71090b6 100644 --- a/website/docs/press.md +++ b/website/docs/press.md @@ -9,6 +9,30 @@ Independent coverage and reviews of CVE Lite CLI from the security and developer --- +## CSO Online — May 2026 + +**[As AI speeds coding, CVE Lite CLI keeps security deliberately AI-free](https://www.csoonline.com/article/4176701/as-ai-speeds-coding-cve-lite-cli-keeps-security-deliberately-ai-free.html)** + +*Shweta Sharma — CSO Online* + +> "Developers should see dependency risks while they are still writing code, not hours later inside a failing CI pipeline." + +A dedicated feature covering the deliberate decision to keep CVE Lite CLI AI-free, the developer-time scanning approach, and the reasoning behind local-first design. Includes direct quotes from the project author on why security checks belong at the terminal, not the CI gate. + +--- + +## Medium (TechLatest.Net) — May 2026 + +**[AI Security Is Changing Fast — These 6 Open-Source Tools Prove It](https://medium.com/@techlatest.net/ai-security-is-changing-fast-these-6-open-source-tools-prove-it-5c5c9081cff7)** + +*TechLatest.Net — Medium* + +> "Instead of 'This package is vulnerable,' it tells you 'Run this exact command to fix it.'" + +A roundup of six open-source security tools shaping the developer security space. CVE Lite CLI is featured alongside its OWASP Incubator Project status and its focus on actionable, copy-and-run remediation over raw vulnerability lists. + +--- + ## Help Net Security — May 2026 **[CVE Lite CLI: Open-source dependency vulnerability scanner](https://www.helpnetsecurity.com/2026/05/20/cve-lite-cli-open-source-dependency-vulnerability-scanner/)** diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index f054755..2283666 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -186,6 +186,10 @@ const config: Config = { label: 'Security', href: 'https://github.com/OWASP/cve-lite-cli/blob/main/src/docs/SECURITY.md', }, + { + label: 'Press', + to: '/docs/press', + }, ], }, ], diff --git a/website/src/css/custom.css b/website/src/css/custom.css index ada1a95..bc49c40 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -611,22 +611,20 @@ body { .press-bar-logos a { display: flex; align-items: center; - opacity: 0.8; - transition: opacity 0.15s ease; text-decoration: none; } -.press-bar-logos a:hover { - opacity: 1; +.press-bar-text-link { + font-size: 0.85rem; + font-weight: 700; + letter-spacing: 0.02em; + color: rgba(255, 255, 255, 0.9); + white-space: nowrap; } -.press-bar-logos img { - display: block; - height: 28px; - width: auto; - max-width: 220px; - object-fit: contain; - object-position: left center; +.press-bar-text-link:hover { + color: #fff; + text-decoration: none; } .section-block { diff --git a/website/src/pages/index.tsx b/website/src/pages/index.tsx index 79d6ffa..08c96e1 100644 --- a/website/src/pages/index.tsx +++ b/website/src/pages/index.tsx @@ -140,11 +140,17 @@ export default function Home(): ReactNode {

As seen in

- - Help Net Security + + CSO Online - - Development Curated + + Medium + + + Help Net Security + + + Development Curated