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
63 lines
1.9 KiB
Markdown
63 lines
1.9 KiB
Markdown
# API Reference: Performing SSL/TLS Security Assessment
|
|
|
|
## sslyze Python API
|
|
|
|
```python
|
|
from sslyze import Scanner, ServerScanRequest, ServerNetworkLocation
|
|
|
|
location = ServerNetworkLocation(hostname="example.com", port=443)
|
|
request = ServerScanRequest(server_location=location)
|
|
scanner = Scanner()
|
|
scanner.queue_scans([request])
|
|
|
|
for result in scanner.get_results():
|
|
scan = result.scan_result
|
|
# Access individual scan command results
|
|
tls12 = scan.tls_1_2_cipher_suites
|
|
cert = scan.certificate_info
|
|
heartbleed = scan.heartbleed
|
|
```
|
|
|
|
Install: `pip install sslyze`
|
|
|
|
## Scan Command Attributes
|
|
|
|
| Attribute | Check |
|
|
|-----------|-------|
|
|
| ssl_2_0_cipher_suites | SSLv2 support (must be disabled) |
|
|
| ssl_3_0_cipher_suites | SSLv3 support (must be disabled) |
|
|
| tls_1_0_cipher_suites | TLS 1.0 (deprecated) |
|
|
| tls_1_1_cipher_suites | TLS 1.1 (deprecated) |
|
|
| tls_1_2_cipher_suites | TLS 1.2 (current) |
|
|
| tls_1_3_cipher_suites | TLS 1.3 (recommended) |
|
|
| certificate_info | Certificate chain validation |
|
|
| heartbleed | CVE-2014-0160 Heartbleed |
|
|
| robot | ROBOT RSA oracle attack |
|
|
| openssl_ccs_injection | CVE-2014-0224 |
|
|
| session_renegotiation | Client-initiated renego |
|
|
|
|
## Weak Cipher Suite Keywords
|
|
|
|
| Keyword | Risk | Description |
|
|
|---------|------|-------------|
|
|
| RC4 | High | Broken stream cipher |
|
|
| DES / 3DES | High | Weak block cipher |
|
|
| NULL | Critical | No encryption |
|
|
| EXPORT | Critical | Weak export-grade cipher |
|
|
| anon | Critical | No authentication |
|
|
|
|
## sslyze CLI
|
|
|
|
```bash
|
|
sslyze example.com --regular
|
|
sslyze example.com --certinfo --tlsv1_2 --heartbleed --robot
|
|
sslyze example.com --json_out results.json
|
|
```
|
|
|
|
## References
|
|
|
|
- sslyze GitHub: https://github.com/nabla-c0d3/sslyze
|
|
- sslyze Docs: https://nabla-c0d3.github.io/sslyze/documentation/
|
|
- sslyze PyPI: https://pypi.org/project/sslyze/
|
|
- Mozilla TLS Config: https://wiki.mozilla.org/Security/Server_Side_TLS
|