mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-16 12:45:17 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
53 lines
1.7 KiB
Markdown
53 lines
1.7 KiB
Markdown
# Palo Alto Prisma Access Zero Trust — API Reference
|
|
|
|
## Authentication
|
|
|
|
| Parameter | Value |
|
|
|-----------|-------|
|
|
| Token URL | `https://auth.apps.paloaltonetworks.com/oauth2/access_token` |
|
|
| Grant Type | `client_credentials` |
|
|
| Scope | `tsg_id:<tenant_service_group_id>` |
|
|
|
|
## SASE Configuration API Endpoints
|
|
|
|
| Method | Endpoint | Description |
|
|
|--------|----------|-------------|
|
|
| GET | `/sse/config/v1/remote-networks` | List remote network connections |
|
|
| GET | `/sse/config/v1/service-connections` | List service connections |
|
|
| GET | `/sse/config/v1/ike-gateways` | List IKE gateway configurations |
|
|
| GET | `/sse/config/v1/security-rules` | List security policy rules |
|
|
| GET | `/sse/config/v1/hip-profiles` | List Host Information Profiles |
|
|
| GET | `/sse/config/v1/mobile-agent/global-settings` | GlobalProtect mobile user config |
|
|
| POST | `/sse/config/v1/security-rules` | Create security rule |
|
|
| PUT | `/sse/config/v1/security-rules/{id}` | Update security rule |
|
|
|
|
## Base URL
|
|
|
|
```
|
|
https://api.sase.paloaltonetworks.com
|
|
```
|
|
|
|
## Security Rule Actions
|
|
|
|
| Action | Description |
|
|
|--------|-------------|
|
|
| `allow` | Permit traffic matching rule |
|
|
| `deny` | Block traffic matching rule |
|
|
| `drop` | Silently drop traffic |
|
|
| `reset-client` | Send TCP RST to client |
|
|
|
|
## HIP Match Criteria
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `disk-encryption` | Require disk encryption enabled |
|
|
| `firewall` | Require host firewall active |
|
|
| `patch-management` | Require OS patches current |
|
|
| `anti-malware` | Require AV/EDR running |
|
|
|
|
## External References
|
|
|
|
- [Prisma Access SASE API](https://pan.dev/sase/api/)
|
|
- [Prisma Access Configuration Guide](https://docs.paloaltonetworks.com/prisma-access)
|
|
- [SASE Authentication](https://pan.dev/sase/docs/getstarted/)
|