You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<a href="docs/how-to-read-verbose-output.md">How to read verbose output</a><br/>
41
42
<a href="#what-it-looks-like">What it looks like</a><br/>
42
43
<a href="#why-this-tool-exists">Why this tool exists</a><br/>
@@ -83,6 +84,7 @@ It is designed to be:
83
84
84
85
For real-world remediation examples, see the [OWASP Juice Shop case study](docs/case-studies/owasp-juice-shop.md) and the [NestJS case study](docs/case-studies/nestjs.md).
85
86
If you are new to verbose mode, use the [How to read verbose output guide](docs/how-to-read-verbose-output.md).
87
+
If you want automatic direct remediation, use the [Fix mode guide](docs/fix-mode.md).
86
88
87
89
## New here? Start here
88
90
@@ -179,6 +181,9 @@ cve-lite /path/to/project --min-severity high
179
181
# Recommended for CI logs when you want full context
180
182
cve-lite /path/to/project --verbose
181
183
184
+
# Apply validated direct dependency fixes and rescan
185
+
cve-lite /path/to/project --fix
186
+
182
187
# Limit the scan to production dependencies where supported by the lockfile
Copy file name to clipboardExpand all lines: docs/index.html
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@
28
28
<nav>
29
29
<ahref="#quick-start">Quick Start</a>
30
30
<ahref="#features">Features</a>
31
+
<ahref="#fix-mode">Fix Mode</a>
31
32
<ahref="#workflow">Workflow</a>
32
33
<ahref="#speed">Speed</a>
33
34
<ahref="#links">Links</a>
@@ -61,6 +62,7 @@ <h1>Scan. Prioritize. Fix.</h1>
61
62
<li>npm, pnpm, Yarn lockfile support</li>
62
63
<li>Offline scans with local advisory DB</li>
63
64
<li>Copy-and-run direct fix commands</li>
65
+
<li>Conservative auto-remediation with `--fix`</li>
64
66
</ul>
65
67
</div>
66
68
<divclass="hero-art" aria-hidden="true">
@@ -121,6 +123,10 @@ <h3>Run one-off with npx</h3>
121
123
<sectionclass="container" id="features">
122
124
<h2>What Makes It Useful</h2>
123
125
<divclass="grid three">
126
+
<articleclass="card" id="fix-mode">
127
+
<h3>Conservative `--fix` mode</h3>
128
+
<p>Apply validated direct dependency fixes automatically, then rescan immediately with a concise before/after summary.</p>
129
+
</article>
124
130
<articleclass="card">
125
131
<h3>Actionable output</h3>
126
132
<p>Get summary-first scan results plus copy-and-run fix commands for manifest-declared direct dependencies, with lowest known non-vulnerable targets when data allows.</p>
@@ -196,6 +202,7 @@ <h3>Real-world case studies</h3>
196
202
<pclass="link-list">
197
203
<ahref="https://github.com/sonukapoor/cve-lite-cli/blob/main/docs/case-studies/owasp-juice-shop.md">OWASP Juice Shop</a>
0 commit comments