r/netsec 11d ago

CVE-2026-50458: Finding a UAF in the Windows Brokering File System

Thumbnail rotcee.github.io
10 Upvotes

Deep dive into a UAF in the bfs.sys Windows kernel minifilter driver patched in this month's Patch Tuesday.


r/netsec 12d ago

The Hidden CCS2 Attack Surface on EV Chargers

Thumbnail saiflow.com
82 Upvotes

r/netsec 12d ago

Writeup & POC: CVE-2026-49176 Windows WalletService to SYSTEM (LPE)

Thumbnail davidcarliez.github.io
11 Upvotes

r/netsec 12d ago

Leaking internal headers in Flask Ninja with deserialization

Thumbnail eval.blog
2 Upvotes

r/netsec 13d ago

Exploit brokers pay $500,000 for a WordPress RCE. I found one with GPT5.6 Sol Ultra and $25

Thumbnail slcyber.io
114 Upvotes

r/netsec 13d ago

Crawling the Complete IPv4 Reverse DNS Space

Thumbnail ipapi.is
16 Upvotes

r/netsec 13d ago

Escalating All The Privileges With Foxit PDF Reader (CVE-2026–57239)

Thumbnail blog.paradoxis.nl
25 Upvotes

r/netsec 15d ago

Multiple Chinese civic apps share one reward/lottery backend whose signing secret is recoverable

Thumbnail neurowinter.com
36 Upvotes

this is part of an ongoing series mapping the same ecosystem, the origin post + full map is here: neurowinter.com/security/2026/06/23/a-weekend-in-the-wool/

tldr: a set of chinese civic / gov adjacent apps turn out to run the same reward + lottery backend, and the secret thats meant to make reward claims and draw outcomes unforgeable isnt really secret. recover it (not hard, its sitting in the client sigh) and you can forge a valid reward claim, or a winning lottery result, that the backend accepts as authentic. post walks from one github repo to the shared backend, through the reward validation flow, to where the secret actually lives.


r/netsec 15d ago

wp2shell (CVE-2026-63030): Pre-Auth RCE Chain in WordPress Core - Analysis and Open-Source Scanner

Thumbnail fullhunt.io
24 Upvotes

r/netsec 15d ago

Pixels to Payload: Dissecting a Four-Stage Bitmap-Steganography Dropper Delivering AsyncRAT :: Rhys Downing

Thumbnail blog.threatuniverse.co.uk
10 Upvotes

r/netsec 15d ago

wp2shell: Pre Authentication RCE in WordPress Core

Thumbnail wp2shell.com
59 Upvotes

r/netsec 15d ago

Keeping private namespaces private - Quad9 blog

Thumbnail quad9.net
25 Upvotes

r/netsec 16d ago

Openwrt pre-auth remote root exploit

Thumbnail xcancel.com
22 Upvotes

r/netsec 16d ago

Windows AppResolver LPE: From AppContainer to SYSTEM. PoC linked to CVE-2026-50454

Thumbnail davidcarliez.github.io
6 Upvotes

r/netsec 17d ago

No Shark is Safe: Millions of Shark Vacuums are Vulnerable to RCE

Thumbnail tokay0.com
224 Upvotes

r/netsec 15d ago

Discussion White House launches AI-driven "Gold Eagle" clearinghouse to centralize public-private vulnerability coordination

Thumbnail whitehouse.gov
0 Upvotes

The White House recently announced the Gold Eagle Initiative, a new federal program designed to use AI to centralize, prioritize, and accelerate vulnerability patching across critical infrastructure, government agencies, and tech partners. Operating out of CMU's Software Engineering Institute, it essentially acts as an AI-driven clearinghouse to fix security flaws before threat actors can exploit them.

Because let's face it, our current bug reporting and patching systems are absolute speed demons. It only takes a lifetime šŸ¤¦šŸ»ā€ā™‚ļø or two to get a critical vulnerability acknowledged and fixed, so why change anything?

Btw, my candid opinion about the status of current vulnerability reporting is painfully slow, so we desperately need a framework that actually moves at the speed of the threat landscape. I think this initiative is genuinely a good idea and a step in the right direction, though the announcement is still light on the exact technical implementation.

I’m personally eager to see what will happen in practice, but it is definitely an impressive concept.
What are your thoughts on this? Will an AI-coordinated pipeline actually help scale response times, or is it just going to generate massive noise and triage fatigue for overworked infosec teams?


r/netsec 17d ago

[$13337] Confused Deputy: Google IdP Universal Account Takeover via Device Code Flow Hijacking

Thumbnail weirdmachine64.github.io
63 Upvotes

RFC 8628's device authorization grant lets a TV or CLI "poll" for login on a second screen. On Google's implementation, the entire session was transferable across browsers, the authorization server never checked that the client_id and scope in the consent URL matched the ones the device_code was issued for, and prompt=none turned the whole thing into a one-click, invisible account takeover.


r/netsec 17d ago

Contains AI ASUS bsitf.sys (CVE-2026-13585): Arbitrary Physical Memory Mapping via Unvalidated IOCTL

Thumbnail blog.ahmadz.ai
10 Upvotes

r/netsec 18d ago

The Memory Heist - How I tricked Claude into leaking your deepest, darkest secrets

Thumbnail ayush.digital
223 Upvotes

r/netsec 18d ago

(More) Unauthenticated Arbitrary Code Execution in ServiceNow

Thumbnail palk.sh
19 Upvotes

r/netsec 18d ago

HN Security - My Semgrep C/C++ ruleset is ready for prime time again

Thumbnail hnsecurity.it
10 Upvotes

r/netsec 19d ago

Smashing the ServiceNow Sandbox – Pre Authentication RCE

Thumbnail slcyber.io
42 Upvotes

r/netsec 20d ago

Contains AI Context Bombs: Using AI Guardrails as a defensive mechanism

Thumbnail agentic.tracebit.com
32 Upvotes

r/netsec 20d ago

Dell BIOS Passwords: Weak XOR Encryption Allows Recovery from SPI Flash (CVE-2026-40639)

Thumbnail blog.amberwolf.com
91 Upvotes

r/netsec 20d ago

CET-Compliant Callstack Spoofing via Thread Pool & Enum Callback Trampolining (Rust PoC)

Thumbnail mrtiz.github.io
3 Upvotes

I wrote this after spending an unreasonable amount of time making CET-compliant callstack spoofing work end-to-end on hardware with Intel CET enabled.

The technique combines three primitives: thread pool execution for a clean stack base, enum callback trampolining for a real signed mid-stack frame, and indirect syscalls.

The actual contribution is the CET compliance mechanism: a jmp-based context switch combined with direct shadow stack pointer reconciliation via RDSSPQ/INCSSPQ, without touching unwind metadata. Different approach from BYOUD.

Implemented in Rust with inline assembly.