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 · 56m 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 · 56m 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.

104 results in Analysis

🔬 AnalysisSchneier on Security·132d ago
Meta’s AI Glasses and Privacy

Surprising no one, Meta’s new AI glasses are a privacy disaster . I’m not sure what can be done here. This is a technology that will exist, whether we like it or not. Meanwhile, there is a new Android app that detects when there are smart glasses nearby.

🔬 AnalysisSchneier on Security·133d ago
South Korean Police Accidentally Post Cryptocurrency Wallet Password

An expensive mistake : Someone jumped at the opportunity to steal $4.4 million in crypto assets after South Korea’s National Tax Service exposed publicly the mnemonic recovery phrase of a seized cryptocurrency wallet. The funds were stored in a Ledger cold wallet seized in law enforcement raids at 124 high-value tax evaders that resulted in confiscating digital assets worth 8.1 billion won (currently approximately $5.6 million). When announcing the success of the operation, the agency released photos of a Ledger device, a popular hardware wallet for crypto storage and management. However, the images also showed a handwritten note of the wallet recovery phrase, which serves as the master key that allows restoring the assets to another device. The authorities failed to redact that info, allowing anyone to transfer into their account the assets in the cold wallet. Reportedly, shortly after the press release was published, 4 million Pre-Retogeum (PRTG) tokens, worth approximately $4.8 million at the time, were transferred out of the confiscated wallet to a new address.

🔬 AnalysisGoogle Project Zero·152d ago
A Deep Dive into the GetProcessHandleFromHwnd API

In my previous blog post I mentioned the GetProcessHandleFromHwnd API. This was an API I didn’t know existed until I found a publicly disclosed UAC bypass using the Quick Assist UI Access application. This API looked interesting so I thought I should take a closer look. I typically start by reading the documentation for an API I don’t know about, assuming it’s documented at all. It can give you an idea of how long the API has existed as well as its security properties. The documentation’s remarks contain the following three statements that I thought were interesting: If the caller has UIAccess, however, they can use a windows hook to inject code into the target process, and from within the target process, send a handle back to the caller. GetProcessHandleFromHwnd is a convenience function that uses this technique to obtain the handle of the process that owns the specified HWND. Note that it only succeeds in cases where the caller and target process are running as the same user. The interesting thing about these statements is none of them are completely true. Firstly as the previous blog post outlined it’s not sufficient to have UI Access enabled to use windows hooks, you need to have the same or greater integrity level as the target process. Secondly, if you go and look at how GetProcessHandleFromHwnd is implemented in Windows 11 it’s a Win32k kernel function which opens the process directly, not using windows hooks. And finally, the fact that the Quick Assist bypass which uses the API still works with Administrator Protection means the processes can be running as different users. Of course some of the factual inaccuracies might be changes made to UAC and UI Access over the years since Vista was released. Therefore I thought it’d be interesting to do a quick bit of code archaeology to see how this API has changed over the years and perhaps find some interesting behaviors. The First Version The first version of the API exists in Vista, implemented in the oleacc.dll library. The documentation claims it was supported back in Windows XP, but that makes little sense for what the API was designed for. Checking a copy of the library from XP SP3 doesn’t show the API, so we can assume the documentation is incorrect. The API first tries to open the process directly, but if that fails it’ll use a windows hook exactly as the documentation described. The oleacc.dll library with the hook will be loaded into the process associated with the window using the SetWindowsHookEx API and specifying the thread ID parameter. However it still won’t do anything until a custom window message, WM_OLEACC_HOOK is sent to the window. The hook function is roughly as follows (I’ve removed error checking): void HandleHookMessage ( CWPSTRUCT * cwp ) { UINT msg = RegisterWindowMessage ( L"WM_OLEACC_HOOK" ); if ( cwp - message != msg ) return ; WCHAR name [ 64 ]; wParam = cwp - wParam ; StringCchPrintf ( name , _countof ( name ), L"OLEACC_HOOK_SHMEM_%d_%d" , wParam , cwp - lParam );