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
1.7 KiB
1.7 KiB
API Reference: Mobile Traffic Interception with Burp Suite
HAR (HTTP Archive) Format
Structure
{"log": {"entries": [{"request": {"method": "GET", "url": "https://...",
"headers": [{"name": "Authorization", "value": "Bearer ..."}],
"postData": {"text": "..."}},
"response": {"status": 200, "headers": [...],
"content": {"text": "..."}}}]}}
Key HAR Fields
| Field | Description |
|---|---|
request.url |
Full request URL |
request.method |
HTTP method |
request.headers |
Request headers array |
request.postData.text |
POST body content |
response.status |
HTTP status code |
response.content.text |
Response body |
Burp Suite Proxy Setup for Mobile
- Set proxy listener:
127.0.0.1:8080 - Configure device WiFi proxy to Burp IP:8080
- Install Burp CA:
http://burp/cert - Export traffic as HAR: Proxy > HTTP History > Save Items
mitmproxy Alternative
mitmproxy --mode regular --listen-port 8080
mitmdump -w output.flow --set flow_detail=3
# Convert to HAR:
mitmproxy2har output.flow > capture.har
Certificate Pinning Bypass
| Platform | Tool |
|---|---|
| Android | Frida + objection (objection explore --startup-command 'android sslpinning disable') |
| iOS | SSL Kill Switch 2 (Cydia) |
Sensitive Data Patterns
| Type | Regex Pattern |
|---|---|
[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,} |
|
| Credit Card | `\b(?:4\d{3} |
| JWT | eyJ[a-zA-Z0-9_-]+\.eyJ[a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+ |
References
- Burp Suite: https://portswigger.net/burp/documentation
- HAR spec: https://w3c.github.io/web-performance/specs/HAR/Overview.html
- mitmproxy: https://docs.mitmproxy.org/stable/