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
CVE-2026-55517: CWE-248: Uncaught Exception in denoland denoCVE-2026-55517 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.7.5, a Deno program that opens a client WebSocket connection could be crashed by the remote server. While handling the WebSocket handshake response, Deno parsed the Sec-WebSocket-Protocol and Sec-WebSocket-Extensions response headers in a way that assumed their bytes were always printable ASCII. A response header containing non-visible-ASCII bytes (0x80-0xFF) caused a panic that aborted the entire Deno process. This vulnerability is fixed in 2.7.5. Join the discussion | CVE Database V5 | 06/23/2026, 17:24:59 UTC Added: 06/23/2026, 17:40:00 UTC |
CVE-2026-49983: CWE-863: Incorrect Authorization in denoland denoCVE-2026-49983 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.8.1, environment access is gated by the env permission. You can deny it with --deny-env, or restrict it to a specific allowlist with --allow-env=FOO,BAR. The expectation is that a program running without env permission cannot change process.env. process.loadEnvFile() (the Node-compatible API for loading variables from a .env file) does not honor this. It only checks that the program has read permission for the dotenv file, then writes every key in that file into the process environment — even when env access is denied. In effect, --allow-read plus a writable or attacker-controlled .env file is enough to defeat --deny-env. This vulnerability is fixed in 2.8.1. Join the discussion | CVE Database V5 | 06/23/2026, 17:16:17 UTC Added: 06/23/2026, 17:40:00 UTC |
CVE-2026-49860: CWE-918: Server-Side Request Forgery (SSRF) in denoland denoCVE-2026-49860 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.8.1, when a WebSocket connection was opened, Deno checked the destination hostname against --deny-net rules but did not re-check the IP addresses that hostname resolved to. An attacker-controlled script could use a specially crafted domain name that passes the hostname check yet resolves to a denied IP, bypassing the network restriction entirely. This vulnerability is fixed in 2.8.1. Join the discussion | CVE Database V5 | 06/23/2026, 17:15:05 UTC Added: 06/23/2026, 17:40:00 UTC |
CVE-2026-49859: CWE-693: Protection Mechanism Failure in denoland denoCVE-2026-49859 0 Deno versions prior to 2.8.1 contain a vulnerability where the fetch() function enforces network restrictions based on hostname checks but fails to verify the resolved IP addresses against deny-net rules. This allows an attacker to bypass network restrictions by using a domain name that passes hostname validation but resolves to a denied IP address. The issue is fixed in version 2.8.1. Join the discussion | CVE Database V5 | 06/23/2026, 17:14:16 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-49440: CWE-325: Missing Cryptographic Step in denoland denoCVE-2026-49440 0 Deno versions prior to 2.8.1 contain a vulnerability in the node:crypto.checkPrime and crypto.checkPrimeSync functions where no Miller-Rabin primality test rounds are performed if the options.checks parameter is left at its default of 0. This causes certain composite numbers with large prime factors to be incorrectly identified as prime. The issue is fixed in version 2.8.1. Join the discussion | CVE Database V5 | 06/23/2026, 17:13:25 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-49411: CWE-284: Improper Access Control in denoland denoCVE-2026-49411 0 Deno versions prior to 2.8.0 contain an improper access control vulnerability in the Node.js compatibility TCP path. The permission check was performed on the original hostname string before DNS resolution but not after, allowing a caller to bypass restrictions by using numeric IP address aliases. This could enable unauthorized connections to otherwise denied destinations. The issue is fixed in version 2.8.0. Join the discussion | CVE Database V5 | 06/23/2026, 17:18:07 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-49406: CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') in denoland denoCVE-2026-49406 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.7.12, when Deno was run in BYONM mode (nodeModulesDir: "manual"), the module resolver did not validate that a package's resolved entrypoint stayed within its node_modules/<pkg>/ directory. A malicious package.json whose main field contained .. segments was able to resolve to an arbitrary path on disk, and the resolver then read that file without consulting the --allow-read allowlist. This let a require("evil-pkg") call return the contents of a file that a direct Deno.readTextFileSync(...) call would have been blocked from reading. This vulnerability is fixed in 2.7.12. Join the discussion | CVE Database V5 | 06/23/2026, 17:19:15 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-49402: CWE-78: Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection') in denoland denoCVE-2026-49402 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.7.10, Deno's node:child_process implementation provided an escapeShellArg() helper used when callers passed shell: true to spawn / spawnSync / exec and friends. On Windows, the helper failed to quote arguments that contained cmd.exe metacharacters and did not neutralize % (which cmd.exe expands even inside double-quoted strings). An attacker who controlled any portion of an argument passed to such a call could inject arbitrary additional commands into the spawned cmd.exe invocation. This vulnerability is fixed in 2.7.10. Join the discussion | CVE Database V5 | 06/23/2026, 17:20:50 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-49401: CWE-41: Improper Resolution of Path Equivalence in denoland denoCVE-2026-49401 0 Deno is a JavaScript, TypeScript, and WebAssembly runtime. Prior to 2.7.14, Deno's permission system enforces filesystem and execution restrictions by comparing the requested path against the path supplied to --deny-read, --deny-write, --deny-run, or --deny-ffi. On macOS, that comparison was done at the raw-byte level while the APFS filesystem treats different Unicode spellings of the same name as the same file. That means a program could reach a denied path by spelling it differently than the deny rule. This vulnerability is fixed in 2.7.14. Join the discussion | CVE Database V5 | 06/23/2026, 17:22:32 UTC Added: 06/23/2026, 17:39:59 UTC |
CVE-2026-44726: CWE-319: Cleartext Transmission of Sensitive Information in denoland denoCVE-2026-44726 0 Deno versions from 2.0.0 up to but not including 2.7.8 contain a vulnerability in the Node.js TLS compatibility layer. This flaw can cause a TLS client to send application data in plaintext after a connection retry when autoSelectFamily is enabled and the first address-family attempt fails. The issue arises because the socket reinitialization reuses a stale TLS upgrade hook, resulting in the replacement TCP connection not being upgraded to TLS. Consequently, data sent before the secureConnect event is transmitted unencrypted, exposing it to network attackers who can cause the initial connection to fail. This vulnerability is fixed in version 2.7.8. Join the discussion | CVE Database V5 | 06/23/2026, 17:24:02 UTC Added: 06/23/2026, 17:39:59 UTC |
Showing 1 to 10 of 10 results