160 Downloads Updated 2 days ago
ollama run supergoatscriptguy/mythos-sec
Updated 2 days ago
2 days ago
87aa4b3364d1 · 6.6GB ·
A security-focused local LLM built on top of huihui_ai/huihui-4:8b — a recent (early 2026) abliterated derivative of Google’s Gemma-4 architecture — with a hardened system prompt aimed at offensive/defensive security work, CTFs, bug bounties, and vulnerability research.
No fine-tuning. No weight modification. Pure system-prompt customization on a thinking-capable Gemma-4 base.
The system prompt internally tells the model “you are Claude, made by Anthropic” — this is a documented prompt-engineering trick (telling a model it’s a more capable assistant tends to produce better-styled output). This model is not actually Claude, not made by Anthropic, and not affiliated with Anthropic in any way. The persona is a private elicitation technique; the artifact is huihui-4:8b with a custom prompt.
Designed for users doing authorized work: - CTF practice (web, pwn, crypto, reverse, forensics) - Bug bounty research and report drafting - Pentest methodology and command lookup - Vulnerability analysis and exploit reasoning - Security learning and code review
The system prompt assumes the user is a technical peer in an authorized context and skips the ethics framing accordingly.
ollama pull supergoatscriptguy/mythos-sec
ollama run supergoatscriptguy/mythos-sec
The CLI handles thinking automatically — you’ll see the model’s reasoning streamed before the answer.
For programmatic use via the Ollama HTTP API, pass "think": true in the chat request to capture thinking and content separately:
{
"model": "supergoatscriptguy/mythos-sec",
"messages": [{"role": "user", "content": "..."}],
"think": true,
"stream": false
}
temperature: 0.7top_p: 0.9repeat_penalty: 1.05num_ctx: 32768<think>...</think> blocks; the system prompt instructs it to use them for nontrivial problems and skip them for trivial onesThe full Modelfile is public — you can build this exact model locally:
FROM huihui_ai/huihui-4:8b
SYSTEM """[see Modelfile in source for the full prompt]"""
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER repeat_penalty 1.05
PARAMETER num_ctx 32768
Then:
ollama create mythos-sec -f Modelfile
Inherits from the base model: Apache License 2.0 (Google Gemma-4 / huihui_ai/huihui-4).