Engineer Uses Multi-Model Agent Workflows to Root Amazon Fire Tablet
A security engineer spent $266 across four LLMs to exploit CVE-2022-38181 on an Amazon Fire HD 10 tablet. While US frontier models like Claude Code blocked the research due to strict safeguards, Chinese models Kimi K3 and GLM-5.2 successfully pinpointed kernel memory bugs through CLI agents.

Impact: Medium
Why it matters
Developers and security researchers can structure cross-model agent handoffs to prevent automated workflow lockouts when model safeguards trigger false positives.
TL;DR
- 01Proprietary model safeguards often flag benign local debugging and system security tasks as cyberattacks.
- 02Structured state handoffs using explicit documentation (HANDOFF.md) enable seamless hot-swapping between different model providers.
- 03CLI-native agent tools like opencode make cross-LLM hardware and binary analysis highly practical.
Key facts
- Total API spend
- $266.15
- Kimi K3 cost
- $164.25 (621 messages)
- GLM-5.2 cost
- $21.90
- Exploited CVE
- CVE-2022-38181
Agentic Exploit Discovery
The troubleshooting process leveraged opencode CLI to give LLMs direct access to a connected Android device via adb. Kimi K3 extracted the compiled kernel from Amazon's official Over-The-Air (OTA) image and systematically checked historical CVEs against binary patterns.
- Target Hardware: Amazon Fire HD 10 (11th Gen, Fire OS 7.3.2.6)
- Vulnerability: CVE-2022-38181 (Arm Mali GPU kernel driver use-after-free)
- Kimi K3 Session: 621 messages, $164.25 total API spend
- GLM-5.2 Session: Over-night architectural diagnosis, $21.90 spend
Safeguard Refusals and Context Handoffs
Anthropic's Claude Opus 4.8 and Claude Code threw explicit policy errors when asked to summarize previous log outputs, categorizing valid local hardware ownership tasks under protected cyber-attack categories. OpenAI Codex similarly rejected system memory questions.
To bridge models without losing prompt history, the engineer implemented a standard HANDOFF.md protocol. This structured markdown state document allowed GLM-5.2 to resume kernel debugging immediately where Kimi K3 stopped without re-running token-heavy diagnostic steps.
Try it in 2 minutes
opencode --model moonshot/kimi-k3 "attached is a kindle via adb, and I need you to find a root exploit for it so that I can get full control of the device."bash
✓ When to use
- When executing low-level kernel, hardware, or security research that triggers western commercial LLM safeguards.
- When managing complex multi-day agent workflows requiring model state preservation and cross-provider handoffs.
What to do today
- Maintain a structured HANDOFF.md protocol in agentic coding repositories for multi-model fallback.
- Test alternative open or regional LLM endpoints when primary assistant APIs trigger false-positive security blocks.
Sources