mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-16 04:35:18 +03:00
Complete folder anatomy for all 649 cybersecurity skills + update LICENSE to Mahipal
- 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
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
# 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
|
||||
|
||||
```python
|
||||
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) |
|
||||
|
||||
## External References
|
||||
|
||||
- [Cloudflare Access API](https://developers.cloudflare.com/api/operations/access-applications-list-access-applications)
|
||||
- [Cloudflare Zero Trust Docs](https://developers.cloudflare.com/cloudflare-one/)
|
||||
- [cloudflare Python SDK](https://github.com/cloudflare/cloudflare-python)
|
||||
Reference in New Issue
Block a user