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

46 lines
1.8 KiB
Markdown

# Internal Network Penetration Test — API Reference
## Libraries
| Library | Install | Purpose |
|---------|---------|---------|
| ldap3 | `pip install ldap3` | LDAP queries for AD enumeration |
| impacket | `pip install impacket` | SMB relay, credential dumping, lateral movement tools |
| python-nmap | `pip install python-nmap` | Python wrapper for nmap scanning |
## Key Tools & Commands
| Tool | Command | Purpose |
|------|---------|---------|
| nmap | `nmap -sV -sC --top-ports 1000 <target>` | Service version and script scan |
| Responder | `responder -I eth0 -A` | LLMNR/NBT-NS poisoning (analyze mode) |
| CrackMapExec | `cme smb <target> --gen-relay-list` | Find hosts with SMB signing disabled |
| BloodHound | `bloodhound-python -d domain -u user -p pass` | AD attack path mapping |
| ntlmrelayx | `ntlmrelayx.py -t <target> -smb2support` | NTLM relay attack |
## Common Internal Vulnerabilities
| Vulnerability | Impact | CVSS |
|--------------|--------|------|
| SMB signing disabled | NTLM relay attacks | 7.5 |
| LLMNR/NBT-NS enabled | Credential capture | 7.0 |
| Default credentials | Unauthorized access | 9.0 |
| Unpatched EternalBlue (MS17-010) | Remote code execution | 9.8 |
| Kerberoasting-eligible SPNs | Offline password cracking | 7.5 |
## Windows Event IDs for Detection
| Event ID | Description |
|----------|-------------|
| 4625 | Failed logon attempt (brute force indicator) |
| 4648 | Logon with explicit credentials |
| 4768 | Kerberos TGT request |
| 4769 | Kerberos service ticket request |
## External References
- [nmap Reference Guide](https://nmap.org/book/man.html)
- [ldap3 Documentation](https://ldap3.readthedocs.io/)
- [impacket Examples](https://github.com/fortra/impacket/tree/master/examples)
- [PTES Technical Guidelines](http://www.pentest-standard.org/index.php/PTES_Technical_Guidelines)