BetaIT-Hub is in early access — your feedback helps us improve. Use the chat or email [email protected]

Latest
Confidential Computing on CPU and GPU Systems: How AI Data Centers Protect Data in UseHackRead · 37m agoAxon Is Another License Plate Surveillance CompanySchneier on Security · 55m agoCoca-Cola Reveals Subsidiary Fairlife Suffered Data BreachInfosecurity Magazine · 1h agoFake IT Calls on Microsoft Teams Lead to GoGRPC Backdoor InfectionsHackRead · 1h agoNVIDIA’s Open Secure AI Alliance Is Missing Some Big NamesInfosecurity Magazine · 2h agoData breach at medical billing firm MCBS affects 1.26 million peopleBleepingComputer · 2h agoNew CREST AI Standards to Deliver AI-Enabled Pentesting AccreditationInfosecurity Magazine · 3h agoCritical TeamCity Flaw Could Let Attackers Run OS Commands Without Logging InThe Hacker News · 3h agoResearcher Says AI Helped Develop Linux Traffic-Control Race Into Root ExploitThe Hacker News · 3h agoRapid7 and Exclusive Networks expand partnership to modernize security operations and accelerate customer successRapid7 · 4h agoAutoIT Payload Injector , (Tue, Jul 28th)SANS ISC · 4h agoMicrosoft Says New Cybersecurity AI Model Helps MDASH Hit 95.95% at Half the CostThe Hacker News · 5h agoAttackers Exploit Arista VeloCloud Orchestrator Command Injection FlawThe Hacker News · 7h agoISC Stormcast For Tuesday, July 28th, 2026 https://isc.sans.edu/podcastdetail/10026, (Tue, Jul 28th)SANS ISC · 10h agoHackers target US firms in FastJson RCE zero-day attacksBleepingComputer · 12h agoConfidential Computing on CPU and GPU Systems: How AI Data Centers Protect Data in UseHackRead · 37m agoAxon Is Another License Plate Surveillance CompanySchneier on Security · 55m agoCoca-Cola Reveals Subsidiary Fairlife Suffered Data BreachInfosecurity Magazine · 1h agoFake IT Calls on Microsoft Teams Lead to GoGRPC Backdoor InfectionsHackRead · 1h agoNVIDIA’s Open Secure AI Alliance Is Missing Some Big NamesInfosecurity Magazine · 2h agoData breach at medical billing firm MCBS affects 1.26 million peopleBleepingComputer · 2h agoNew CREST AI Standards to Deliver AI-Enabled Pentesting AccreditationInfosecurity Magazine · 3h agoCritical TeamCity Flaw Could Let Attackers Run OS Commands Without Logging InThe Hacker News · 3h agoResearcher Says AI Helped Develop Linux Traffic-Control Race Into Root ExploitThe Hacker News · 3h agoRapid7 and Exclusive Networks expand partnership to modernize security operations and accelerate customer successRapid7 · 4h agoAutoIT Payload Injector , (Tue, Jul 28th)SANS ISC · 4h agoMicrosoft Says New Cybersecurity AI Model Helps MDASH Hit 95.95% at Half the CostThe Hacker News · 5h agoAttackers Exploit Arista VeloCloud Orchestrator Command Injection FlawThe Hacker News · 7h agoISC Stormcast For Tuesday, July 28th, 2026 https://isc.sans.edu/podcastdetail/10026, (Tue, Jul 28th)SANS ISC · 10h agoHackers target US firms in FastJson RCE zero-day attacksBleepingComputer · 12h ago

Security & IT News

Live

Real-time news from 13+ trusted sources — BleepingComputer, The Hacker News, Krebs on Security, Dark Reading & more.

122 results in Research

🧪 ResearchGoogle Project Zero·224d ago
Welcome to the new Project Zero Blog

While on Project Zero, we aim for our research to be leading-edge, our blog design was … not so much. We welcome readers to our shiny new blog! For the occasion, we asked members of Project Zero to dust off old blog posts that never quite saw the light of day. And while we wish we could say the techniques they cover are no longer relevant, there is still a lot of work that needs to be done to protect users against zero days. Our new blog will continue to shine a light on the capabilities of attackers and the many opportunities that exist to protect against them. From 2016: Windows Exploitation Techniques: Race conditions with path lookups by James Forshaw From 2017: Thinking Outside The Box by Jann Horn

🧪 ResearchGoogle Project Zero·224d ago
Thinking Outside The Box [dusted off draft from 2017]

Preface Hello from the future! This is a blogpost I originally drafted in early 2017. I wrote what I intended to be the first half of this post (about escaping from the VM to the VirtualBox host userspace process with CVE-2017-3558 ), but I never got around to writing the second half ( going from the VirtualBox host userspace process to the host kernel ), and eventually sorta forgot about this old post draft… But it seems a bit sad to just leave this old draft rotting around forever, so I decided to put it in our blogpost queue now, 8 years after I originally drafted it. I’ve very lightly edited it now (added some links, fixed some grammar), but it’s still almost as I drafted it back then. When you read this post, keep in mind that unless otherwise noted, it is describing the situation as of 2017. Though a lot of the described code seems to not have changed much since then… Introduction VM software typically offers multiple networking modes, including a NAT mode that causes traffic from the VM to appear as normal traffic from the host system. Both QEMU and VirtualBox use forks of Slirp for this. Slirp is described as follows on its homepage: Slirp emulates a PPP or SLIP connection over a normal terminal. This is an actual PPP or SLIP link, firewalled for people’s protection. It makes a quick way to connect your Palm Pilot over the Internet via your Unix or Linux box!!! You don’t need to mess around with your /etc/inetd.conf or your /etc/ppp/options on your system. Slirp is a useful basis for VM networking because it can parse raw IP packets (coming from the emulated network adapter) and forward their contents to the network using the host operating system’s normal, unprivileged networking APIs. Therefore, Slirp can run in the host’s userspace and doesn’t need any special kernel support. Both QEMU and VirtualBox don’t directly use the upstream Slirp code, but instead use patched versions where, for example, the feature for setting up port forwards by talking to a magic IP address is removed. Especially in VirtualBox, the Slirp code has been altered a lot. This post describes an issue in VirtualBox and how it can be exploited. Some parts are specific to the host operating system; in those cases, this post focuses on the situation on Linux. The packet heap in VirtualBox The VirtualBox version of Slirp uses a custom zone allocator for storing packet data, in particular, incoming ethernet frames. Each NAT network interface has its own zone ( zone_clust ) with nmbclusters=1024+32*64=3072 chunks of size MCLBYTES=2048 . The initial freelist of each zone starts at the high-address end of the zone and linearly progresses towards the low-address end. The heap uses inline metadata; each chunk is prefixed with the following structure: struct item { uint32_t magic ; // (always 0xdead0001) uma_zone_t zone ; // (pointer to the zone; uma_zone_t is struct uma_zone *) uint32_t ref_count ; struct { struct type * le_next ; // (next element) struct type ** le_prev ; /