Blackpoint Vulnerability Management
CompassOne exposes four exposure lenses against a tenant's assets:
host-level vulnerabilities, scan history, dark-web leaks, and
internet-facing external exposures. This skill covers all four and
how to combine them into a prioritized remediation view.
Anti-triggers
- Patching, suppressing, or marking a finding fixed — the
status values (fixed, ignored, false_positive) are filters on
a read, not actions. Nothing here writes; remediation happens in the
CompassOne portal or the patching tool.
- Another vendor's vulnerability view —
sentinelone-vulnerabilities
and sentinelone-misconfigurations cover different scanners with
different CVE coverage. Do not merge severity counts across products.
- Live threat activity — a vulnerability is a latent weakness;
something actually happening is a detection, in
blackpoint-incident-response.
- Which host a CVE lands on — asset detail and topology are
blackpoint-asset-inventory.
API Tools
| Tool |
Purpose |
blackpoint_vulnerabilities_list |
Host-level vulnerability findings |
blackpoint_vulnerabilities_scans_list |
Vulnerability scan history and status |
blackpoint_vulnerabilities_darkweb_list |
Dark-web exposures (leaked data) |
blackpoint_vulnerabilities_external_list |
Internet-facing external exposures |
Filters That Matter
blackpoint_vulnerabilities_list accepts:
tenant_id, asset_id — scope
severity — low, medium, high, critical
status — open, fixed, ignored, false_positive
cve_id — pivot on a specific CVE
patch_available — is a fix published?
exploit_available — is it weaponized in the wild?
The fix-now cohort is the intersection: severity in
{high, critical}, status: open, exploit_available: true,
patch_available: true — a known, weaponized, fixable problem that
has not been fixed.
blackpoint_vulnerabilities_darkweb_list exposure types:
credentials, documents, data_breach, malware.
blackpoint_vulnerabilities_external_list exposure types:
open_port, vulnerable_service, certificate_issue,
misconfiguration.
blackpoint_vulnerabilities_scans_list status values:
pending, running, completed, failed.
Common Workflows
Prioritized remediation list for a tenant
- Check
blackpoint_vulnerabilities_scans_list — if the last
completed scan is stale or recent scans failed, say so; it
caps confidence in everything below.
- Pull
blackpoint_vulnerabilities_list for the tenant.
- Filter to the fix-now cohort and present it first.
- List remaining open criticals/highs (especially no-patch ones)
separately with a compensating-controls note.
Dark-web exposure check
blackpoint_vulnerabilities_darkweb_list for the tenant.
- For
credentials exposures, recommend forced password resets and
an MFA enforcement check.
- Flag
data_breach and malware exposures for follow-up.
External attack-surface review
blackpoint_vulnerabilities_external_list for the tenant.
- Group by exposure type; treat
vulnerable_service and
open_port on management ports as highest priority.
- Pair with
certificate_issue findings for a complete edge view.
Edge Cases
- Stale scans — never present a vulnerability rollup without
checking scan recency first; old data misleads the reader.
- No-patch criticals — separate these from the fix-now list;
they need compensating controls, not a patch ticket.
- Read-only — remediation actions happen outside CompassOne;
the MCP cannot mark findings fixed.
Best Practices
- Risk-weight, do not just severity-sort: exploitability and patch
availability change the priority order materially.
- Combine all four lenses for QBRs — host, scan, dark-web, external
tell complementary stories.
- Always cite CVE IDs and asset IDs so a finding can be re-pulled.
Related Skills
1---2name: blackpoint-vulnerability-management3description: Blackpoint Cyber (CompassOne) exposure data across four lenses: host vulnerability findings and the filters that matter (CVE, severity, patch and exploit availability), scan history, dark-web credential and data leaks, and internet-facing external exposures — plus how to combine them into a prioritized remediation view.4---56# Blackpoint Vulnerability Management78CompassOne exposes four exposure lenses against a tenant's assets:9host-level vulnerabilities, scan history, dark-web leaks, and10internet-facing external exposures. This skill covers all four and11how to combine them into a prioritized remediation view.1213## Anti-triggers1415- **Patching, suppressing, or marking a finding fixed** — the16 `status` values (`fixed`, `ignored`, `false_positive`) are filters on17 a read, not actions. Nothing here writes; remediation happens in the18 CompassOne portal or the patching tool.19- **Another vendor's vulnerability view** — `sentinelone-vulnerabilities`20 and `sentinelone-misconfigurations` cover different scanners with21 different CVE coverage. Do not merge severity counts across products.22- **Live threat activity** — a vulnerability is a latent weakness;23 something actually happening is a detection, in24 `blackpoint-incident-response`.25- **Which host a CVE lands on** — asset detail and topology are26 `blackpoint-asset-inventory`.2728## API Tools2930| Tool | Purpose |31|------|---------|32| `blackpoint_vulnerabilities_list` | Host-level vulnerability findings |33| `blackpoint_vulnerabilities_scans_list` | Vulnerability scan history and status |34| `blackpoint_vulnerabilities_darkweb_list` | Dark-web exposures (leaked data) |35| `blackpoint_vulnerabilities_external_list` | Internet-facing external exposures |3637## Filters That Matter3839`blackpoint_vulnerabilities_list` accepts:4041- `tenant_id`, `asset_id` — scope42- `severity` — `low`, `medium`, `high`, `critical`43- `status` — `open`, `fixed`, `ignored`, `false_positive`44- `cve_id` — pivot on a specific CVE45- `patch_available` — is a fix published?46- `exploit_available` — is it weaponized in the wild?4748The **fix-now cohort** is the intersection: `severity` in49{`high`, `critical`}, `status: open`, `exploit_available: true`,50`patch_available: true` — a known, weaponized, fixable problem that51has not been fixed.5253`blackpoint_vulnerabilities_darkweb_list` exposure types:54`credentials`, `documents`, `data_breach`, `malware`.5556`blackpoint_vulnerabilities_external_list` exposure types:57`open_port`, `vulnerable_service`, `certificate_issue`,58`misconfiguration`.5960`blackpoint_vulnerabilities_scans_list` status values:61`pending`, `running`, `completed`, `failed`.6263## Common Workflows6465### Prioritized remediation list for a tenant66671. Check `blackpoint_vulnerabilities_scans_list` — if the last68 `completed` scan is stale or recent scans `failed`, say so; it69 caps confidence in everything below.702. Pull `blackpoint_vulnerabilities_list` for the tenant.713. Filter to the fix-now cohort and present it first.724. List remaining open criticals/highs (especially no-patch ones)73 separately with a compensating-controls note.7475### Dark-web exposure check76771. `blackpoint_vulnerabilities_darkweb_list` for the tenant.782. For `credentials` exposures, recommend forced password resets and79 an MFA enforcement check.803. Flag `data_breach` and `malware` exposures for follow-up.8182### External attack-surface review83841. `blackpoint_vulnerabilities_external_list` for the tenant.852. Group by exposure type; treat `vulnerable_service` and86 `open_port` on management ports as highest priority.873. Pair with `certificate_issue` findings for a complete edge view.8889## Edge Cases9091- **Stale scans** — never present a vulnerability rollup without92 checking scan recency first; old data misleads the reader.93- **No-patch criticals** — separate these from the fix-now list;94 they need compensating controls, not a patch ticket.95- **Read-only** — remediation actions happen outside CompassOne;96 the MCP cannot mark findings fixed.9798## Best Practices99100- Risk-weight, do not just severity-sort: exploitability and patch101 availability change the priority order materially.102- Combine all four lenses for QBRs — host, scan, dark-web, external103 tell complementary stories.104- Always cite CVE IDs and asset IDs so a finding can be re-pulled.105106## Related Skills107108- [incident-response](../incident-response/SKILL.md) - Detection-to-vulnerability correlation109- [asset-inventory](../asset-inventory/SKILL.md) - Mapping findings to assets