Fine-tuned Foundation-Sec-8B-Instruct by Ironcybersec on red-teaming & security assessment dataset with 10,027 examples.
Ironcybersec
Model Details
Base Model:fdtn-ai/Foundation-Sec-8B-Instruct (8B parameters)
Fine-tuning Method: LoRA (Unsloth 2026)
LoRA Rank: 16 | Alpha: 32
Training Data: 10,027 security-focused examples
Training Epochs: 3
Final Loss: 0.053
Evaluation Perplexity: 2.1228 (excellent)
Features
✅ Optimized for red-team operations and security assessments
✅ Trained on Active Directory enumeration, privilege escalation, persistence, and exploitation techniques
✅ 8B parameters (40% smaller than 14B models, fast inference)
✅ GGUF format for LM Studio & llama.cpp compatibility
✅ LoRA weights merged for standalone deployment
Usage
With Transformers
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
23model_id ="YourUsername/foundation-sec-8b-red-team"4model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")5tokenizer = AutoTokenizer.from_pretrained(model_id)67prompt ="[INST] How to enumerate Active Directory users? [/INST]"8inputs = tokenizer(prompt, return_tensors="pt").to(model.device)9outputs = model.generate(**inputs, max_new_tokens=512)10print(tokenizer.decode(outputs[0]))
With LM Studio
Download the GGUF file
Open LM Studio → Load Model
Select the .gguf file
Start chatting
With llama.cpp
./main -m foundation-sec-8b-red-team.gguf -p "[INST] Red team prompt [/INST]"
Model Type: Causal Language Model (LLM) License: Same as base model (Foundation-Sec-8B) Finetuned From:fdtn-ai/Foundation-Sec-8B-Instruct Language: English Task: Security Assessment, Red Teaming, Authorized Penetration Testing
This model is provided for educational and authorized security testing purposes only. Users are responsible for ensuring compliance with all applicable laws and regulations. Unauthorized access to computer systems is illegal. Always obtain proper authorization before conducting security assessments.
About Ironcybersec
Ironcybersec is a specialized security company focused on red-teaming, penetration testing, and advanced security research. This model represents our commitment to advancing the field of cybersecurity through cutting-edge AI and machine learning technologies.