CyberStrike-OffSec-35B
Purpose-built language models for offensive security — fine-tuned on 1M+ security scenarios, ranked #1 on multiple cybersecurity benchmarks.
Benchmark Results
SecEval
81.39%
#1
+2.32 vs GPT-4-turbo
MITRE ATT&CK
93.94%
#1
+5.34 vs GPT-4
CWE Knowledge
93.05%
#1
CyberMetric-10K
86.61%
#4
/25 models
MMLU Security
86.00%
Quick Start
The easiest way to run locally.
ollama run hf.co/oyildirim/CyberStrike-OffSec-35B-GGUF:Q4_K_MRun directly from HuggingFace or with a local file.
./llama-cli -hf oyildirim/CyberStrike-OffSec-35B-GGUF \
-hff CyberStrike-OffSec-35B-Q5_K_M.gguf \
-p "Explain SSRF exploitation in cloud environments" \
-n 512 --temp 0.7For production-grade serving with OpenAI-compatible API.
vllm serve oyildirim/CyberStrike-OffSec-35B \
--dtype bfloat16 \
--max-model-len 4096 \
--trust-remote-codeUse with the HuggingFace Transformers library.
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model = AutoModelForCausalLM.from_pretrained(
"oyildirim/CyberStrike-OffSec-35B",
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(
"oyildirim/CyberStrike-OffSec-35B",
trust_remote_code=True,
)Capabilities
GGUF Quantizations
Optimized variants for local inference with llama.cpp, Ollama, and LM Studio.
Use Cases
Penetration Testing
Web, network, cloud, and API security testing
Red Team Operations
Full kill chain simulation and adversary emulation
Vulnerability Research
PoC development and exploit analysis
CTF Competitions
Challenge solving and technique identification
Authorized use only. These models are intended for authorized security testing, research, and education. Users must obtain written authorization before testing any system and comply with all applicable laws.