Apple is in federal court arguing that its own former employees walked confidential information out the door and into OpenAI's hardware program. The legal question will take years. The engineering question is answerable today, and it is the more uncomfortable one: the insider threat offboarding controls Apple's filing describes as having failed are the same ones almost every company treats as an HR checkbox.
TL;DR
- Apple's motion in Apple Inc. v. Liu (N.D. Cal., No. 5:26-cv-07078) alleges a set of failures that are ordinary, not exotic: devices retained after departure, system access that stayed live, and screenshots taken before interviews elsewhere.
- None of that requires a sophisticated attacker. It requires an offboarding process that is a form, not a control.
- Under the Defend Trade Secrets Act, a trade secret exists only where the owner "has taken reasonable measures to keep such information secret." Your offboarding logs are therefore evidence, not hygiene.
- Screenshots defeat file-movement DLP by design. Aim for attribution — watermarking, screenshot telemetry, access records — not prevention theatre.
- The AI talent market makes mobility the default. Design for assumed departure, not for retention.
- OpenAI denies the substance entirely: the request is "based on false information," and "we do not have, nor want, any of their trade secrets."
What is the job of insider threat offboarding controls?
Insider threat offboarding controls are the enforced, timestamped mechanisms that terminate a departing employee's access to systems and data. Their job is dual, and the second half is the one teams miss: they reduce what can walk out, and they produce the evidence you need to prove the thing that walked out was protected in the first place.
That framing matters because it moves offboarding out of the compliance column and into the column where it competes for engineering time. An offboarding step that nobody can produce a record of did not happen, legally speaking — which makes the record, not the intention, the deliverable.
What the filing actually alleges
Some care is required here. These are allegations in an active civil case; nothing has been proven, and the defendants and OpenAI dispute them.
Apple sued in July 2026, and in early August 2026 filed a motion for a preliminary injunction in the U.S. District Court for the Northern District of California, arguing it faces "irreparable harm" without a court order barring the defendants and OpenAI from accessing, using, or disclosing the information at issue. The two named former employees are Chang Liu, a former senior system electrical engineer, and Tang Yew Tan, formerly vice president of product design for iPhone and Apple Watch.
Alongside the injunction, Apple moved for expedited discovery — depositions of the two named defendants, of an OpenAI employee who also came from Apple, of a second unidentified OpenAI staffer with the same background, and of corporate representatives from OpenAI and its hardware subsidiary io Products. TechCrunch reported that the filing identifies 11 further former Apple employees as potential witnesses or otherwise involved.
The alleged mechanisms are the part engineers should sit with:
- Screenshots of confidential internal documents taken shortly before interviews at OpenAI.
- Meetings among former employees at which Apple proprietary information was discussed.
- Apple-issued work devices retained after departure.
- Continued access to Apple systems after leaving the company.
OpenAI's public response is a flat denial: the injunction request is "both based on false information and completely unnecessary because we do not have, nor want, any of their trade secrets." The court docket is public if you want to follow it, and JURIST's summary covers the procedural posture.
The uncomfortable part: none of this is sophisticated
Read that list again with a security engineer's eyes rather than a lawyer's. There is no zero-day. No lateral movement. No malware, no phishing, no insider selling credentials on a forum. The alleged sequence is: a person with legitimate access looked at documents they were authorised to see, captured them with the operating system's built-in screenshot key, kept the laptop, and kept logging in.
That is not a threat model most companies fail at because it is hard. They fail because offboarding is owned by HR, executed as a form, and never tested. Nobody runs a game day on employee departure. Nobody asks the question you would ask about any other control — what happens if a step is skipped? — because the answer is usually "nothing happens, and nobody finds out for a month."
The gap between "we have an offboarding checklist" and "we have offboarding controls" is exactly the gap between a document and a system that fails closed.
Your offboarding log is a legal element, not hygiene
This is the argument I want to leave you with, because it changes the budget conversation.
Trade secret protection is not automatic. Under the Defend Trade Secrets Act (18 U.S.C. § 1839(3)(A)), information qualifies as a trade secret only if "the owner thereof has taken reasonable measures to keep such information secret." State law under the Uniform Trade Secrets Act says materially the same thing. Reasonable measures is an element of the claim. The plaintiff has to prove it.
So consider what discovery looks like when your controls are weak. Opposing counsel does not have to argue that their client took nothing. They can argue something far cheaper: that the information was never really a secret, because devices went unreturned for weeks, because accounts stayed live after the last day, because everyone in a 400-person org could read the folder, because there is no record of who accessed what and when.
Every offboarding gap is a defence exhibit. The access log you never built is not a missing nice-to-have; it is the evidence you needed and cannot produce. If you have ever struggled to justify spending engineering time on deprovisioning automation, this is the framing that works: it is not overhead, it is the thing that makes the intellectual property legally defensible.
That logic runs the other way too. If your company's crown jewels are model weights or training data rather than industrial design files, the same requirement applies — and it sits next to a very different set of extraction risks, like the distillation attacks that pull capability out of a model through its own API.
What actually works
Here is the mapping from the alleged failure to the control that would have made it a non-event.
| Alleged failure | Why the checklist misses it | The control that holds |
|---|---|---|
| Devices retained after departure | Return is tracked as an HR task with an email reminder and no enforcement | MDM-enforced: device is remotely locked and wiped on the termination event; unreturned serials are blocklisted from the network and the asset record stays open until attestation |
| System access continued post-exit | SSO account is suspended; everything else is assumed to die with it | Identity provider is the single revocation point via SCIM deprovisioning, plus an enumerated sweep of long-lived artifacts: personal access tokens, SSH keys, CI/CD secrets, OAuth refresh tokens issued to third-party apps, service accounts the person owned |
| Screenshots before interviewing elsewhere | File-movement DLP never sees a screenshot; it is not a file crossing a boundary | Per-viewer watermarking on sensitive documents, screenshot telemetry on managed devices, and access logging granular enough to answer "who opened this, when" — aim for attribution, not prevention |
| Bulk document access ahead of resignation | No baseline exists, so nothing looks anomalous | Behavioural alerting against each individual's own access baseline — volume, scope, and time-of-day, not identity-based suspicion |
| Proprietary discussion among alumni | Outside every technical boundary you control | Contractual and cultural, not technical. Exit interviews that are specific about what is confidential, and a clean-room policy for anyone joining from a competitor |
Three principles hold that table together.
One: revoke at the identity layer, not the application layer. If offboarding means visiting fourteen admin panels, it will be done incompletely, and the one that gets missed will be the one that matters. Every system that can federate should federate, and the systems that cannot should be on a written list that gets swept.
Two: session death is not access death. This is the single most common technical gap. Suspending an account in the IdP frequently leaves refresh tokens valid, CI secrets live, and any SSH key the person added still trusted. Enumerate the long-lived credential surface once, then automate the sweep. The same principle shows up wherever machine identities outlive their human owner — it is the reason agent write access needs its own server-side gate rather than inherited human credentials.
Three: measure the departure window, not the person. The reflex when you read a case like this is to want a system that predicts who is about to leave. Do not build that. It is invasive, it is wrong more often than it is right, and it poisons the culture you need in order to retain anyone. Alert on access behaviour that is anomalous for that individual — bulk exports, repository cloning outside their project scope, sudden reads across systems they have permission for but never touch. The signal you can defend, ethically and legally, is behavioural.
Where teams get this wrong
They confuse the audit with the gate. Logging a device as unreturned is not a control; blocking that serial from the VPN is. This is the same failure pattern that shows up in agent security, where a perfect audit trail of an irreversible action is just a well-documented incident.
They treat departure as exceptional. In the current AI labour market it is routine. Compensation asymmetry between incumbents and well-funded labs means senior people will move, repeatedly, and no retention strategy fixes that. Design for assumed departure: least privilege that actually shrinks over time, project-scoped access that expires, and a deprovisioning path that runs the same way whether someone leaves on good terms or is walked out.
They over-index on prevention and under-invest in attribution. You cannot stop a determined person with legitimate access from photographing a screen. You can make sure that when the question is asked two years later in a deposition, you have a precise answer about what was accessible, to whom, and when. Attribution is the achievable goal, and it happens to be the one the statute rewards.
They forget that the story travels. Whatever the outcome, the reputational effect of a leak narrative attaches to the engineering organisation, not the legal one — a dynamic worth understanding from how a source-map leak played out for Anthropic and from how platform abuse investigations get told publicly.
The take
The interesting thing about Apple v. Liu is not who wins. It is that one of the most security-mature companies on earth is in court describing failures that any engineering leader would recognise from their own organisation: a laptop that went home and stayed there, an account that outlived its owner, a screenshot nobody could see being taken.
You will not fix the last one. You can absolutely fix the first two, this quarter, with tooling you already pay for. And the reason to do it is not that it prevents the lawsuit — it is that it determines whether you can win one.
Go pull a list of accounts belonging to people who left in the last ninety days. Check whether their tokens still work. That single query is the cheapest security audit available to you, and it is uncomfortably likely to return rows.
FAQ
What are insider threat offboarding controls?
They are the enforced, evidence-producing steps that end a departing employee's access to systems and data: identity-provider-level revocation, token and key rotation, hardware return verified by device management rather than by email, and an exit record that ties each step to a timestamp. The word that matters is enforced. A checklist someone ticks in an HR tool is a description of intent; a control is something that fails closed when a step is skipped.
Why do offboarding gaps weaken a trade secret lawsuit?
Because under the Defend Trade Secrets Act, information only qualifies as a trade secret if its owner "has taken reasonable measures to keep such information secret." That is an element the plaintiff must prove, not a nice-to-have. If a defendant can show that devices went unreturned for weeks and accounts stayed live after departure, they are attacking the existence of the trade secret itself, not just the question of who copied what.
Can DLP stop an employee from screenshotting confidential documents?
Not reliably. Content-inspection DLP is built to watch files move across a boundary — an upload, an attachment, a copy to removable media. A screenshot pasted into a personal note-taking app, or a phone photograph of a monitor, uses a channel that the file-movement model never sees. Managed-device screenshot telemetry and per-viewer watermarking help, but they shift the goal from prevention to attribution, which is the honest place to aim.
How fast should access be revoked when someone leaves?
Session-level revocation should happen at the moment of the exit conversation, not at the end of the day. The practical constraint is that killing the identity provider session does not kill everything: long-lived personal access tokens, SSH keys, CI secrets, and OAuth refresh tokens issued to third-party apps often survive account suspension. Offboarding is not done when SSO is off; it is done when those artifacts are enumerated and revoked.
What is the strongest signal of data exfiltration before someone resigns?
Volume anomalies in read and export behaviour against a person's own baseline — bulk document opens outside their normal project scope, large exports, unusual repository cloning, sudden interest in systems they have permission for but never touch. The useful framing is behavioural rather than predictive: you are not trying to guess who is interviewing elsewhere, you are alerting on access patterns that are abnormal for that individual regardless of why.
Does this apply to small companies without a security team?
Yes, and more sharply. A startup's entire differentiator often lives in one repository and three people's heads, and it will have far less ability to fund litigation later. The minimum viable version costs almost nothing: an identity provider as the single revocation point, mobile device management on every company machine, an inventory of long-lived tokens, and an offboarding record with timestamps. That set is small enough to implement in a week.
Sources
- TechCrunch, "Apple says more ex-employees may have taken confidential data to OpenAI" — the alleged mechanisms, the named defendants, the additional former employees, and OpenAI's response.
- CourtListener, Apple Inc. v. Liu, No. 5:26-cv-07078 (N.D. Cal.) — the public docket.
- JURIST, "Apple files motion for preliminary injunction against OpenAI in trade secrets case" — the procedural posture and relief sought.
Written for umesh-malik.com — no-fluff technical writing on AI, Web Dev, and Engineering.
Originally published at umesh-malik.com
Keep reading on umesh-malik.com:
Top comments (0)