> For the complete documentation index, see [llms.txt](https://docs.halosecurity.com/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.halosecurity.com/api/events-archive/website-cookie-oos.md).

# website-cookie-oos

### Overview

* **Key:** `website-cookie-oos`
* **Name:** Website Cookie Out-of-Scope
* **Triggers when:** A cookie is detected from a host that is out-of-scope during a website scan

### Fields

| Field          | Type    | Description                |
| -------------- | ------- | -------------------------- |
| cookie\_domain | string  | Domain cookie is scoped to |
| cookie\_name   | string  | Name of cookie             |
| cookie\_path   | string  | Path cookie is scoped to   |
| detail         | string  | Hostname of cookie         |
| host           | string  | Hostname of cookie         |
| scan\_id       | string  | ID of the scan             |
| target\_id     | integer | ID of the target           |
| target         | string  | Hostname of target         |
| target\_name   | string  | Name of target             |

### Example data

```json
{
    "cookie_domain": "www.example.com",
    "host": "www.example.com",
    "scan": {
        "scan_id": "202203251719ndffffffffiTUcz6j0j7s"
    },
    "cookie_path": "/",
    "detail": "www.example.com",
    "target": {
        "target_name": "Example Name",
        "target_id": 1234,
        "target": "subdomain.example.com"
    },
    "cookie_name": "cookie"
}
```
