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:
mukul975
2026-03-11 00:22:12 +01:00
parent 27c6414ca5
commit c21af3347e
1244 changed files with 61622 additions and 723 deletions
@@ -0,0 +1,26 @@
# API Reference — Performing GraphQL Introspection Attack
## Libraries Used
- **requests**: Send GraphQL introspection queries and depth test payloads
## CLI Interface
```
python agent.py introspect --url <graphql_endpoint> [--auth-header "Bearer token"]
python agent.py depth --url <graphql_endpoint> [--max-depth 10]
```
## Core Functions
### `run_introspection(url, headers)` — Execute `__schema` introspection query
Returns: types, queries, mutations, sensitive field detection.
### `test_depth_limit(url, max_depth, headers)` — Test query depth enforcement
Sends increasingly nested queries to detect missing depth limits.
## Sensitive Field Patterns
`password`, `token`, `secret`, `credential`, `ssn`, `credit_card`, `api_key`
## Dependencies
```
pip install requests
```