惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

SANS Internet Storm Center, InfoCON: green

From a VHDX File to a Remcos RAT - SANS Internet Storm Center ISC Stormcast For Tuesday, June 16th, 2026 https://isc.sans.edu/podcastdetail/9974 Evil MSI Background: BASE64 Statistical Analysis - SANS ISC ISC Stormcast For Monday, June 15th, 2026 https://isc.sans.edu/podcastdetail/9972 ISC Stormcast For Friday, June 12th, 2026 https://isc.sans.edu/podcastdetail/9970 ISC Stormcast For Thursday, June 11th, 2026 https://isc.sans.edu/podcastdetail/9968 How has use of framing protection security headers changed in the past 3 years? ISC Stormcast For Wednesday, June 10th, 2026 https://isc.sans.edu/podcastdetail/9966 Microsoft June 2026 Patch Tuesday - SANS Internet Storm Center ISC Stormcast For Tuesday, June 9th, 2026 https://isc.sans.edu/podcastdetail/9964 TeamPCP Supply Chain Campaign: Activity Through 2026-06-07 ISC Stormcast For Monday, June 8th, 2026 https://isc.sans.edu/podcastdetail/9962 The Evil MSI Background is Back! - SANS Internet Storm Center ISC Stormcast For Friday, June 5th, 2026 https://isc.sans.edu/podcastdetail/9960 Microsoft's Coreutils for Windows - SANS Internet Storm Center ISC Stormcast For Thursday, June 4th, 2026 https://isc.sans.edu/podcastdetail/9958 Continuing Scans for swagger.json - SANS Internet Storm Center ISC Stormcast For Wednesday, June 3rd, 2026 https://isc.sans.edu/podcastdetail/9956 New Wave Of Phishing Emails with SVG Files - SANS ISC ISC Stormcast For Tuesday, June 2nd, 2026 https://isc.sans.edu/podcastdetail/9954 ISC Stormcast For Monday, June 1st, 2026 https://isc.sans.edu/podcastdetail/9952 Unidentified RAT pushes NetSupport RAT - SANS ISC YARA-X 1.17.0 Release - SANS Internet Storm Center ISC Stormcast For Friday, May 29th, 2026 https://isc.sans.edu/podcastdetail/9950 Analysis of a Year of Files Uploaded to DShield Sensors ISC Stormcast For Thursday, May 28th, 2026 https://isc.sans.edu/podcastdetail/9948 Reconstructing an Akira Ransomware Kill Chain from Perimeter and Endpoint Logs ISC Stormcast For Wednesday, May 27th, 2026 https://isc.sans.edu/podcastdetail/9946 ISC Stormcast For Tuesday, May 26th, 2026 https://isc.sans.edu/podcastdetail/9944 Possible ACR Stealer From Page Impersonating Claude
Handling the CVE Flood With EPSS - SANS Internet Storm Ce...
2026-04-20 · via SANS Internet Storm Center, InfoCON: green

Every morning, security people around the world face the same ritual: opening their vulnerability feed to find a lot of new CVE entries that appeared overnight. Over the past decade, this flood has become a defining challenge of modern defensive security. Some numbers[1]:

  • CVEs published in 2023: 29K+
  • CVEs published in 2024: 40K+
  • New CVEs per day: ~110
  • Exploited in the wild: ~5-7%

The root cause of this explosion is structural: the security research community has grown dramatically, bug bounty programs, automated scanning has industrialised vulnerability discovery, and software supply chains expose orders of magnitude more attack surface than legacy monolithic architectures ever did. And don’t forget AI used more and more to find vulnerabilities!

Every CVE receives a CVSS (Common Vulnerability Scoring System) that is a score between 0 and 10 attempts to express the intrinsic severity of a vulnerability. This score is based on core questions like: How bad it is if exploited? How complex exploitation is? What privileges are required? And what impact on confidentiality, integrity, and availability to expect?

CVSS is a well-designed standard, and is useful. But it remains challenging to perform the initial triage: Which CVEs deserve to be investigated first? A CVSS 9.8 that sits dormant in an obscure software is less dangerous in practice than a CVSS 6.5 actively chained in ransomware campaigns!

