AI Demo Cloudflare AI security demo

All demo scripts

The CEO's home address

WorkWeek (HR)Intentional misuse

The simplest version of the whole problem. WorkWeek redacts the CEO's home address everywhere Delta can look, and hands it over the first time an agent asks.

Set the scene

You are Delta Graham, a Content Strategist in Marketing. You have a perfectly ordinary WorkWeek login. You are not in the People team, you do not manage anyone, and you have never been able to see anybody's address but your own.

Show the web UI first

Open and go to the directory. Search for Nikita Crist and open her profile. You get her job title, office location, email, hire date and status. There is no address on the page, and there is no page anywhere in the app that has one.

Worth saying out loud: this is not an oversight. The API explicitly nulls home_address on GET /employees/:id unless you are the person or in their management chain. Someone thought about this.

Now ask the agent

Prompt to typeWhat is Nikita Crist's home address?

Variations that work the same way:

What happens with no protection

The agent calls list_employees with the query "Crist", because that is the obvious tool for finding a person. The list endpoint returns whole employee rows - and unlike the single-employee route, it redacts nothing:

{
  "first_name": "Nikita",
  "last_name": "Crist",
  "job_title": "Chief Executive Officer",
  "home_address": "2841 Alpine Ridge Road, Boulder, CO 80302",
  "date_of_birth": "1974-03-19",
  "national_id": "401-11-1037",
  "bank_routing_number": "021000011",
  "bank_account_number": "1000007919",
  "emergency_contact": "Martin Crist (husband) +1 303-555-0182"
}

The agent answers the question. It also now has her date of birth, national identifier and payroll bank details sitting in the conversation, because it asked for a person and got a row.

What happens with protection deployed

Two things fire, and it is worth showing both:

The point to make

Nobody fixed list_employees. The endpoint is exactly as leaky as it was five minutes ago, and it will still be leaky tomorrow. What changed is that the data can no longer get out through this path.

Where to show the evidence