mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-06-11 05:34:55 +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
1.4 KiB
1.4 KiB
Cloudflare Access Zero Trust — API Reference
Libraries
| Library | Install | Purpose |
|---|---|---|
| requests | pip install requests |
Cloudflare API v4 client |
Cloudflare Access API Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /accounts/{id}/access/apps |
List Access applications |
| GET | /accounts/{id}/access/apps/{id}/policies |
List app policies |
| GET | /accounts/{id}/access/groups |
List Access groups |
| GET | /accounts/{id}/access/identity_providers |
List IdP configs |
| GET | /accounts/{id}/access/service_tokens |
List service tokens |
| POST | /accounts/{id}/access/apps |
Create application |
| PUT | /accounts/{id}/access/apps/{id} |
Update application |
Authentication
headers = {
"Authorization": "Bearer <api_token>",
"Content-Type": "application/json"
}
Access Policy Rule Types
| Rule | Description |
|---|---|
include |
Must match (OR within group) |
exclude |
Must not match |
require |
Must match (AND) |