Skip to content

Commit dbe0697

Browse files
authored
Update README with lookup.ps1 usage instructions
Added instructions for downloading KEV JSON and EPSS CSV in lookup.ps1.
1 parent 74deccf commit dbe0697

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,23 @@ NRPTUsage: run PowerShell as Administrator, then execute .\rmm_nrpt_block.ps1 to
648648
Removal: run .\rmm_nrpt_block.ps1 -Remove to delete only the NRPT rules created by this script.
649649
Chosen over hosts file because hosts only supports exact hostnames, while NRPT supports broader namespace/suffix blocking for local testing.
650650

651+
---
652+
### `lookup.ps1`
653+
654+
Download KEV JSON
655+
Invoke-WebRequest -Uri "https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json" -OutFile kev.json
656+
657+
Download EPSS CSV
658+
Invoke-WebRequest -Uri "https://epss.cyentia.com/epss_scores-current.csv.gz" -OutFile epss.gz
659+
660+
Populate table with your CVEs
661+
[PSCustomObject]@{
662+
Asset = "foo - Edge Browser"
663+
CVE = "CVE-2026-7902"
664+
},
665+
666+
Run lookup.ps1
667+
651668
## ── 📂 Section: MSADPT ──
652669
---
653670

0 commit comments

Comments
 (0)