Threat Intelligence Database
Comprehensive database of the latest cyber threats affecting organizations worldwide. Filter and search to find specific threat intelligence relevant to your organization.
Stop chasing alerts. Route them.
Start free, then upgrade once to turn Radar into an automated delivery engine for your security stack.
Custom feeds / Automations: email, Slack, webhooks, SIEM/MISP / API access (baseline limits)
API access activates after upgrading in Console -> Billing.
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.
Filter Threats
Narrow down the results by type, severity, or affected countries
Threat Intelligence
Click on any threat for detailed analysis and mitigation recommendations
A platform-dependent path pattern matching issue exists in python-tuf's delegation implementation used by ggshield. On Windows, path matching is case-insensitive due to the use of fnmatch.fnmatch, which applies os.path.normcase that lowercases input on Windows but not on POSIX systems. This causes authorization decisions to differ by OS, violating the TUF specification. An attacker controlling a delegation role with a path pattern differing only by case can exploit this on Windows clients to override legitimate delegations. The vulnerability affects ggshield versions >=1.50.3 and <1.51.0_1 and has a medium severity rating with a CVSS score of 4. A fix is available by replacing fnmatch.fnmatch with fnmatch.fnmatchcase to ensure consistent case-sensitive matching across platforms. Join the discussion | GCVE Database | 08/13/2026, 16:50:00 UTC Added: 09/18/2026, 01:04:41 UTC |
### Impact `Schema.load(data, many=True)` is vulnerable to denial of service attacks. A moderately sized request can consume a disproportionate amount of CPU time. ### Patches 4.1.2, 3.26.2 ### Workarounds ```py # Fail fast def load_many(schema, data, **kwargs): if not isinstance(data, list): raise ValidationError(['Invalid input type.']) return [schema.load(item, **kwargs) for item in data] ``` Join the discussion | GCVE Database | 08/13/2026, 16:50:00 UTC Added: 09/17/2026, 02:00:20 UTC |
Showing 1 to 2 of 2 results