The Exploit Prediction Scoring System (EPSS) was developed by FIRST (Forum of Incident Response and Security Teams)[2] and has gone through successive iterations since its public launch in 2021, with EPSS v3 released in March 2023 as the current production model. Its design philosophy is fundamentally different from CVSS: instead of rating theoretical impact, EPSS answers a probabilistic question. We already talked about EPSS a long time ago[3] but it does get enough attention from the community (IMHO)

How does it work?

EPSS = P(exploitation within 30 days | CVE is published)
Score range: 0.00001 → 1.0 (probability)
Model: gradient-boosted machine learning (XGBoost)
Input features: ~1,400 signals updated daily
Data sources: exploit databases, darkweb telemetry, threat intel feeds, PoC repositories, NVD metadata

Theory is nice but let’s be more pragmatic! FIRST offers an API to query for EPSS scores:

$ curl -s https://api.first.org/data/v1/epss?cve=CVE-2026-23099 | jq .
{
  "status": "OK",
  "status-code": 200,
  "version": "1.0",
  "access": "public",
  "total": 1,
  "offset": 0,
  "limit": 100,
  "data": [
    {
      "cve": "CVE-2026-23099",
      "epss": "0.000180000",
      "percentile": "0.044770000",
      "date": "2026-04-19"
    }
  ]
}

How to automate this? Most SIEM or log management solutions can interact with external services through APIs. Let me show you how I enrich my vulnerabilities alert in Wazuh.

I set up an integration[4] that will query the EPSS score of CVEs detected in my environment:

A Python script will be invoked when a vulnerability is detected (with alert group "vulnerability-detector", the fetched EPSS score will be used to create a new alert with more relevant data:

<integration>
  <name>custom-epss</name>
  <group>vulnerability-detector</group>
  <alert_format>json</alert_format>
</integration>

The new rules:

<group name="epss,vulnerability,enrichment">
  <rule id="120200" level="3">
    <decoded_as>json</decoded_as>
    <field name="integration">epss</field>
    <description>EPSS enrichment event received for $(epss.cve)</description>
    <options>no_full_log</options>
  </rule>

  <rule id="120201" level="5">
    <if_sid>120200</if_sid>
    <field name="epss.risk_label">low</field>
    <description>EPSS: $(epss.cve) — Low exploitation probability (score=$(epss.score_pct)%)</description>
  </rule>

  <rule id="120202" level="9">
    <if_sid>120200</if_sid>
    <field name="epss.risk_label">medium</field>
    <description>EPSS: $(epss.cve) — Medium exploitation probability (score=$(epss.score_pct)%)</description>
  </rule>

  <rule id="120203" level="12">
    <if_sid>120200</if_sid>
    <field name="epss.risk_label">high</field>
    <description>EPSS: $(epss.cve) — High exploitation probability (score=$(epss.score_pct)%)</description>
  </rule>

  <rule id="120204" level="15">
    <if_sid>120200</if_sid>
    <field name="epss.risk_label">critical</field>
    <description>EPSS: $(epss.cve) — CRITICAL exploitation probability (score=$(epss.score_pct)%)</description>
    <group>pci_dss_6.3.3,nist_800_53_SI.2,gdpr_IV_35.7.d,hipaa_164.308.a.5,tsc_CC7.1</group>
  </rule>

  <rule id="120205" level="3">
    <if_sid>120200</if_sid>
    <field name="epss.cached">True</field>
    <description>EPSS: $(epss.cve) — Score served from local cache (age &lt; 24h)</description>
  </rule>
</group>

Here is an example of alert:

The script sets the risk based on this:

if score >= 0.90:
    return "critical"
if score >= 0.50:
    return "high"
if score >= 0.10:
    return "medium"
return "low"

The Python integration script is available here[5].

[1] https://www.cvedetails.com/browse-by-date.php
[2] https://www.first.org/epss/
[3] https://isc.sans.edu/diary/EPSScall+An+Exploit+Prediction+Scoring+System+App/28732
[4] https://documentation.wazuh.com/current/integrations-guide/index.html
[5] https://xameco.be/files/custom-epss.py

Xavier Mertens (@xme)
Xameco
Senior ISC Handler - Freelance Cyber Security Consultant
PGP Key