coverme-scanner 1.11.1 → 1.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -296,3 +296,20 @@ Before finishing, verify:
|
|
|
296
296
|
3. **DREAD + Attack Chain** - Required for critical/high
|
|
297
297
|
4. **Run `coverme report`** - Opens HTML in browser
|
|
298
298
|
5. **Quality over quantity** - 10 good findings > 50 vague ones
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
## FINAL STEP - MANDATORY!
|
|
303
|
+
|
|
304
|
+
After saving `.coverme/scan.json`, you MUST run:
|
|
305
|
+
|
|
306
|
+
```bash
|
|
307
|
+
coverme report
|
|
308
|
+
```
|
|
309
|
+
|
|
310
|
+
**The scan is NOT complete until the HTML report opens in the browser!**
|
|
311
|
+
|
|
312
|
+
If `coverme report` fails, generate HTML manually:
|
|
313
|
+
```bash
|
|
314
|
+
open .coverme/scan.json
|
|
315
|
+
```
|