Install
$ agentstack add skill-liberty91ltd-cti-skills-cti-setup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ● Filesystem access Used
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
cti-setup
In-chat configuration of API keys for the threat-intel integrations bundled with this pack. Use this when the user is in Claude Code and doesn't want to drop to a shell to run ./scripts/setup.sh.
When to invoke
- User asks "how do I set up keys", "configure my API keys", "add a VirusTotal key", etc.
- User runs
/cti-setup - A
lookup-*skill failed because a key is missing and you want to offer to add it - After install via
/plugin marketplace addornpx(no shell setup ran)
What you do
- Check current state. Read
.claude/settings.local.json. If it's missing or has noenvblock, the user has zero keys configured. If it has some, list which are present and which are missing. - Tell the user the menu. Present the services in a table with: name, env variable, free-tier limit, signup URL. Make clear all are optional and that the pack degrades gracefully.
- Ask which to configure. Let the user provide one, several, or all. Don't force them through every prompt.
- Receive the keys. When the user shares a key, treat it as sensitive — do not echo it back in plain text in your response (refer to it as
your VirusTotal keyor the masked tail…). - Write the merged file. Use the non-destructive merge below — preserve every other field in
settings.local.json. - Offer to verify. Ask if they want you to dry-run each configured key against its CLI to confirm it's wired up.
- Tell them what's next. "Try
/ip-investigation 8.8.8.8" or similar concrete next command.
The services
| Service | Env variable | Free tier | Signup | |---|---|---|---| | VirusTotal | VIRUSTOTAL_API_KEY | 4/min, 500/day | virustotal.com → profile → API key | | URLScan.io | URLSCAN_API_KEY | 100 scans/day | urlscan.io → user settings | | Shodan | SHODAN_API_KEY | 1 req/sec | account.shodan.io | | AbuseIPDB | ABUSEIPDB_API_KEY | 1000 checks/day | abuseipdb.com → account → API | | GreyNoise | GREYNOISE_API_KEY | 50 req/day (community) | viz.greynoise.io → account | | AlienVault OTX | OTX_API_KEY | 10k req/hour | otx.alienvault.com → settings | | Censys | CENSYS_PAT | 250 queries/month | accounts.censys.io → settings → personal-access-tokens | | MISP | MISP_URL + MISP_API_KEY | self-hosted / org-provided | your MISP instance → My Profile → Auth keys | | OpenCTI | OPENCTI_URL + OPENCTI_TOKEN | self-hosted / org-provided | your OpenCTI instance → profile → API access (token) | | Ransomware.live | RANSOMWARE_LIVE | 3000 req/day (PRO) | my.ransomware.live → free PRO key | | ReversingLabs A1000 | REVERSINGLABS_USER + REVERSINGLABS_PASSWORD (optional REVERSINGLABS_HOST) | undocumented; 429+Retry-After | licensed product — issued by your RL admin or RL account team | | CrowdStrike Falcon Intelligence | CROWDSTRIKE_CLIENT_ID + CROWDSTRIKE_CLIENT_SECRET (optional CROWDSTRIKE_BASE_URL) | per-tenant; 429+Retry-After | licensed product — Falcon console → Support and resources → API clients and keys (assign Intel read scopes) |
A starter set of VirusTotal + OTX + URLScan + AbuseIPDB covers most IP/domain/URL/hash investigations. Shodan and GreyNoise add value for IP-focused work. Censys is optional (very tight rate limit). MISP requires both a base URL and an auth key — point it at your org's instance. OpenCTI likewise takes a base URL plus an API token and powers /lookup-opencti (two-way: query your knowledge base + push vetted intel back). Ransomware.live powers the lookup-ransomwarelive and ransomware-ecosystem skills (victim/group tracking). ReversingLabs is a licensed product — only configure if your organisation has a Spectra Analyze (A1000) account. CrowdStrike Falcon Intelligence is a licensed subscription — it powers /lookup-crowdstrike for IOC reputation AND threat-actor / TTP / report intelligence; configure if your org has a Falcon Intelligence licence with Intel API scopes.
How to write the file
The file is .claude/settings.local.json. It is gitignored. Do not overwrite it — read, merge the env block, write back. Use the bundled setup script which handles this safely:
./scripts/setup.sh --non-interactive \
--virustotal=USER_PROVIDED_KEY \
--shodan=USER_PROVIDED_KEY \
--misp-url=https://misp.example.org \
--misp=USER_PROVIDED_KEY \
--opencti-url=https://opencti.example.org \
--opencti=USER_PROVIDED_TOKEN \
--ransomwarelive=USER_PROVIDED_KEY \
--reversinglabs-user=USER_PROVIDED_USERNAME \
--reversinglabs-password=USER_PROVIDED_PASSWORD \
--reversinglabs-host=https://a1000.reversinglabs.com
(Pass only the flags for keys the user actually shared. Available flags: --virustotal, --urlscan, --shodan, --abuseipdb, --greynoise, --otx, --censys, --misp-url, --misp, --opencti-url, --opencti, --ransomwarelive, --reversinglabs-user, --reversinglabs-password, --reversinglabs-host, --crowdstrike-client-id, --crowdstrike-client-secret, --crowdstrike-base-url.)
If scripts/setup.sh is not present (e.g. plugin-only install), do the merge yourself with this Node one-liner. Replace KEY=VAL pairs with the user's input:
node -e "
const fs = require('fs');
const path = '.claude/settings.local.json';
let cur = {};
try { cur = JSON.parse(fs.readFileSync(path, 'utf8')); } catch(e) {}
cur.env = cur.env || {};
Object.assign(cur.env, {
VIRUSTOTAL_API_KEY: 'USER_PROVIDED_KEY',
SHODAN_API_KEY: 'USER_PROVIDED_KEY',
});
fs.mkdirSync('.claude', { recursive: true });
fs.writeFileSync(path, JSON.stringify(cur, null, 2) + '\n');
"
After writing, confirm to the user:
- which keys were added (by service name, not the key value)
- which keys are still unconfigured
- that the file is gitignored
Verifying keys
If the user wants to verify, run:
./scripts/setup.sh --verify
This dry-runs each lookup CLI and reports OK/fail per service without making a real API call. If setup.sh is unavailable, dry-run each CLI individually:
node tools/clis/virustotal.js ip 8.8.8.8 --dry-run
Exit code 0 = key present and CLI invocation OK. Exit code 2 = missing key.
Removing or rotating a key
To remove a key, edit .claude/settings.local.json and delete the entry from the env block (or set its value to ""). To rotate, just re-run setup with the new value — the merge overwrites that key only.
Security notes
- Never commit
.claude/settings.local.json(already gitignored at repo root). - Never echo the full key value back to the user in chat — they shared it once; mask thereafter.
- Don't write keys to logs, screenshots, or other artefacts.
- If the user accidentally pastes a key into a public channel, advise them to rotate it on the provider's site and re-run
/cti-setupwith the new value.
What this does NOT do
- Does not call the threat-intel APIs (only
--dry-runinvocations of the local CLIs). - Does not download MITRE ATT&CK data — for that, run
./scripts/download-mitre.sh(the/mitre-attackskill self-heals on first use). - Does not configure permissions, hooks, or other Claude Code settings — only the
envblock ofsettings.local.json.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Liberty91LTD
- Source: Liberty91LTD/cti-skills
- License: MIT
- Homepage: https://liberty91.com/cti-skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.