Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
24 changes: 24 additions & 0 deletions website/docs/press.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)**
Expand Down
4 changes: 4 additions & 0 deletions website/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
],
},
],
Expand Down
20 changes: 9 additions & 11 deletions website/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
14 changes: 10 additions & 4 deletions website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,17 @@ export default function Home(): ReactNode {
<section className="press-bar">
<p className="press-bar-label">As seen in</p>
<div className="press-bar-logos">
<Link to="https://www.helpnetsecurity.com/2026/05/20/cve-lite-cli-open-source-dependency-vulnerability-scanner/" aria-label="Help Net Security article">
<img src="img/press-helpnetsecurity.svg" alt="Help Net Security" height="28" />
<Link to="https://www.csoonline.com/article/4176701/as-ai-speeds-coding-cve-lite-cli-keeps-security-deliberately-ai-free.html" aria-label="CSO Online article" className="press-bar-text-link">
CSO Online
</Link>
<Link to="https://developmentcurated.com/testing-and-security/review-of-cve-lite-cli/" aria-label="Development Curated review">
<img src="img/press-developmentcurated.svg" alt="Development Curated" height="28" />
<Link to="https://medium.com/@techlatest.net/ai-security-is-changing-fast-these-6-open-source-tools-prove-it-5c5c9081cff7" aria-label="Medium article" className="press-bar-text-link">
Medium
</Link>
<Link to="https://www.helpnetsecurity.com/2026/05/20/cve-lite-cli-open-source-dependency-vulnerability-scanner/" aria-label="Help Net Security article" className="press-bar-text-link">
Help Net Security
</Link>
<Link to="https://developmentcurated.com/testing-and-security/review-of-cve-lite-cli/" aria-label="Development Curated review" className="press-bar-text-link">
Development Curated
</Link>
</div>
</section>
Expand Down
Loading