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

2.3 KiB

API Reference: SOAP Web Service Security Testing

WSDL Namespaces

Prefix URI Purpose
wsdl http://schemas.xmlsoap.org/wsdl/ WSDL 1.1 definitions
soap http://schemas.xmlsoap.org/wsdl/soap/ SOAP 1.1 binding
soap12 http://schemas.xmlsoap.org/wsdl/soap12/ SOAP 1.2 binding
xsd http://www.w3.org/2001/XMLSchema XML Schema types
wsse http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd WS-Security

SOAP Request Headers

Header Value Description
Content-Type text/xml; charset=utf-8 SOAP 1.1 content type
Content-Type application/soap+xml; charset=utf-8 SOAP 1.2 content type
SOAPAction "http://example.com/Operation" Target operation URI

Common Test Payloads

Test Category Severity
XXE file read (<!ENTITY xxe SYSTEM "file:///etc/passwd">) XML Injection Critical
Billion Laughs (<!ENTITY expansion) DoS High
SQL injection in parameters Injection Critical
SOAPAction header mismatch Authorization Bypass High
Missing WS-Security token Authentication Bypass Critical
XPath injection (' or '1'='1) Injection High

Python Libraries

Library Version Purpose
requests >=2.28 Send raw SOAP HTTP requests
lxml >=4.9 Parse WSDL/XML with namespace support
zeep >=4.2 Full SOAP client with WSDL parsing
suds-community >=1.1 Alternative SOAP client

lxml Key Methods

Method Description
etree.fromstring(xml_bytes) Parse XML from bytes
root.find(xpath, namespaces) Find single element
root.findall(xpath, namespaces) Find all matching elements
element.get(attr) Get attribute value

References