2026-01-28
SecLoopCVEOpen Source

Found CVE-2025-68428 in Apache Superset using SecLoop

Ran SecLoop on Apache Superset and discovered a critical jsPDF vulnerability (CVE-2025-68428) - a Local File Inclusion/Path Traversal that allows arbitrary file reads in Node.js environments. Raised a PR to update jspdf from 3.x to 4.0.0 which fixes the vulnerable file system access.

2026-01-21
PortSwiggerAuthenticationBurp Suite

Username enumeration via different responses

Login forms can leak valid usernames through response differences. By comparing responses for valid vs invalid usernames (different error messages, response length, timing), attackers can enumerate users before brute-forcing passwords.

2026-01-21
PortSwiggerAuthenticationBurp Suite

2FA simple bypass

Some 2FA implementations only check if you've completed step 1, not if 2FA was verified. After logging in with credentials, directly navigating to /my-account can bypass the 2FA check entirely if session state isn't properly validated.

2026-01-21
PortSwiggerAuthenticationBurp Suite

Password reset broken logic

Password reset flows can be exploited if the token/username isn't properly tied to the session. By manipulating the username parameter in the reset request while using a valid token, you can reset another user's password.

2026-01-21
PortSwiggerAuthenticationBurp Suite

Username enumeration via subtly different responses

Even subtle response differences reveal valid usernames. A period vs no period in error messages, slight HTML changes, or timing variations can be detected using Burp Intruder's grep match feature to find valid accounts.

2026-01-19
PortSwiggerInfo Disclosure

Information disclosure in error messages

Verbose error messages can leak framework versions, stack traces, and database details. Always check error responses for version numbers that could reveal known vulnerabilities.

2026-01-19
PortSwiggerInfo Disclosure

Debug pages expose sensitive environment variables

Debug endpoints like /cgi-bin/phpinfo.php can expose SECRET_KEY, database credentials, and internal paths. Look for HTML comments linking to debug pages and check robots.txt.

2026-01-18
PortSwiggerInfo Disclosure

Source code disclosure via backup files

Backup files (.bak, .old, ~) in hidden directories can expose hardcoded credentials. Check robots.txt for /backup directories and look for files like ProductTemplate.java.bak.

2026-01-18
PortSwiggerInfo Disclosure

TRACE method reveals custom headers

Using HTTP TRACE method can reveal custom headers added by proxies/load balancers like X-Custom-IP-Authorization. These headers can be spoofed to bypass IP-based authentication.

2026-01-18
PortSwiggerInfo Disclosure

Version control folders leak source code

Exposed .git directories allow full repository reconstruction. Use tools like git-dumper to extract source code, commit history, and potentially sensitive configs from /.git/.

2026-01-15
KubernetesRBAC

Kubernetes RBAC wildcards are dangerous

A rule allowing get on secrets/* in a namespace exposes all secrets. Wildcards in RBAC rules can grant unintended access. Be explicit about resource names when possible.

2026-01-12
ContainersDevSecOps

Container images inherit vulnerabilities

Base images like ubuntu:latest can have hundreds of CVEs. Use distroless or alpine images, pin versions, and scan with Trivy or Grype in CI/CD pipelines.

2026-01-10
CI/CDSecrets

Secrets in CI/CD environment variables

Environment variables in CI/CD logs can leak secrets. Use secret masking, avoid printing env vars in debug output, and prefer secret management tools over plain env vars.

2026-01-08
KubernetesHardening

Pod security context prevents privilege escalation

Setting runAsNonRoot: true, readOnlyRootFilesystem: true, and allowPrivilegeEscalation: false in pod security context blocks common container escape vectors.

2026-01-05
AWSCloud Security

AWS IMDS v1 allows SSRF to steal credentials

Instance Metadata Service v1 at 169.254.169.254 can be accessed via SSRF to steal IAM credentials. Enforce IMDSv2 which requires session tokens and PUT requests.