Skip to content

Releases: cyberviser/Hancock

v0.3.0 — Multi-Language SDK + Qwen 2.5 Coder 32B

21 Feb 21:43
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

What's New in v0.3.0

🧠 Qwen 2.5 Coder 32B

  • New /v1/code endpoint — YARA rules, Sigma detections, KQL/SPL queries, exploit PoCs
  • /mode code in CLI auto-switches to Qwen Coder model
  • Model aliases: mistral-7b | qwen-coder | llama-8b | mixtral-8x7b

🐍 Python SDK

pip install openai python-dotenv
from hancock_client import HancockClient
h = HancockClient()
print(h.code('YARA rule for Emotet', language='yara'))

🟨 Node.js SDK

cd clients/nodejs && npm install
export NVIDIA_API_KEY=nvapi-...
node hancock.js --mode code --task 'KQL query for Pass-the-Hash'

🎓 GPU Fine-tuning

  • Modal.com runner (train_modal.py) — free $30/mo credits
  • Kaggle notebook — 30h/week T4
  • GitHub Actions workflow — GPU choice dropdown

📦 Packaging

  • pyproject.toml — installable via pip install -e .
  • make client-python + make client-node

Full changelog: https://github.com/cyberviser/Hancock/blob/main/CHANGELOG.md

v0.2.0 — Security Hardening + Business Launch

21 Feb 20:46
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

What's New

🔐 Security

  • API authentication — Bearer token auth on all /v1/* endpoints (HANCOCK_API_KEY env var)
  • Rate limiting — 60 req/min per IP, configurable via HANCOCK_RATE_LIMIT
  • Proper 401 / 429 HTTP responses

🌐 Website

  • Pricing page — Community / Pro $299/mo / Enterprise / API $0.008/req
  • Contact form — Lead capture via Netlify Forms → cyberviser@proton.me
  • SEO — Open Graph, Twitter Card, sitemap.xml, robots.txt
  • Auto-deploy — GitHub Actions deploys docs/ to Netlify on every push

🤖 Model

  • Fine-tuning v2 — dedup, LoRA r=32, resume from checkpoint, HuggingFace Hub push

📧 Outreach

  • 5 cold email/DM templates for MSSPs, pentest firms, investors, bug bounty hunters
  • Target platform list (Reddit, LinkedIn, HackerNews, DEF CON CFP)

Live site: https://cyberviser.netlify.app
Docs: https://cyberviser.netlify.app/api
Pricing: https://cyberviser.netlify.app/pricing

v0.1.0 — Hancock Phase 1: Pentest + SOC Specialist

21 Feb 19:37
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

🛡️ Hancock v0.1.0 — Phase 1 Release

CyberViser's AI-powered cybersecurity agent is live.

What's included

  • Pentest Specialist mode — MITRE ATT&CK + NVD/CVE fine-tuned Mistral 7B
  • SOC Analyst mode — Alert triage, SIEM query gen, PICERL playbooks
  • Auto mode — Context-aware pentest + SOC combined
  • REST API — 5 endpoints: /v1/chat, /v1/ask, /v1/triage, /v1/hunt, /v1/respond
  • Fine-tuning pipeline — MITRE ATT&CK + NVD/CVE + Pentest KB collectors
  • Docker supportdocker-compose up to deploy
  • Websitehttps://cyberviser.github.io/Hancock/

Quick Start

git clone https://github.com/cyberviser/Hancock.git
cd Hancock && make setup
python hancock_agent.py --server

Full Changelog

See CHANGELOG.md