Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):

- brain/        LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
                dispatch, A51 channels, and the OSINT cluster
- knowledge/    LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
                MITRE ATT&CK data
- reference/    defensive threat-reference (C3, shhbruh doc) + AdaYaml parser

License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.

Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.

https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
2026-06-10 06:53:01 +00:00

1.8 KiB

API Reference: Testing API for Broken Object Level Authorization

BOLA Test Types

Test Method Severity
Horizontal read GET victim's resource with attacker token High
Horizontal write PATCH/PUT victim's resource Critical
Horizontal delete DELETE victim's resource Critical
ID enumeration Sequential/predictable ID access High
Method bypass Different HTTP methods on same resource High
Batch request Include victim IDs in batch endpoint High
Nested resource Access child via parent swap High

Object ID Types

Type Example Predictability
Sequential integer /orders/1042 High
UUID v4 /orders/550e8400-... Low
Encoded/base64 /orders/MTAwMg== Medium
Composite /users/42/orders/1042 High
Slug /profiles/john-doe Medium

OWASP API1:2023 Checks

Check Description
Per-object authorization Every object access checks ownership
Data-layer enforcement WHERE user_id = authenticated_user.id
Rate limiting Slow enumeration attempts
UUID over sequential Reduce predictability
Batch endpoint auth Validate all IDs in arrays

Automated Tools

Tool Purpose
Autorize (Burp) Automated BOLA detection
OWASP ZAP Access Control Authorization boundary testing
ffuf ID enumeration at scale
Postman Manual BOLA testing

Python Libraries

Library Version Purpose
requests >=2.28 HTTP API calls
json stdlib Response parsing

References