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 support β€” docker-compose up to deploy
  • Website β€” https://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