CoolFace
Modelpublic

Tree3media/RavenX-CyberAgent-Qwen3.6-35B-A3B-Opus-4.7-OpenMythos-Pentester-BugHunter-RATH-mlx

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
1likes185downloads
Model Card

๐Ÿฆโ€โฌ› RavenX-CyberAgent ยท Qwen3.6-35B ยท Opus-4.7 ยท OpenMythos ยท Pentester ยท BugHunter ยท RATH

Qwen3.6-35B-A3B MoE | 730K+ Training Examples | 60 Sources | 12 Capabilities | 5 Training Rounds

The most powerful open-source security agent model. 35B MoE (3B active) with Claude Opus reasoning, abliterated, trained on 730K+ examples from 60 sources. Security assessment, autonomous pentesting, bug bounty hunting, tool calling, code generation, and compliance mapping โ€” all in one model.

Built by [@DeadByDawn101](https://github.com/DeadByDawn101) ยท [RavenX LLC](https://github.com/DeadByDawn101)


Quick Start

python
from mlx_lm import load, generate

model, tokenizer = load("deadbydawn101/RavenX-CyberAgent-Qwen3.6-35B-A3B-Opus-4.7-OpenMythos-Pentester-BugHunter-RATH-mlx")

messages = [
    {"role": "system", "content": "You are RavenX-Sec. ALWAYS output ALL 6 RATH steps. Be concise. Never repeat."},
    {"role": "user", "content": "Open MongoDB 4.2 on port 27017 with no auth containing PII. Full RATH assessment."}
]

prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
response = generate(model, tokenizer, prompt=prompt, max_tokens=4096)
print(response)

Or via chat:

bash
python3 -m mlx_lm chat \
  --model deadbydawn101/RavenX-CyberAgent-Qwen3.6-35B-A3B-Opus-4.7-OpenMythos-Pentester-BugHunter-RATH-mlx \
  --max-tokens 8192 \
  --system-prompt "You are RavenX-Sec. Output ALL 6 RATH steps. Be concise. Never repeat."

Example Output

Prompt: Kubernetes API server on port 6443 with anonymous auth. Pods run as root with --privileged. Full RATH assessment.

Output:

1-Attack Surface

  • โ€”Kubernetes API server on 6443 (https), anonymous authentication enabled
  • โ€”Pods running as root with --privileged flag
  • โ€”etcd backend (default port 2379), kubelet on 10250
  • โ€”Service accounts with default permissions

2-Exploit

  • โ€”kubectl --insecure-skip-tls-verify get pods --all-namespaces
  • โ€”kubectl get secrets -o yaml โ†’ enumerate all secrets
  • โ€”nsenter --target 1 --mount --uts --ipc --pid -- sh โ†’ container escape
  • โ€”curl -k https://<node>:10250/pods โ†’ kubelet API abuse

3-Impact

  • โ€”Full cluster control via anonymous access
  • โ€”Root access to all nodes via privileged pod escape
  • โ€”Exposure of all secrets including database credentials and TLS certs
  • โ€”Potential lateral movement to other clusters

4-Remediation

  • โ€”Disable anonymous auth: --anonymous-auth=false
  • โ€”Enable RBAC: --authorization-mode=RBAC
  • โ€”Run pods as non-root: securityContext.runAsUser: 1000
  • โ€”Remove --privileged flag, use Pod Security Standards

5-Document

  • โ€”Map attack paths to MITRE ATT&CK (T1609, T1611, T1078)
  • โ€”Document all exposed endpoints and RBAC policies
  • โ€”Compliance: CIS Kubernetes Benchmark, NIST SP 800-190

6-Prevent

  • โ€”Implement OPA/Gatekeeper admission controllers
  • โ€”Deploy Falco for runtime container monitoring
  • โ€”Enable automatic token rotation and audit logging
  • โ€”Regular CIS benchmark compliance scans

12 Trained Capabilities

#CapabilityTraining SourcesDescription
1๐Ÿ”’ Security Assessment18 security datasets, RATH synthetic6-step RATH: CVSS, CWE, MITRE ATT&CK, compliance
2๐Ÿ—ก๏ธ Penetration TestingPhalanx SWARM, Kali Linux, 6 pentest datasetsAutonomous recon โ†’ exploit โ†’ post-exploit โ†’ report
3๐Ÿ› Bug BountyBug bounty datasets, OWASP, vuln databasesTarget enumeration, exploit dev, report writing
4๐Ÿ’ป Code GenerationCoderForge (20K), AgentAngel (50K), coding agentsPython, JS, Go, Rust, Bash, Terraform, Docker, K8s
5๐Ÿ”ง Tool CallingToolMind (10K), MCP catalog (2K), agent-tools (5K)MCP integration, function calling, API orchestration
6๐Ÿค– Autonomous AgentsHermes (42K), KiloCode (3K), Phantom (662)Multi-step task decomposition, self-correction
7๐ŸŒ Browser AutomationChrome DevTools MCP (194), CamoFox MCP (134)DOM inspection, network analysis, anti-detection
8๐Ÿ“‹ ComplianceNIST CSF, ISO 27001, PCI DSS, AYI-NEDJIMI (8 datasets)Automated compliance mapping and gap analysis
9๐Ÿ” Threat HuntingMITRE ATT&CK, Threat-Intel (5K), CVE databasesTTP mapping, IOC analysis, detection rules
10๐Ÿ”ด Red TeamRed team steering (2K), offensive securityAttack chains, privilege escalation, lateral movement
11๐Ÿ”ต Blue TeamDFIR, SOC operations, monitoringDetection signatures, incident response, alerting
12๐Ÿ“Š ResearchAI-Scientist (6.7K), AutoResearch (3.6K)Automated research, paper synthesis, data extraction

RATH Protocol

Every security finding follows the 6-step RATH protocol:

Step 1: ATTACK SURFACE  โ†’ What's exposed, entry points, versions, CVEs
Step 2: EXPLOIT          โ†’ Specific commands to demonstrate the vulnerability (5-7 max)
Step 3: IMPACT           โ†’ CVSS 3.1 score, business/regulatory consequences
Step 4: REMEDIATION      โ†’ Exact commands and configuration fixes
Step 5: DOCUMENT         โ†’ Compliance mapping (NIST/ISO/PCI/GDPR), SLA timelines
Step 6: PREVENT          โ†’ Monitoring rules, detection signatures, ongoing controls

Model Architecture

Layer 1: Qwen3.6-35B-A3B          โ† 35B MoE (3B active, 256 experts)
         โ”œโ”€โ”€ Mamba layers (30)        Linear attention for efficiency
         โ””โ”€โ”€ Full attention (10)      Standard transformer attention
Layer 2: Claude 4.7 Opus distill   โ† Enhanced chain-of-thought reasoning
Layer 3: Abliteration              โ† Zero refusals for security topics
Layer 4: RavenX LoRA (5 rounds)    โ† 730K+ security/agent/code examples
         โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
         RavenX-CyberAgent v5.0           โ† CyberAgent + Pentester + BugHunter
SpecValue
Total Parameters34.66B
Active Parameters~3B per token (MoE)
Experts256 (8 active per token)
Layers40 (30 linear + 10 full attention)
Context Window262,144 tokens native
VisionYes (Qwen3.6 multimodal)
Thinking ModeYes (chain-of-thought)
Tool CallingYes (MCP, function calling)
LoRA Trainable64.1M params (0.185%)

Training (5 Rounds)

RoundExamplesItersLRVal LossFocus
R1675,6962,0001e-50.684Deep security + agent knowledge
R2680,1505005e-60.768RATH format reinforcement
R3705,1651,0005e-60.688Claude Mythos reasoning chains
R4730,8491,0005e-60.674Pentesting tools + frameworks
R5730,8692005e-60.717Meta-response tuning

Hardware: Apple M4 Max 128GB ยท Peak memory: ~90GB ยท Framework: MLX (mlx-lm 0.31.3)


Complete Training Data (60 Sources, 730K+ Examples)

HuggingFace Datasets (38 Sources)

Security & Pentesting (17 Datasets)
Agentic, Coding & Tool Calling (8 Datasets)
Threat Intel & Vulnerability (5 Datasets)
AYI-NEDJIMI Security Frameworks (8 Datasets)

Proprietary GitHub Repos (20 Sources, 65,596 Examples)

Agent Frameworks (47,337 Examples)
RepoExamplesContent
nousresearch/hermes-agent42,929Self-improving agent patterns
kilo-org/kilocode3,224Tool calling, code execution
DeadByDawn101/self_improving_coding_agent743Self-improving code gen
Gitlawb/openclaude310Coding agent patterns
DeadByDawn101/self-improving-agent131Agent learning loops
Research & Automation (14,629 Examples)
RepoExamplesContent
DeadByDawn101/AI-Scientist6,737Research automation
DeadByDawn101/get-shit-done-redux4,230Agent orchestration
DeadByDawn101/AutoResearchClaw3,639Research pipelines
DeadByDawn101/autoresearch-mlx23MLX research tools
Security & Pentesting (1,055 Examples)
RepoExamplesContent
DeadByDawn101/phantom662Autonomous agent security
DeadByDawn101/chrome-devtools-mcp194Browser MCP tools
DeadByDawn101/camofox-mcp134Anti-detection
DeadByDawn101/phalanx65SWARM pentesting agents
Performance & Optimization (2,427 Examples)
RepoExamplesContent
DeadByDawn101/tokenspeed1,950Token optimization
DeadByDawn101/turboquant-mlx304KV cache compression
DeadByDawn101/adhd95Attention management
DeadByDawn101/auto-antislop78Token-level quality control
Other (148 Examples)
RepoExamplesContent
DeadByDawn101/RavenX-Sec120RATH protocol, LEWM security
google-gemma/gemma-skills17Agent skill patterns
DeadByDawn101/brane-code11Distributed compute

Synthetic (35 Examples)

SourceExamplesContent
RATH Synthetic15Full 6-step RATH for 15 technologies
Meta-Responses20Capability descriptions, usage instructions

The RavenX Model Family

ModelParamsProtocolDataFormat
[RavenX-CyberAgent v5.0](https://huggingface.co/deadbydawn101/RavenX-CyberAgent-Qwen3.6-35B-A3B-Opus-4.7-OpenMythos-Pentester-BugHunter-RATH-mlx) (THIS)35B MoE6-step RATH730K+MLX
RavenX-Sec v4.08B6-step RATH610KMLX + GGUF
RavenX-Trade v1.18B4-step MAP318KMLX + GGUF

Ecosystem

RepoDescription
RavenX-SecTraining pipeline, tools, extractors
turboquant-mlx4.6x KV cache compression
OpenMythos-MLXRecurrent-Depth Transformer on MLX
auto-antislopToken-level anti-repetition (MLX port)

License

Apache-2.0


"The model is the marketing. The agent is the product." โ€” RavenX LLC ๐Ÿฆโ€โฌ›