惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
量子位
A
About on SuperTechFans
G
Google Developers Blog
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data Anthropic Updated Privacy Policy to Include Identity Verification for Claude Users
Researcher Earns $148,337 for Google Cloud Production RCE...
Abinaya · 2026-06-23 · via Cyber Security News

A researcher has earned a total of 148,337 USD from Google for uncovering a set of flaws in Google Cloud’s Application Integration service that escalated into remote code execution (RCE) in Google Cloud production.

The core bug is now tracked as CVE‑2026‑2031. The researcher Arvin Shivram has publicly documented the issue under the title “StubZero: $148,337 RCE in Google Cloud Production” on BruteCat’s blog.

CVE-2026-2031 as a critical access control flaw in Google Cloud Application Integration that can enable remote code execution, carrying a CVSS score of 10.0.

Google has addressed the issue by restricting internal endpoint access, fixing IDOR weaknesses, and strengthening RPC security controls.

According to Arvin Shivram’s own write‑up on BruteCat.com, the chain began when an automated fuzzing tool flagged the internal API cloudcrmipfrontend-pa.googleapis.com for returning HTTP 200 responses on suspicious debugging endpoints.

Further probing revealed an endpoint, v1/integrationPlatform/getProtoDefinition, that would return protobuf descriptors for arbitrary internal messages and services, including YouTube and Google’s internal CRM stack.

Because Google’s internal services are heavily protobuf‑driven, this “req2proto as a service” style leak gave the attacker a near‑complete view of internal API schemas, making black‑box research far easier.

The same API surface also exposed a listQuotaQueue endpoint, which, when queried with the right parameters and X-Goog-Encode-Response-If-Executable: base64, leaked an internal workflow execution queue along with a crucial clientId value (default).

Google Cloud Production RCE Vulnerability

Armed with the leaked client ID, the researcher could create draft workflows via createDraftWorkflow in the internal Application Integration backend and began exploring tasks visible in the discovery document.

The turning point came with an internal task type called GenericStubbyTypedTaskV2, which the BruteCat article identifies as a generic wrapper around Google’s Stubby RPC framework inside Application Integration workflows.

By configuring GenericStubbyTypedTaskV2 with parameters such as serverSpec, serviceName, and serviceMethod, the attacker could trigger arbitrary Stubby RPC calls from Google’s production environment, using the privileged service identity of the integration platform.

Google’s Cloud Vulnerability Reward Program documentation classifies Stubby‑level access as RCE in the production environment because it provides broad access to internal services and data, depending on the RpcSecurityPolicy of the target.

Initially, workflow publishing was blocked by a two‑person approval requirement that prevented a single account from both editing and publishing a workflow.

The researcher explains on BruteCat.com that they bypassed this restriction by abusing an internal ACL endpoint, integrationPlatform/auth/setAcl, to add two attacker‑controlled Google accounts to the workflow ACL, using one as the requester and the other as approver.

In a subsequent collaboration with another researcher (“shrugged”), they discovered that Google’s initial mitigations were only partially deployed across backend instances behind a load balancer.

By repeatedly sending createDraftWorkflow requests until they hit a still‑vulnerable backend, they preserved the RCE path just before the fix fully propagated, a detail highlighted both in the BruteCat write‑up and in later podcast discussions (Critical Thinking – Episode 177).

Three months later, the same researcher identified a second RCE chain in the public Application Integration APIs involving insecure direct object references (IDOR) and the “test cases” feature.

The BruteCat post details how a global test case listing RPC, combined with a binary‑search filter technique, allowed reconstruction of victim integration UUIDs and cross‑tenant access to full workflow definitions, including those operated by internal Google teams.

Google’s Cloud VRP rules, as published on the official program page, describe tiered payouts for “Compromise of Google Cloud Production Environment,” with higher tiers for privileged production users and admin‑level access.

In line with this, Google awarded 60,000 USD for the first chain, 75,000 USD for the second, and an additional 13,337 USD for a lingering single‑service privilege escalation, for a combined payout of 148,337 USD.

Follow us on Google NewsLinkedIn, and X to Get More Instant Updates.

Abinaya

Abinayahttps://cybersecuritynews.com/

Abi is a Security Editor and fellow reporter with Cyber Security News. She is covering various cyber security incidents happening in the Cyber Space.