mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
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
62 lines
1.5 KiB
Markdown
62 lines
1.5 KiB
Markdown
# API Reference: Implementing API Schema Validation Security
|
|
|
|
## jsonschema (Python)
|
|
|
|
```python
|
|
import jsonschema
|
|
schema = {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {"type": "string", "maxLength": 100},
|
|
"email": {"type": "string", "format": "email"},
|
|
},
|
|
"required": ["name", "email"],
|
|
"additionalProperties": False, # Prevent mass assignment
|
|
}
|
|
jsonschema.validate(instance=payload, schema=schema)
|
|
```
|
|
|
|
## OpenAPI Security Checks
|
|
|
|
| Check | Risk | Severity |
|
|
|-------|------|----------|
|
|
| No request body schema | Injection | HIGH |
|
|
| additionalProperties: true | Mass assignment | MEDIUM |
|
|
| String without maxLength | Buffer overflow | MEDIUM |
|
|
| No response schema | Data exposure | MEDIUM |
|
|
| No security scheme | Broken auth | CRITICAL |
|
|
| Security explicitly disabled | Unauthenticated access | CRITICAL |
|
|
|
|
## OpenAPI Schema Best Practices
|
|
|
|
```yaml
|
|
components:
|
|
schemas:
|
|
User:
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
name:
|
|
type: string
|
|
maxLength: 100
|
|
pattern: "^[a-zA-Z ]+$"
|
|
email:
|
|
type: string
|
|
format: email
|
|
maxLength: 255
|
|
required: [name, email]
|
|
```
|
|
|
|
## Spectral (OpenAPI Linter)
|
|
|
|
```bash
|
|
spectral lint openapi.yaml --ruleset .spectral.yaml
|
|
# Custom security rules in .spectral.yaml
|
|
```
|
|
|
|
### References
|
|
|
|
- jsonschema: https://python-jsonschema.readthedocs.io/
|
|
- OpenAPI 3.0: https://spec.openapis.org/oas/v3.0.3
|
|
- Spectral: https://stoplight.io/open-source/spectral
|