contrastapi
ContrastAPI — 47 инструментов безопасности + 7 ресурсов MCP для ИИ-агентов
MCP-сервер с данными по кибербезопасности для ИИ-агентов. Поиск CVE/KEV/CWE с EPSS, аудит доменов, отчеты об угрозах IP, обогащение IOC, безопасность кода, MITRE ATLAS (атаки на ИИ/МО) + D3FEND (защита), веб-аналитика (robots.txt, цепочки редиректов, проверка email, брендовые активы, SEO-аудит — v1.25.0). 47 инструментов + 7 ресурсов (просмотр каталогов ATLAS+D3FEND+CWE) + промпт для условной сортировки, бесплатно, без API-ключа, 100 запросов в час.
中文 · Live: api.contrastcyber.com
Настройка (MCP)
{
"mcpServers": {
"contrastapi": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.contrastcyber.com/mcp/"]
}
}
}Перезапустите своего агента. Другие клиенты (Python SDK, Node SDK, cURL, VS Code): mcp-setup · quickstart
Related MCP server: VirusTotal MCP Server
SDK
pip install contrastapi # Python 3.10+ — sync + async, typed responses, shortcut helpers
npm install contrastapi # Node 14+ — concrete TypeScript types, 14 namespacesОба SDK охватывают все 55+ HTTP-эндпоинтов / 47 инструментов MCP (CVE/KEV/CWE, ATLAS, D3FEND, домены, IP, IOC, безопасность кода, веб-аналитика и т. д.) с идентичными форматами ответов и типизированной иерархией исключений, соответствующей конверту ошибок v1.22.2+. Версия v1.23.0 добавляет ресурсы MCP (просмотр каталогов ATLAS+D3FEND+CWE — см. docs/resources.md) и промпт для условной сортировки (см. docs/PROMPTS.md#contrast-triage-v1230). Версия v1.25.0 добавляет 5 инструментов веб-аналитики (robots_txt, redirect_chain, email_verify, brand_assets, seo_audit) с явными этическими ограничениями (ограничение частоты запросов на eTLD+1, соблюдение robots.txt, отсутствие SMTP-зондирования).
Попробуйте
curl https://api.contrastcyber.com/v1/cve/CVE-2021-44228
curl https://api.contrastcyber.com/v1/atlas/AML.T0051 # MITRE ATLAS — LLM Prompt Injection
curl https://api.contrastcyber.com/v1/d3fend/attack/T1059 # D3FEND defenses for ATT&CK T1059Или спросите своего агента:
"Эксплуатируется ли CVE-2024-3094 в реальных условиях? Проверь EPSS + KEV, затем найди соответствующий CWE."
"Объясни инъекцию промптов LLM в MITRE ATLAS и свяжи её с защитой D3FEND."
"Для этих техник ATT&CK [T1059, T1190, T1550.001, T9999], какие из них НЕ имеют мер защиты D3FEND?"
Ссылки
Эндпоинты: docs/ENDPOINTS.md · OpenAPI: openapi.json · Playground: /playground
git clone https://github.com/UPinar/contrastapi.git
cd contrastapi && python3 -m venv venv && venv/bin/pip install -r requirements.txt
cd app && ../venv/bin/uvicorn main:app --port 8002
cd app && python -m pytest tests/ -q # 1886 testsPython 3.12 · FastAPI · uvicorn · mcp-python-sdk Streamable HTTP на /mcp · SQLite WAL · dnspython с безопасным бэкендом SSRF.
Smithery · npm · VS Code Marketplace · Awesome OSINT MCP · RapidAPI
Ответы включают блок verdict — deterministic, falsifiable_fields, data_age_seconds, sources_queried / sources_unavailable, completeness — чтобы агент-верификатор мог независимо перепроверить конкретные поля из вышестоящего источника (NVD, RDAP, CT logs, URLhaus). Используйте GET /v1/capabilities для проверки "verdict_metadata": true.
Ответы CVE также содержат next_calls: list[PivotHint] — тройки {tool, input, reason}, которые предлагают следующий инструмент MCP для вызова (например, kev_detail, когда kev.in_kev=true, или cwe_lookup, когда установлен cwe_id). Агенты могут выстраивать цепочки рабочих процессов без ручного управления.
MIT
Available Tools
55 toolsasn_lookupASN LookupARead-onlyIdempotentInspect
Look up Autonomous System Number (ASN) for a domain or IP: AS number, organization, IPv4/IPv6 prefixes. Use to identify network operator and IP range ownership. Default returns first 50 prefixes per family — set include_full_prefixes=True for full list. Free: 30/hr, Pro: 500/hr. Returns {asn, asn_name, ipv4_prefixes, ipv6_prefixes, ipv4_count, ipv6_count}.
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | Domain or IP address to look up ASN for (e.g. 'cloudflare.com', '8.8.8.8') | |
| include_full_prefixes | No | Return the full announced-prefixes list (default: False, returns first 50). ipv4_count and ipv6_count are always honest pre-truncation totals. Set True for network mapping or BGP route audits — Cloudflare AS13335 announces 2500+ prefixes. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnly, idempotent, non-destructive), the description discloses default truncation (first 50 prefixes), the effect of setting include_full_prefixes=True, and that ipv4_count and ipv6_count are honest pre-truncation totals. It also includes rate limits. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is succinct (three sentences) with the main purpose front-loaded. Every sentence adds useful information, and there is no redundant or extraneous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers inputs, outputs (with a clear return format hint), and default behavior. Given the presence of an output schema, the description is sufficiently complete. It does not cover error cases, but the tool is simple enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters have schema descriptions (100% coverage). The description adds value by explaining the default behavior for include_full_prefixes and providing a concrete example (Cloudflare AS13335) to illustrate when to use it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool looks up ASN for a domain or IP, specifying what it returns (AS number, organization, IPv4/IPv6 prefixes). It distinguishes from sibling lookup tools by focusing on network operator identification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides context on when to use the tool (e.g., for network mapping or BGP route audits) and mentions default vs. full prefix behavior. It does not explicitly mention when not to use it or list alternatives, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atlas_case_study_lookupATLAS Case Study LookupARead-onlyIdempotentInspect
Look up a MITRE ATLAS case study — a documented real-world AI/ML attack incident. Each case study links a sequence of ATLAS techniques (techniques_used) to the incident. Default response is SLIM (description truncated to 240 chars); pass include='full' for the verbose narrative. Use this after atlas_technique_search to find which incidents have exercised a given technique. Drill into the full techniques_used array via bulk_atlas_technique_lookup in a single call (next_calls emits exactly that hint). Returns 404 when the id is not in the synced catalog. Free: 30/hr, Pro: 500/hr. Returns {case_study_id, name, description, techniques_used, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| include | No | Detail level. Default (omit/empty) returns slim (description truncated to 240 chars). Pass 'full' for the verbose narrative — case-study descriptions can run 1-3KB. | |
| case_study_id | Yes | MITRE ATLAS case study id, format 'AML.CS####' (e.g. 'AML.CS0000', 'AML.CS0014'). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds value with 404 error handling, rate limits (30/hr Free, 500/hr Pro), and response size variants (slim vs full). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at 5 sentences, front-loading the purpose and then logically covering variants, usage tips, error case, and limits. Every sentence is informative, though it could be slightly tighter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description adequately covers return fields (case_study_id, name, description, techniques_used, next_calls), error handling, rate limits, and usage chaining. No gaps identified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the description enhances parameter meaning by clarifying the default slim response, the effect of passing 'full', and the exact ID format (AML.CS####). This adds context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it looks up a MITRE ATLAS case study by ID, contrasting with sibling tools like atlas_case_study_search for searching and atlas_technique_lookup for techniques. It specifies the resource and action with details on response format and usage context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises use after atlas_technique_search to find incidents exercising a technique, and suggests bulk_atlas_technique_lookup for full techniques_used. It provides clear context but lacks explicit 'when not to use' statements.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atlas_case_study_searchATLAS Case Study SearchARead-onlyIdempotentInspect
Search ATLAS case studies (real-world AI/ML attack incidents) by keyword or referenced technique. Default response is SLIM (description truncated to 240 chars per row); pass include='full' for the verbose summary. Useful when the user has a technique in hand and wants to see incidents that exercised it. Drill via atlas_case_study_lookup for the full procedure list. Free: 30/hr, Pro: 500/hr. Returns {query, total, results [{case_study_id, name, description (truncated by default), techniques_used}], next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return. Range: 1-200. | |
| include | No | Detail level. Default ('') returns slim records (description truncated to 240 chars). Pass 'full' for full description on every row. | |
| keyword | No | Substring match against case study name + description (case-insensitive). Min 2 chars. Example: 'evasion', 'data poisoning'. Omit to list all. | |
| technique_id | No | Filter to case studies that include this ATLAS technique id, format 'AML.T####' or 'AML.T####.###' (e.g. 'AML.T0051'). Omit for any technique. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds behavioral details: default response is SLIM (description truncated to 240 chars), include='full' for verbose summary, and return structure. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences that are front-loaded: first sentence states purpose and parameters, second gives use case, third mentions alternative, fourth notes rate limits and return structure. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given full schema, annotations, and output schema existence, the description is complete. It explains default behavior, alternatives, and return fields. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description adds context about default slim behavior for 'include' and provides example values for 'keyword' and 'technique_id' (e.g., 'evasion', 'AML.T0051'), enhancing understanding beyond the schema's own descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches ATLAS case studies by keyword or technique referenced. It distinguishes from siblings by mentioning 'Drill via atlas_case_study_lookup for the full procedure list', and the sibling list includes atlas_technique_search and atlas_case_study_lookup, making differentiation clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Useful when the user has a technique in hand and wants to see incidents that exercised it' and 'Drill via atlas_case_study_lookup for the full procedure list'. Also mentions rate limits (Free: 30/hr, Pro: 500/hr), providing when-to-use and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atlas_technique_lookupATLAS Technique LookupARead-onlyIdempotentInspect
Look up a MITRE ATLAS technique — the AI/ML adversarial attack catalog. ATLAS catalogues TTPs targeting machine learning systems: prompt injection, model evasion, training data poisoning, model theft, etc. Roughly 80% of ATLAS techniques are AI/ML-specific (no ATT&CK bridge); 20% mirror an enterprise ATT&CK technique via attack_reference_id — use that to pivot to D3FEND defenses (d3fend_defense_for_attack) and CVE search. Sub-techniques inherit tactics from the parent (inherited_tactics=true flag) when ATLAS upstream leaves them empty. Use this tool when the user asks about AI/ML threats, LLM red-teaming, or adversarial ML; for multiple techniques in one call (e.g. drilling into a case study's techniques_used), prefer bulk_atlas_technique_lookup. Returns 404 when the id is not in the synced ATLAS catalog. Free: 30/hr, Pro: 500/hr. Returns {technique_id, name, description, tactics, inherited_tactics, maturity (demonstrated|feasible|realized), attack_reference_id, attack_reference_url, subtechnique_of, created_date, modified_date, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| technique_id | Yes | MITRE ATLAS technique id, format 'AML.T####' or 'AML.T####.###' for sub-techniques (e.g. 'AML.T0000', 'AML.T0051' LLM Prompt Injection, 'AML.T0000.000'). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, destructiveHint. Description adds value by noting 404 on missing ID, rate limits (30/hr free, 500/hr pro), sub-technique inheritance of tactics, and return structure fields. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is somewhat long but well-structured and front-loaded with purpose. Every sentence adds value, though a slight tightening could improve conciseness without losing information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter and presence of an output schema (implied by return description), the description is complete: covers use cases, error handling, rate limits, return fields, and relationships to other tools and ATT&CK/D3FEND.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter (technique_id) with 100% schema description coverage. The schema already describes the format with examples. The tool description does not add additional parameter meaning beyond what's in the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it looks up MITRE ATLAS techniques, which are AI/ML adversarial attack TTPs. It distinguishes from siblings like atlas_technique_search (search vs lookup) and bulk_atlas_technique_lookup (single vs bulk).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use: when user asks about AI/ML threats, LLM red-teaming, or adversarial ML. Also advises using bulk version for multiple techniques and mentions pivoting to D3FEND and CVE search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atlas_technique_searchATLAS Technique SearchARead-onlyIdempotentInspect
Search the MITRE ATLAS catalog of AI/ML attack techniques by keyword, tactic, or maturity. Default response is SLIM (description truncated to 240 chars per row); pass include='full' for the verbose record. Pass exclude_id when chaining from atlas_technique_lookup to skip self in sibling-tactic searches. Use this to discover techniques matching a threat-model question, e.g. 'what techniques target LLM serving infrastructure?'. Drill into atlas_technique_lookup with any returned technique_id for the full description, ATT&CK bridge, and pivot hints. For broader cross-referencing: when a result has attack_reference_id, that bridges to D3FEND mitigations via d3fend_defense_for_attack. Free: 30/hr, Pro: 500/hr. Returns {query (echoed filters), total, results [{technique_id, name, description (truncated by default), tactics, inherited_tactics, maturity, attack_reference_id, subtechnique_of}], next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return. Range: 1-200. | |
| tactic | No | Filter by ATLAS tactic id, format 'AML.TA####'. Examples: 'AML.TA0002' (Reconnaissance), 'AML.TA0007' (ML Attack Staging). Omit for all tactics. | |
| include | No | Detail level. Default ('') returns slim records (description truncated to 240 chars; drill via atlas_technique_lookup for full text). Pass 'full' for full description on every row — large catalogs (167 techniques) can return ~100KB at full. | |
| keyword | No | Substring match against technique name + description (case-insensitive). Min 2 chars. Example: 'prompt injection', 'model evasion', 'poisoning'. Omit to list all. | |
| maturity | No | Filter by maturity: 'demonstrated' (observed in real attacks), 'feasible' (theoretical), or 'realized' (newer ATLAS classification, treat similar to demonstrated). Omit for all. | |
| exclude_id | No | Optional ATLAS technique id to exclude from results, format 'AML.T####' or 'AML.T####.###'. Useful when chaining from atlas_technique_lookup to fetch siblings without echoing self in the same-tactic search. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that default response is SLIM with truncated descriptions, and that passing include='full' returns verbose records which can be large. Provides return structure and notes idempotent, read-only behavior beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and informative but slightly lengthy. It front-loads the main purpose and then provides details. Every sentence is valuable, but could be tightened slightly without losing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers all necessary aspects: purpose, parameter details, usage flow (chaining with lookup), response structure, rate limits, and cross-referencing with other tools. No gaps given the tool's complexity and presence of output schema and annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Despite 100% schema coverage, the description adds significant value: explains the effect of include (default vs. full, size warning), gives examples for keyword and tactic, clarifies maturity enum meanings, and describes exclude_id usage for chaining.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it searches the MITRE ATLAS catalog of AI/ML attack techniques by keyword, tactic, or maturity. It distinguishes itself from sibling tools like atlas_technique_lookup by being a discovery/search tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises when to use this tool (discover techniques for threat-model questions), how to drill into atlas_technique_lookup, and how to cross-reference with D3FEND. Also mentions exclude_id for chaining and rate limits (free vs. pro).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
audit_domainAudit DomainARead-onlyIdempotentInspect
Perform comprehensive domain audit: combines domain_report + live HTTP security headers + technology fingerprinting. By default report.dns.txt is filtered to security-relevant entries (SPF, DMARC, DKIM, MTA-STS, TLS-RPT) and report.dns.total_txt_records reports the honest pre-filter count; pass include_all_txt=true for the raw TXT list. Use when you need the full picture (recon + active checks); use domain_report for passive-only assessment. Response carries next_calls — chain with subdomain_enum (always emitted) and ssl_check (when an A record resolves) for the residual recon depth (tech_fingerprint already inline as technologies). Free: 30/hr (costs 6 tokens), Pro: 500/hr. Returns {domain, report, technologies, live_headers, summary, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to audit, without protocol or path (e.g. 'example.com', 'shopify.com') | |
| include_all_txt | No | Return every TXT record under report.dns.txt (default: False, only SPF/DMARC/DKIM/MTA-STS/TLS-RPT kept). report.dns.total_txt_records is always emitted with the honest pre-filter count. Default filter strips vendor verification strings (google-site-verification, ms=, facebook-domain-verification, etc.) that bloat the response without security signal. Set True only when you need the raw TXT inventory. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, destructiveHint. Description adds rate limits (30/hr Free, 500/hr Pro) and token cost (6 tokens), plus next_calls behavior, providing extra transparency beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is front-loaded with purpose and efficient, but slightly dense as a single paragraph. Could benefit from more structure (e.g., bullet lists) for complex details like rate limits and filtering, but overall concise and informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given tool complexity (combines multiple scans), description covers all essential aspects: purpose, filtering logic, usage guidance, chaining, rate limits, and return structure (explicitly lists output fields). No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%. Description adds context: explains default TXT filtering (strips vendor verification strings) and when to set include_all_txt=True, going beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Perform comprehensive domain audit' and explicitly lists combined components: domain_report, live HTTP security headers, technology fingerprinting. Distinguishes from sibling domain_report by specifying active vs passive assessment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use ('Use when you need the full picture') and alternative ('use domain_report for passive-only assessment'). Also suggests chaining with subdomain_enum and ssl_check for further recon.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
brand_assetsBrand AssetsARead-onlyIdempotentInspect
Scrape a domain's homepage <head> for public brand assets — favicon, og:image, theme-color, og:site_name, JSON-LD Organization.logo. Use to enrich CRM records, build company-card UIs, or correlate a lead's site to their visual identity (no manual screenshot required). Strictly homepage-only (path /); we do NOT crawl. Ethical floor: target's robots.txt is honoured — Disallow: / for ContrastAPI OR * returns 403 error.code = robots_txt_disallow and we DO NOT fetch. Cache-Control: no-store / private from the target is respected (response is built but NOT written to our cache; cache_respected=false flags this). Per-target eTLD+1 throttle (60 req/min) prevents weaponising via subdomain rotation. All URL fields are absolute and _untrusted (DO NOT execute or shell-out — the target controls these strings). Free: 30/hr, Pro: 500/hr. Returns {domain, fetched_url, status_code, favicon_url_untrusted, og_image_url_untrusted, theme_color, site_name_untrusted, logo_url_untrusted, cache_respected, summary}. Returns 502 on DNS/TCP/TLS failure; 403 robots_txt_disallow when the target opted out.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Registrable domain to scrape brand assets for (e.g. 'github.com', 'stripe.com'). No scheme, no path, no port. The bot fetches https://<domain>/ with HTTP fallback. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint, openWorldHint, idempotentHint, and non-destructive. The description adds critical behavioral details: robots.txt handling with 403, cache-control respect, rate limiting (60 req/min), security warnings about untrusted URL fields, and error responses (502, 403). No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well-structured, front-loading the main action and use cases then adding details. Every sentence provides useful information, but length could be slightly reduced without losing clarity. Minor improvement possible.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity and presence of output schema, the description covers all relevant aspects: ethical compliance, caching behavior, rate limits, security considerations, error responses. It is fully adequate for an agent to understand the tool's behavior and constraints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a single required 'domain' parameter. The description adds meaning: specifies no scheme/path/port, explains HTTP fallback, and that it fetches https://<domain>/>, providing valuable context beyond the schema's type and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scrapes a domain's homepage <head> for public brand assets like favicon, og:image, etc. It lists specific assets and use cases (enrich CRM, build UI, correlate lead site), distinguishing it from sibling tools by emphasizing 'homepage-only' and no crawling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use (enrich CRM, build UI) and when not (strictly homepage-only, respects robots.txt, ethical floor). It provides clear context including rate limits and error handling, guiding appropriate usage without the need for manual screenshots.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bulk_atlas_technique_lookupBulk ATLAS Technique LookupARead-onlyIdempotentInspect
Bulk ATLAS technique lookup — retrieve full records for up to 50 techniques in a single request instead of N separate atlas_technique_lookup calls. Designed as the natural follow-up to atlas_case_study_lookup, whose techniques_used array can be passed directly. Each item is the same shape as atlas_technique_lookup, including parent-tactics inheritance for sub-techniques (inherited_tactics=true flag) and per-item next_calls (D3FEND bridge when attack_reference_id present, sibling-technique search by tactic, parent lookup for sub-techniques). Free: 30/hr (1 per item), Pro: 500/hr. Returns {results [{technique_id, status (ok|not_found|invalid_format), technique, error}], total, successful, failed, partial, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| technique_ids | Yes | List of MITRE ATLAS technique ids in format 'AML.T####' or 'AML.T####.###' (e.g. ['AML.T0051', 'AML.T0043', 'AML.T0000.000']). Up to 50 per call. Case-insensitive; normalized + de-duplicated server-side. Each id counts as 1 request toward the rate limit. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, destructiveHint. The description adds details about response shape (status per item, error handling), case-insensitivity, normalization, deduplication, and next_calls. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is single paragraph but packed with essential information. All sentences are meaningful, though slightly dense. Could be improved with bullet points.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a bulk tool with one parameter and output schema, the description covers motivation, follow-up use case, response structure, rate limits, and per-item status. No gaps given the context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description of technique_ids format. The description adds value by noting each id counts as one request toward rate limit, which is not in schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves full records for up to 50 techniques in a single request, distinguishing it from the sibling atlas_technique_lookup. The verb 'retrieve' and resource 'ATLAS techniques' are specific, and the alternative use case is explicitly mentioned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states it is the natural follow-up to atlas_case_study_lookup and implies alternative (atlas_technique_lookup for single lookups). Rate limits and per-item request counting provide clear usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bulk_cve_lookupBulk CVE LookupARead-onlyIdempotentInspect
Batch query multiple CVEs (up to 50 per call, same for Free and Pro): retrieve full CVE details for all in 1 request instead of N. By default each CVE's affected_products is truncated to the first 20 entries (total_products reports honest count) and references to the first 10 (total_references reports honest count); pass include_affected_products=true / include_full_references=true to return full lists. Pass include_reference_tags=true to receive references_full=[{url, tags, source}] per CVE in the batch. Pass include_severity_breakdown=true to receive severity_sources/consensus/disagreement per CVE. Use for dependency audits or bulk vulnerability enrichment; use cve_lookup for single CVE. Each successful item carries next_calls — chain with kev_detail (when kev.in_kev=true), cwe_lookup (when cwe_id is present), or exploit_lookup. Free: 30/hr (1 per item), Pro: 500/hr. Returns {results, total, successful, failed, timed_out, partial, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_ids | Yes | List of CVE identifiers in format CVE-YYYY-NNNNN (e.g. ['CVE-2024-3094', 'CVE-2021-44228', 'CVE-2023-44487']). Maximum 50 per request (same cap for Free and Pro). | |
| include_reference_tags | No | Return structured references_full per CVE in the batch [{url, tags, source}]. Same shape as cve_lookup (default: True). Activates tag-first patch detection per item. Set False for legacy clients. | |
| include_full_references | No | Return the full references list for each CVE in the batch (default: True). total_references is always emitted. Set False to truncate each item to first 10 entries when payload-bound. | |
| include_affected_products | No | Return the full affected_products list for each CVE in the batch (default: False, each CVE returns first 20). Set True for bulk dependency audits. | |
| include_severity_breakdown | No | Return severity_sources/consensus/disagreement per CVE in batch. Same shape as cve_lookup (default: True). cvss_v2 and cvss_v2_vector are always emitted (additive non-opt-in). Set False to skip if downstream cannot tolerate the extra fields. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnly, idempotent, non-destructive. Description adds that affected_products truncates to first 20 by default, references to first 10, and boolean flags to override. Also mentions next_calls for chaining and return shape. No contradictions. Provides valuable behavioral defaults and optional behaviors.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is dense with information but each sentence adds value. Could be slightly better organized (e.g., grouping defaults, rate limits, chaining). However, it is front-loaded with core purpose and constraints, making it effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given full schema coverage, output schema, and annotations, description covers all needed context: rate limits, return shape (results, total, etc.), chaining guidance, and default behaviors. Complete for a batch query tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage 100% but description adds significant meaning: cve_ids format and max, boolean parameters explained with default values, truncation behavior, and use-case guidance (e.g., set include_affected_products for dependency audits). Each parameter's effect is clear.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states batch query for multiple CVEs up to 50 per call, retrieving full CVE details. Distinguishes from sibling cve_lookup for single CVE. Verb 'bulk query' and resource 'CVE details' are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use for dependency audits or bulk vulnerability enrichment, and to use cve_lookup for single CVE. Also mentions chaining with kev_detail, cwe_lookup, exploit_lookup based on result fields. Rate limits provided (30/hr Free, 500/hr Pro). No explicit when-not-to-use, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bulk_ioc_lookupBulk IOC LookupARead-onlyIdempotentInspect
Batch query multiple IOCs (IP/domain/URL/hash, up to 50 per call, same for Free and Pro) in 1 request: auto-detects type + queries abuse.ch feeds per-indicator. Per-type source coverage matches ioc_lookup: hash → ThreatFox only; IP → ThreatFox + Feodo + URLhaus; domain / URL → ThreatFox + URLhaus. Each result item carries its own verdict.sources_queried / sources_unavailable so partial failures are visible per indicator. Use for SOC alert triage or batch enrichment; use ioc_lookup for single indicator. Free: 30/hr (1 per item), Pro: 500/hr. Returns {results, total, successful, failed, timed_out, partial, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| indicators | Yes | List of indicators of compromise: IP addresses, domains, URLs, or file hashes (e.g. ['8.8.8.8', 'evil.com', 'd41d8cd98f00b204e9800998ecf8427e']). Maximum 50 per request (same cap for Free and Pro). Each indicator type is auto-detected. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable behavioral context: auto-detection of IOC type, per-type source coverage (hash → ThreatFox, etc.), and mention that each result carries verdict.sources_queried / sources_unavailable for partial failure visibility. This goes beyond what annotations provide, though it doesn't detail all side effects (none exist).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph that efficiently packs key information—purpose, constraints, source coverage, rate limits, and return format—without unnecessary words. It is front-loaded with the primary use case. No fluff, but slight improvement could be made with bullet points for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple IOC types, different source mappings, batch behavior, partial failures), the description covers all essential aspects: input limits, per-type source coverage, return structure with {results, total, successful, failed, timed_out, partial, summary}, and rate limits. An output schema exists (not shown), so return values are documented. The description is comprehensive for an AI agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage for the single required parameter 'indicators'. The description adds meaning beyond the schema: maximum 50 per request, auto-detection of indicator type, and the per-indicator behavior. These details help the agent construct valid inputs and understand constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is for batch querying multiple IOCs (IP/domain/URL/hash) up to 50 per call, with auto-detection of type. It distinguishes itself from the sibling tool ioc_lookup by specifying batch vs. single indicator use.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: use for SOC alert triage or batch enrichment, and use ioc_lookup for single indicator. Also includes rate limits (Free 30/hr, Pro 500/hr) and max batch size, helping the agent decide when to invoke this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bulk_sigma_rule_lookupBulk Sigma Rule LookupARead-onlyIdempotentInspect
Bulk Sigma rule lookup — retrieve full records for up to 50 rule UUIDs in a single request instead of N separate sigma_rule_lookup calls. Designed for triage workflows where multiple rule ids are known (e.g., from a SIEM alert batch or a tagged detection bundle). Each item is the same shape as sigma_rule_lookup with status ok/not_found/invalid_format and an error field when applicable. Up to 50 rule ids per call (same cap for Free and Pro). Each rule_id consumes 1 unit of the hourly quota; ids beyond the caller's remaining quota land in skipped_due_to_rate_limit instead of failing the whole batch (parity with bulk_cve/ioc). Free: 30/hr, Pro: 500/hr. Returns {results [{rule_id, status, rule, error}], total, processed, skipped_due_to_rate_limit, successful, failed, partial, summary, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| rule_ids | Yes | List of Sigma rule UUIDs in RFC 4122 format. Up to 50 per call (same cap for Free and Pro). Each rule_id counts as 1 request toward the hourly quota. Per-item validation: invalid-format ids return status='invalid_format', unknown UUIDs return status='not_found' — the whole call does not fail. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly and idempotent, but the description adds critical behavioral details: per-item error handling (status per ID), quota consumption (1 unit per rule_id, hourly limits), batch cap of 50, and rate limit handling (skipped_due_to_rate_limit). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficient and well-structured: first sentence gives core purpose, then use case, then output shape, then quota details. Every sentence adds unique value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's single parameter, rich annotations, and output schema, the description covers all necessary aspects: purpose, usage context, quota semantics, error handling, and batch behavior. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers 100% of parameters (only rule_ids), but the description significantly enhances understanding: adds max 50 items, RFC 4122 format, quota counting per ID, and per-item validation outcomes (invalid_format, not_found).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool does a bulk lookup of Sigma rules by UUIDs, retrieving full records for up to 50 IDs in a single call. It explicitly differentiates from the sibling sigma_rule_lookup by noting the bulk capability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance: 'Designed for triage workflows where multiple rule ids are known (e.g., from a SIEM alert batch or a tagged detection bundle)' and contrasts with N separate sigma_rule_lookup calls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
calculate_risk_scoreCalculate Risk ScoreARead-onlyIdempotentInspect
Composite CVE risk score (0-100) — fuses CVSS, EPSS, KEV, and PoC into a single agent-ready triage signal. Formula: CVSS0.20 + EPSS0.35 + KEV0.30 + PoC0.15 (each component rescaled to 0-100 before weighting). Multiplicative boosters applied in order: KEV+PoC combo (*1.15), critical-severity-with-high-EPSS (CVSS>=9 AND EPSS>0.7, *1.10), recently published (within last 7 days, *1.05). Final score clamped to [0, 100]. Label bands: CRITICAL>=90, HIGH>=70, MEDIUM>=40, LOW<40. Urgency text encodes patch SLA (immediate when KEV; 24h/72h/30d by label). Use to triage a single CVE without orchestrating cve_lookup + exploit_lookup separately. PoC signal here is the local ExploitDB mirror only — for full multi-source exploit detail (GitHub Advisory + Shodan refs + ExploitDB), call exploit_lookup separately. Methodology adapted from mukul975/cve-mcp-server (Apache-2.0): https://github.com/mukul975/cve-mcp-server. Free: 30/hr, Pro: 500/hr. Returns {cve_id, score (0-100), label (CRITICAL/HIGH/MEDIUM/LOW), urgency, has_public_poc, components (cvss_v3, epss_score, in_kev, has_public_poc, weighted_breakdown), boosters_applied, recommendation, summary, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE identifier in format CVE-YYYY-NNNNN (e.g. 'CVE-2021-44228', 'CVE-2024-3094') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations (readOnlyHint: true, idempotentHint: true, destructiveHint: false) indicate a safe, read-only operation. The description adds extensive behavioral context: the formula with weights, multiplicative boosters, clamping to [0,100], label bands, urgency encoding, the source of PoC data, methodology attribution, and rate limits (30/hr free, 500/hr pro). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is detailed and front-loaded with the core purpose and formula. While it includes necessary details like boosters and rate limits, it is somewhat lengthy. However, every sentence adds value, and the structure is logical. It earns a 4 for being informative without being excessively verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that the tool has an output schema (implied by the return fields listed), the description covers the full context: purpose, usage guidelines, behavioral details, parameter format, output structure, and limitations. It leaves no critical gaps for an agent to misuse the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has one required parameter (cve_id) with a description of its format. The description does not add additional semantics for this parameter beyond what the schema already provides. With schema description coverage at 100%, the baseline is 3, and the description does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that this tool calculates a composite CVE risk score using CVSS, EPSS, KEV, and PoC, with a detailed formula. It explicitly distinguishes itself from siblings like cve_lookup and exploit_lookup by stating: 'Use to triage a single CVE without orchestrating cve_lookup + exploit_lookup separately' and that for full exploit detail, one should call exploit_lookup separately.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool (for triaging a single CVE) and when not to use it (for multi-source exploit detail, call exploit_lookup). It also notes the limitation that the PoC signal is from the local ExploitDB mirror only, which helps agents decide if they need additional tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_dependenciesCheck DependenciesARead-onlyIdempotentInspect
Audit project dependencies (npm/PyPI/Maven/RubyGems/etc.) against CVE database: find known vulnerabilities in your package list. Bulk query up to 50 packages per call (same for Free and Pro). Use for dependency security scanning; use cve_lookup for single CVE. Free: 30/hr (1 per package), Pro: 500/hr. Returns {findings, total, by_severity, summary}. Each finding includes fixed_in (first patched version per NVD/MITRE version range) when a version range matched — omitted from wire when the range is open-ended or no input version was supplied; remediation copy then says 'Check if ... is affected ... and upgrade if so' instead of 'Upgrade to X.Y.Z or later'.
| Name | Required | Description | Default |
|---|---|---|---|
| packages | Yes | List of dependency packages to audit. Each item is an object with 'name' (required, max 200 chars, e.g. 'lodash', 'django', 'log4j-core') and optional 'version' (max 100 chars, e.g. '4.17.0', '2.14.1'). Only 'name' and 'version' fields are used; extra fields are ignored. Example: [{"name": "lodash", "version": "4.17.0"}, {"name": "django"}]. Maximum 50 per request (same cap for Free and Pro). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnly, idempotent, non-destructive. Description adds details on return structure {findings, total, by_severity, summary} and explains when fixed_in is omitted, providing behavioral context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is somewhat long but well-structured: first sentence summarizes purpose, then provides usage, rate limits, return format, and special cases. Every sentence adds value, though slight trimming possible.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given complexity of multiple package managers, bulk query limit, and return format, description covers all essential aspects including edge cases (open-ended version ranges). Output schema exists but description complements it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed description of packages parameter. Description adds context on supported package managers (npm/PyPI etc.) and CVE database source, augmenting schema meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Audit project dependencies against CVE database: find known vulnerabilities in your package list.' It uses specific verbs and resources, and distinguishes from siblings like cve_lookup by specifying bulk query of packages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states 'Use for dependency security scanning; use cve_lookup for single CVE.' Also provides rate limits for Free and Pro tiers, guiding appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_headersCheck HeadersARead-onlyIdempotentInspect
Validate HTTP security headers you provide (JSON): CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Permissions-Policy, Referrer-Policy against best practices. Use to test header config before deployment or validate non-public servers; use scan_headers to fetch live. Free: 30/hr, Pro: 500/hr. By default header values are truncated to 500 chars; pass include='full' for the full raw value. Returns {total, by_severity, findings}. No external requests.
| Name | Required | Description | Default |
|---|---|---|---|
| headers | Yes | JSON string of HTTP header name-value pairs to validate. Example: '{"Strict-Transport-Security": "max-age=31536000", "X-Frame-Options": "DENY"}'. Include only security-relevant headers you want to analyze. | |
| include | No | Detail level. Default ('') returns slim findings — raw header values capped at 500 chars with total_value_length carrying the honest pre-truncation length. Pass 'full' to restore the full raw value. Allowed: '' or 'full'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds behavioral context beyond annotations: it states 'No external requests' (confirming readOnlyHint and destructiveHint), explains default truncation to 500 chars with include='full' option, and describes the return structure {total, by_severity, findings}. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at 4 sentences, front-loading the core purpose, then guidelines, then details. Every sentence provides unique value with no redundancy or wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (not shown but mentioned in context) and the tool's simplicity, the description covers purpose, usage, alternatives, limits, truncation behavior, return structure, and safety. It feels complete for an agent to decide and use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters have schema descriptions covering their purpose, types, and constraints (100% coverage). The description adds a note to include only security-relevant headers and explains the include parameter slightly further, but the schema already does a good job. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool validates HTTP security headers (CSP, HSTS, etc.) against best practices. It distinguishes from sibling tool scan_headers by specifying when to use each: use check_headers for offline testing, use scan_headers to fetch live headers.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use this tool (test config before deployment, validate non-public servers) and mentions the alternative scan_headers. It also provides rate limits (30/hr free, 500/hr pro). It could be more explicit about when not to use, but the information is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_injectionCheck InjectionARead-onlyIdempotentInspect
Scan source code for injection vulnerabilities: SQL injection, command injection, path traversal via unsafe string concatenation/unsanitized input. Supports Python, JavaScript, TypeScript, Java, Go, Ruby, Shell, Bash. Use to detect input-handling bugs; for secrets use check_secrets. Companion code-security tools: check_secrets (hard-coded credential detection), check_dependencies (known-CVE vulnerability audit), check_headers (live HTTP security-header validation), scan_headers (live HTTP scan via domain). Free: 30/hr, Pro: 500/hr. Returns {total, by_severity, findings}. No data stored.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Source code string to scan for injection vulnerabilities (can be a single file or code snippet) | |
| language | No | Programming language of the code. Must be one of: python, javascript, typescript, java, go, ruby, shell, bash, generic. Use 'generic' if unsure. | generic |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only and non-destructive. The description adds behavioral context: 'No data stored' and details rate limits (Free: 30/hr, Pro: 500/hr), going beyond annotations to disclose important operational traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured paragraph that front-loads the purpose and efficiently packs essential information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (injection scanning), the description covers purpose, usage, behavioral traits, parameters, and output format. The output schema exists, so the return description is supplemental. Complete enough for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%. The description adds value by listing the supported languages and explaining the 'generic' option, which supplements the enum and descriptions in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool scans source code for injection vulnerabilities (SQL injection, command injection, path traversal) and lists supported languages. It distinguishes from sibling tools by mentioning companion tools like check_secrets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Use to detect input-handling bugs; for secrets use check_secrets' and lists other companion tools. It also provides context about rate limits and output format, but does not explicitly state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_secretsCheck SecretsARead-onlyIdempotentInspect
Scan source code (or snippet) for hardcoded secrets — cloud provider keys, API tokens, connection strings, private keys, passwords. Supports Python, JavaScript, TypeScript, Java, Go, Ruby, Shell, Bash. Use to detect leaked credentials before commit; for injection detection use check_injection. Free: 30/hr, Pro: 500/hr. Returns {total, by_severity, findings}. No data stored. The generic password-assignment rule is suppressed when a more-specific credential rule fires on the same line — one targeted finding per leaked secret, not two.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Source code string to scan for secrets (can be a single file or code snippet) | |
| language | No | Programming language of the code. Must be one of: python, javascript, typescript, java, go, ruby, shell, bash, generic. Use 'generic' if unsure. | generic |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds 'No data stored' and explains the suppression rule for generic password-assignment, providing context beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (5 sentences), front-loaded with the main action, and includes necessary details without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema provided, the description doesn't need to explain return values. It covers purpose, usage, behavioral traits, and parameters sufficiently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed descriptions for both parameters. The description lists supported languages but does not add significant new meaning beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Scan source code (or snippet) for hardcoded secrets' and lists types of secrets (cloud provider keys, API tokens, etc.), distinguishing it from the sibling 'check_injection' for injection detection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear when-to-use guidance: 'Use to detect leaked credentials before commit' and contrasts with an alternative: 'for injection detection use check_injection'. Rate limits (30/hr free, 500/hr Pro) are also included.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
contrast_scanContrast ScanARead-onlyIdempotentInspect
Active website security scan: runs the ContrastScan C engine (11 modules — HTTP security headers, SSL/TLS, DNS, redirect chain, information disclosure, cookie flags, DNSSEC, HTTP methods, CORS, HTML hygiene, deep CSP analysis) against the live site and enriches the raw result with severity-ranked vulnerability findings and a letter grade. Use for a hands-on misconfiguration scan; use audit_domain for passive recon (DNS/WHOIS/SSL/threat intel) and scan_headers for headers only. Active outbound fetch — a per-target eTLD+1 throttle (60 req/min) applies. Free: 30/hr (costs 6 tokens), Pro: 500/hr. Returns {domain, resolved_ip, total_score, max_score, grade, findings, findings_count, headers, ssl, dns, redirect, disclosure, cookies, dnssec, methods, cors, html, csp_analysis, enterprise, summary, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to scan, without protocol or path (e.g. 'example.com'). Bare IPs and private-resolving domains are rejected. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, openWorldHint, idempotentHint, and not destructive. The description adds key behavioral details: active outbound fetch, per-target throttle, rejection of bare IPs/private domains, and token costs. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense sentence that packs many details. It is front-loaded with the main purpose. While slightly verbose, every sentence earns its place, but could be more readable with breaks.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (11 modules, many return fields), the description covers purpose, usage, behavioral constraints, and output structure. The presence of an output schema (mentioned) and full parameter schema coverage makes the description complete enough for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the single parameter 'domain' with description. The description goes beyond by clarifying that bare IPs and private-resolving domains are rejected. With 100% schema coverage, baseline is 3; the extra context raises it to 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as an active website security scan using the ContrastScan C engine with 11 modules. It specifies the resource (live site) and the output (severity-ranked findings and letter grade). It also distinguishes itself from sibling tools like audit_domain and scan_headers, fulfilling the specificity requirement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance: 'Use for a hands-on misconfiguration scan; use audit_domain for passive recon... and scan_headers for headers only.' Also mentions rate limits (60 req/min) and token costs, providing clear when-to-use and when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cve_leadingCVE LeadingARead-onlyIdempotentInspect
List CVEs indexed from MITRE/GHSA BEFORE NVD publication (early-warning, freshest data). By default each result is slim (no description, no cvss_breakdown, no affected_products list, no references) — pass include='full' for the same payload shape as cve_lookup; for drill-down on a single CVE prefer cve_lookup. Use for threat intelligence on emerging CVEs; use cve_search for published NVD data. Verdict (sources_queried, falsifiable_fields, completeness, data_age) is at the response root — applies to the whole batch, not per-row. Response carries a global hint pointing at cve_lookup — drill into any returned cve_id for full detail and chained pivots (exploit_lookup, kev_detail, cwe_lookup). Free: 30/hr, Pro: 500/hr. Returns {count, total, truncated, offset, summary, results, next_offset, verdict, hint}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results to return. Range: 1-200. | |
| offset | No | Skip N results for pagination. | |
| include | No | Per-result detail level. Default ('') returns slim list items (cve_id, summary, severity, cvss_v3, cwe_id, epss, kev, total_products, published, modified, sources). Pass 'full' to also return description, cvss_breakdown, affected_products, references, first_seen_source, first_seen_at. Slim default avoids description/summary duplication that bloats 50-item leading lists. Verdict is at the response root, not per-row (deduplicated for ~40% payload savings). Allowed: '' or 'full'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, idempotentHint, destructiveHint), description adds behavioral context: early-warning nature, slim default results, include='full' for full payload, verdict at root, response hint pointing to cve_lookup, and rate limits. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is comprehensive but well-structured, front-loading core purpose, then usage guidelines, parameter details, response shape, and rate limits. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (3 parameters, no required, output schema exists), the description is extremely complete. It covers response shape, verdict, hints, follow-up tools, and rate limits. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters have detailed schema descriptions (100% coverage). Description adds extra context for the 'include' parameter, explaining slim vs full payload trade-offs and why slim is default.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists CVEs indexed from MITRE/GHSA before NVD publication, serving as an early-warning for emerging threats. It explicitly distinguishes from siblings cve_lookup and cve_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (threat intelligence on emerging CVEs) and when not (for drill-down on single CVE prefer cve_lookup, for published NVD data use cve_search). Also mentions rate limits and payload options.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cve_lookupCVE LookupARead-onlyIdempotentInspect
Retrieve detailed CVE data by ID: description, CVSS v3.1 + vector, CVSS v2 (always emitted), EPSS score + percentile, CISA KEV status (expanded: due_date, required_action, ransomware flag, vendor_project, product, vulnerability_name, short_description, notes, cwes, date_removed when in_kev=true), NVD vulnerability_status (Analyzed/Modified/Awaiting Analysis/Deferred/Rejected/Withdrawn), cve_tags ('disputed' triggers [DISPUTED] summary prefix), affected products (CPE), references, patch availability, related CVEs. By default affected_products is truncated to the first 20 entries (total_products reports the honest count) and references to the first 10 (total_references reports the honest count). Pass include_affected_products=true and/or include_full_references=true for the complete lists. Pass include_reference_tags=true to receive structured references_full=[{url, tags, source}] (NVD upstream tags + source provenance) — also activates tag-first patch detection. Pass include_severity_breakdown=true to receive severity_sources/consensus/disagreement (multi-source view of NVD/MITRE/GHSA/OSV severity assessments). Use for single-CVE details; use cve_search for queries by product/severity. Response carries next_calls — chain with kev_detail when kev.in_kev=true, with cwe_lookup on each CWE in cwes (up to 3 pivots), and with exploit_lookup for public PoC availability. Free: 30/hr, Pro: 500/hr. Returns {cve_id, summary, description, severity, cvss_v3, cvss_v2, cvss_v2_vector, cvss_breakdown, cwe_id, cwes, vulnerability_status, cve_tags, published, modified, sources, first_seen_source, first_seen_at, epss, kev (in_kev, date_added, due_date, required_action, known_ransomware_use, vendor_project, product, vulnerability_name, short_description, notes, cwes, date_removed), affected_products (first 20 by default), total_products, references (first 10 by default), total_references, total_references_unique, references_full (only when include_reference_tags=true), severity_sources/severity_consensus/severity_disagreement (only when include_severity_breakdown=true), patch_available, related_cves, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE identifier in format CVE-YYYY-NNNNN (e.g. 'CVE-2024-3094', 'CVE-2023-44487') | |
| include_reference_tags | No | Return structured references_full field with [{url, tags, source}] objects (NVD reference tags + source provenance) (default: True). Inspects which references are vendor patches (tags=['Patch']) vs exploit PoCs (tags=['Exploit']) vs mailing list discussions. Patch URL detection is tag-first when refs_with_tags is populated; legacy cached rows fall back to regex. Set False to skip the structured shape for legacy clients. | |
| include_full_references | No | Return the full references list (default: True, returns all references). total_references is always emitted with the honest count; patch URL detection always runs against the full list, so patch_url/patch_available are unaffected. Set False to truncate to first 10 entries when bandwidth-bound. | |
| include_affected_products | No | Return the full affected_products list (default: False, returns first 20). Set True for bulk audits or dependency scanning of Log4j-class CVEs with 50+ products. | |
| include_severity_breakdown | No | Return severity_sources, severity_consensus, and severity_disagreement (multi-source severity breakdown) (default: True). Surfaces vendor disputes (e.g. CVE-2023-38545 NVD-CRITICAL vs GHSA-HIGH). cvss_v2 and cvss_v2_vector are always emitted (additive non-opt-in). Consensus uses majority-bucket vote with highest-severity tie-break (CRITICAL > HIGH > MEDIUM > LOW > NONE). Set False to skip if downstream cannot tolerate the extra fields. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly and idempotent. Description adds extensive behavioral details: default truncation of affected_products and references, optional flags to expand, reference tags behavior, severity breakdown, patch detection, rate limits. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is very detailed and well-structured, but somewhat verbose. However, every sentence adds necessary context for a complex tool. Slightly longer than ideal but not wasteful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity, schema coverage, output schema presence, and annotations, the description covers all aspects: default behavior, optional parameters, response structure, chaining, rate limits. No gaps identified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but description goes beyond by explaining default values, use cases for each boolean parameter (e.g., 'Set True for bulk audits'), and the impact on response. Adds significant value beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it retrieves detailed CVE data by ID, listing all key fields. It explicitly distinguishes from sibling cve_search, stating 'Use for single-CVE details; use cve_search for queries by product/severity.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit context on when to use this tool vs cve_search, and describes chaining with kev_detail, cwe_lookup, exploit_lookup via next_calls. Also mentions rate limits for free vs Pro tiers.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cve_searchCVE SearchARead-onlyIdempotentInspect
Search CVE database with filters: product/vendor, severity, published date range, EPSS score, CWE, CVSS range, CISA KEV status. Default response is SLIM per-result (cve_id, summary, severity, cvss_v3, cwe_id, epss, kev, total_products, published, modified, sources) — pass include='full' for description, cvss_breakdown, affected_products, references, first_seen_*. Verdict (sources_queried, falsifiable_fields, completeness, data_age) is at the response root — applies to the whole batch, not per-row. Product/vendor filters are EXACT NVD-canonical-token matches (not the common name — e.g. nginx is 'nginx_open_source'/'nginx_plus', vendor 'f5'); a low/zero count for a well-known product means the token differs, so for dependency/package lists use check_dependencies and for a domain's whole stack tech_stack_cve_audit (both auto-normalize tokens). Use for vulnerability discovery by criteria; pass cwe_id (e.g. CWE-79) to enumerate every CVE in our database mapped to a weakness — pair with cwe_lookup for the category description and mitigations. Use cve_lookup for single CVE by ID, kev_detail when kev=true filtering and the agent needs federal patch deadlines per result. Response carries a global hint pointing at cve_lookup — drill into any returned cve_id for full detail and chained pivots (exploit_lookup, kev_detail, cwe_lookup). Free: 30/hr, Pro: 500/hr. Returns {count, total, truncated, offset, summary, results, query_echo, next_offset, verdict, hint}.
| Name | Required | Description | Default |
|---|---|---|---|
| kev | No | If true, return only CVEs in the CISA Known Exploited Vulnerabilities (KEV) catalog — these are actively exploited in the wild. | |
| sort | No | Sort order for results. Must be one of: published_desc (newest first), epss_desc (most exploitable first), cvss_desc (most severe first). Omit for newest first (default=published_desc). | |
| limit | No | Maximum results to return. Range: 1-200. | |
| cwe_id | No | Filter by CWE weakness ID. Exact match, case-insensitive. Common values: CWE-79 (XSS), CWE-89 (SQL injection), CWE-120 (buffer overflow), CWE-78 (command injection). Format: CWE-<number>. Omit to not filter by CWE. | |
| offset | No | Skip N results for pagination. Use with limit to page through results. | |
| vendor | No | Filter by vendor name (case-insensitive). When combined with product, both must match the same CPE row — prevents cross-row false matches. Example: vendor=apache, product=struts. | |
| include | No | Per-result detail level. Default (omit) returns slim list items (cve_id, summary, severity, cvss_v3, cwe_id, epss, kev, total_products, published, modified, sources). Pass 'full' to also return description, cvss_breakdown, affected_products, references, first_seen_source, first_seen_at — only do this when the user explicitly wants drill-down on every result. Even with 'full', per-result affected_products and references may be truncated (the per-result total_products/total_references report the honest counts); use cve_lookup for the guaranteed-complete per-CVE lists. For single-CVE detail prefer cve_lookup; slim default keeps token cost ~70% lower on Log4j-class queries. Note: verdict is at the response root, not per-row (was deduplicated to save ~40% payload). | |
| product | No | Product or vendor token to filter by. EXACT match (case-insensitive) against the NVD-canonical CPE product/vendor token — NOT substring/fuzzy, and NOT necessarily the common project name. Common names, vendor renames, and build-tool artifact ids often differ from the canonical token (e.g. modern nginx CVEs are under 'nginx_open_source'/'nginx_plus', vendor 'f5', not 'nginx'; Maven 'log4j-core' maps to 'log4j'). A low or zero count for a well-known product usually means the token differs — do NOT assume coverage is complete. For dependency/package lists prefer check_dependencies, and for a domain's whole tech stack tech_stack_cve_audit (both auto-normalize tokens). A product match means CVEs exist for that product, not that a specific running version is affected — verify the running version is within each CVE's affected range. Omit to search all products. | |
| cvss_max | No | Maximum CVSS v3 base score (0.0-10.0). Default 10.0 = no filter (sentinel, not applied). Set < 10.0 to filter — CVEs with null CVSS are excluded when active. Combine with cvss_min for a range. | |
| cvss_min | No | Minimum CVSS v3 base score (0.0-10.0). Default 0.0 = no filter (sentinel, not applied). Set > 0 to filter — CVEs with null CVSS are excluded when active. Use 7.0 for high+critical, 9.0 for critical only. | |
| epss_min | No | Minimum EPSS score filter (0.0-1.0). EPSS predicts exploitation probability. 0.5 = top ~5% most likely to be exploited. 0.0 = no filter. | |
| severity | No | CVSS severity level. Must be one of: CRITICAL, HIGH, MEDIUM, LOW. Omit for all severities. | |
| published_after | No | Inclusive lower bound on publish date as YYYY-MM-DD (UTC). Pick this when the user names a starting point, e.g. 'since 2015' → '2015-01-01', 'after March 2024' → '2024-03-01'. Omit to not bound the lower edge. Combine with published_before for ranges. | |
| published_before | No | Inclusive upper bound on publish date as YYYY-MM-DD (UTC). Pick this when the user names an ending point, e.g. 'before 2020' → '2019-12-31', 'up to 2023' → '2023-12-31'. Omit to not bound the upper edge. Combine with published_after for ranges. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses behavioral traits beyond annotations: default SLIM response vs include='full', exact match token requirements (e.g., nginx vs nginx_open_source), explanation of low/zero counts meaning token mismatch, and response structure (verdict at root, not per-row). No contradictions with annotations (readOnlyHint, idempotentHint, destructiveHint).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is comprehensive but slightly lengthy; however, every sentence adds value for a complex tool with 14 parameters. Front-loaded with purpose and filters, then details alternatives and special behavior. Could be slightly more concise but remains effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Complete for the tool's complexity: covers all filter types, default response, alternative tools, token matching caveats, pagination hints, and response structure (verdict, hint). Despite no full output schema provided, the description adequately explains return fields and usage patterns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Adds significant meaning beyond schema: explains product/vendor EXACT match with examples (nginx_open_source, log4j), details include parameter's slim vs full options and token cost implications, describes vendor filter's cross-row matching behavior. All 14 parameters are covered and enriched.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Search CVE database with filters' and lists specific filter criteria, distinguishing it from siblings like cve_lookup (single CVE) and check_dependencies (auto-normalized searches). It precisely defines the tool's scope and output format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly guides when to use alternatives: for dependency/package lists use check_dependencies, for domain's tech stack use tech_stack_cve_audit, for single CVE use cve_lookup, for kev deadlines use kev_detail. Also advises using cwe_id for enumerating weaknesses paired with cwe_lookup. Provides clear scenarios and exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cwe_lookupCWE LookupARead-onlyIdempotentInspect
Look up MITRE CWE (Common Weakness Enumeration) catalog record from research view 1000. Default response is SLIM (first 3 mitigations, first 3 examples; extended_description is null) — pass include='full' for the verbose record (full mitigations + examples lists, populated extended_description). Returns description, abstract type (Pillar/Class/Base/Variant/Compound), status (Stable/Draft/Incomplete/Deprecated), exploit likelihood, recommended mitigations, observed example CVEs, parent_cwe (walk up the hierarchy), child_cwes (drill down to more specific weaknesses), and cve_count (LOWER BOUND — counts only CVEs whose primary CWE matches; CVEs with multiple CWEs may not be counted). Use after cve_lookup or kev_detail to understand the underlying weakness category; chain with cve_search(cwe_id=...) to enumerate all matching CVEs. Returns 404 when the CWE is not in research view 1000. Free: 30/hr, Pro: 500/hr. Returns {cwe_id, name, description, extended_description (null on slim, populated on include='full'), abstract_type, status, likelihood, mitigations (first 3 by default), total_mitigations, examples (first 3 by default), total_examples, parent_cwe, child_cwes, cve_count, updated_at, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| cwe_id | Yes | CWE identifier — accepts 'CWE-79', 'cwe-79', or bare '79'. Common values: CWE-79 (XSS), CWE-89 (SQL injection), CWE-78 (command injection), CWE-502 (deserialization), CWE-22 (path traversal), CWE-120 (buffer overflow). | |
| include | No | Detail level. Default ('') returns slim record (first 3 mitigations, first 3 examples; extended_description is null). total_mitigations / total_examples are always honest pre-truncation counts. Pass 'full' to populate extended_description and return the full mitigations + examples lists. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, idempotent, non-destructive. Description elaborates on behavior: default slim response (first 3 mitigations/examples, extended_description null), total counts always honest, cve_count as lower bound (only primary CWE matches), 404 when not in research view 1000. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence serves a purpose. Information is front-loaded: main purpose, optional mode, return fields, usage chain, rate limits, error condition. No redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers all aspects: input format, output fields, behavior nuances (slim vs full, cve_count lower bound), error handling (404), rate limits, and chaining suggestions. Output schema exists, but description still details return fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but description adds value: lists common CWE IDs for cwe_id, explains default vs full for include, and describes total_mitigations/total_examples as honest pre-truncation counts. Adds clarity beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Look up MITRE CWE catalog record from research view 1000', specifying the resource and scope. Differentiates from siblings like cve_lookup and cve_search by its focus on weaknesses. The description of default slim vs. full mode adds precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly recommends using after cve_lookup or kev_detail and chaining with cve_search. Provides rate limits (30/hr free, 500/hr pro). No ambiguity about when to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
d3fend_attack_coverageD3FEND Attack CoverageARead-onlyIdempotentInspect
Batch coverage breakdown: given a list of ATT&CK T-codes, return distinct defense counts per D3FEND tactic + identify which techniques have NO D3FEND mapping (undefended_techniques). Use to assess the defensive posture of an entire attack campaign or threat model in one call. defended_techniques is the subset with at least one D3FEND defense; undefended_techniques are gaps worth flagging. Pair with cve_search per gap to identify exploit availability. Free: 30/hr, Pro: 500/hr. Returns {queried_techniques, coverage_by_tactic, defended_techniques, undefended_techniques, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| attack_technique_ids | Yes | List of ATT&CK technique ids (T#### or T####.###) to assess. Capped at 500 — extra entries are dropped server-side. Example: ['T1059', 'T1550.001', 'T1190', 'T9999']. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive. The description adds important behavioral details: batch processing, capped at 500 entries with extra dropped, rate limits (30/hr Free, 500/hr Pro), and the exact fields in the return object. This provides sufficient transparency beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph of five sentences, efficient and front-loaded with the main action. It includes only necessary information: purpose, return fields, usage hint, rate limits. No fluff, but could be more structured (e.g., bullet points for return fields).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (batch, multiple return fields, rate limits) and the presence of an output schema, the description covers the main aspects: purpose, return object keys, usage, and constraints. It does not detail the format of coverage_by_tactic, but the output schema likely provides that. Overall, it is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers the parameter 'attack_technique_ids' with full description (100% coverage), including maxItems and example. The description only reiterates the cap and example, adding no new meaning. So baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool takes a list of ATT&CK T-codes and returns a coverage breakdown including defense counts per D3FEND tactic and identifies undefended techniques. It explicitly says this is for assessing defensive posture of an entire campaign or threat model, distinguishing it from siblings like d3fend_defense_for_attack.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context: 'Use to assess the defensive posture of an entire attack campaign or threat model in one call' and suggests pairing with cve_search for gaps. However, it does not explicitly state when not to use it or compare to alternatives, so it falls short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
d3fend_defense_for_attackD3FEND Defense for AttackARead-onlyIdempotentInspect
Reverse lookup: given an ATT&CK T-code, return D3FEND defenses that mitigate it. This is the bridge from offensive intelligence (ATT&CK / ATLAS / CVE) to defensive playbook. Pair with cve_lookup or atlas_technique_lookup output — when those carry an ATT&CK id, call this tool to surface the mitigations. defenses is capped at limit (default 30) for token efficiency; total is the honest pre-truncation count and truncated=true flags when the cap was hit. coverage_by_tactic always aggregates the FULL set, not the slice. Default response is SLIM (drops uri from each row); pass include='full' for the verbose record. Pass exclude_id when drilling from d3fend_defense_lookup to skip self in the 'see also' list. Returns 200 with empty defenses list when the T-code has no D3FEND mapping (the gap is itself a signal). Free: 30/hr, Pro: 500/hr. Returns {attack_technique_id, total, truncated, defenses [{defense_id, label, uri (only when include=full), parent_label, tactic, artifact, attack_label, attack_tactic}], coverage_by_tactic, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Cap on `defenses` array length. Default 30; popular T-codes (T1059, T1078) map to 30-50+ defenses. `total` and `coverage_by_tactic` always reflect the honest pre-truncation count. | |
| include | No | Detail level. Default (omit/empty) returns slim rows (drops the deterministic ontology `uri` — popular T-codes with 15+ defenses save ~900 chars). Pass 'full' to get `uri` back on every row. | |
| exclude_id | No | Optional D3FEND defense slug to omit from the defenses list. Used when chaining from d3fend_defense_lookup so the originating defense is not echoed back in its own 'see also' results. | |
| attack_technique_id | Yes | ATT&CK technique id matching 'T####' or 'T####.###' (e.g. 'T1059', 'T1550.001'). Use this to bridge from CVE/ATLAS findings to D3FEND mitigations. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses key behaviors beyond annotations: truncation logic (`defenses` capped at `limit`, `total` and `coverage_by_tactic` always full), default slim response, rate limits (30/hr free, 500/hr Pro), and 200 response with empty list for unmapped T-codes. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, but is somewhat long. However, every sentence contributes meaning; a minor trim would improve conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (4 params, API behaviors, truncation, and rate limits), the description covers all necessary aspects including return structure (`defenses` fields, `coverage_by_tactic`, `next_calls`). Output schema handles the rest.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Each parameter description adds value beyond the schema: `limit` explains why cap matters for popular T-codes, `include` quantifies character savings, `exclude_id` details chaining use case, and `attack_technique_id` gives format examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it's a reverse lookup from ATT&CK T-code to D3FEND defenses, distinguishing it as the bridge from offensive intelligence to defensive playbook. It explicitly mentions pairing with cve_lookup or atlas_technique_lookup, differentiating it from siblings like d3fend_defense_lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: call this tool when you have an ATT&CK id from CVE/ATLAS lookups. Also explains when to pass `exclude_id` when chaining from d3fend_defense_lookup, and when to use `include='full'` for verbose records.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
d3fend_defense_lookupD3FEND Defense LookupARead-onlyIdempotentInspect
Look up a MITRE D3FEND defense technique. D3FEND is the canonical defensive counterpart to ATT&CK — each defense is classified into one of 7 tactics (Model/Harden/Detect/Isolate/Deceive/Evict/Restore) and may target a specific digital artifact (e.g. 'Access Token'). Response includes attack_techniques: the list of ATT&CK T-codes this defense mitigates. Use after d3fend_defense_search for the full record + ATT&CK chain. Returns 404 when the slug is not in the synced D3FEND catalog. Free: 30/hr, Pro: 500/hr. Returns {defense_id, label, uri, parent_label, description, tactic, artifact, attack_techniques, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| defense_id | Yes | D3FEND defense slug from the ontology URI fragment (CamelCase), e.g. 'TokenBinding', 'FileHashing', 'CertificatePinning'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly and idempotent hints. The description adds useful behavioral details: returns 404 for missing slug, describes response fields including attack_techniques, and states rate limits. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is well-structured with main action first, then supportive details, usage guidance, error handling, rate limits, and return schema. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple lookup tool with good annotations, this description covers purpose, usage context, error behavior, rate limits, and output structure. It is comprehensive relative to complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has one parameter with a detailed description and 100% coverage. The tool description does not add extra parameter information, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool looks up a MITRE D3FEND defense technique, explains what D3FEND is, and distinguishes from sibling tools by advising to use after d3fend_defense_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description explicitly says to use after d3fend_defense_search and mentions 404 for missing slugs, providing clear context. It does not explicitly list alternatives or when not to use, but the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
d3fend_defense_searchD3FEND Defense SearchARead-onlyIdempotentInspect
Search the MITRE D3FEND catalog of defensive techniques by keyword, tactic, or targeted artifact. Default response is SLIM (drops uri from each row — saves ~60 chars/row, ~30% on popular drills); pass include='full' for the verbose record. Pass exclude_id when chaining from d3fend_defense_lookup to skip self in sibling-artifact searches. Use to discover defenses applicable to a given threat model — e.g. 'what defenses harden access tokens?' (tactic=Harden + artifact='Access Token'). Drill into d3fend_defense_lookup with any returned defense_id for the ATT&CK technique mappings. Free: 30/hr, Pro: 500/hr. Returns {query, total, results [{defense_id, label, uri (only when include=full), parent_label, tactic, artifact}], next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return. Range: 1-200. | |
| tactic | No | Filter by D3FEND tactic. One of: Model, Harden, Detect, Isolate, Deceive, Evict, Restore. Omit for all tactics. | |
| include | No | Detail level. Default (omit/empty) returns slim rows (drops the deterministic ontology `uri` field, ~60 chars/row saved). Pass 'full' to get `uri` back on every row. The slug `defense_id` is always returned and uniquely identifies the defense. | |
| keyword | No | Substring match against defense label, description, or parent_label (case-insensitive). Min 2 chars. Example: 'token', 'hashing', 'sandbox'. Omit to list all. | |
| artifact | No | Filter by exact targeted digital artifact (case-insensitive), e.g. 'Access Token', 'File', 'Process'. Omit for any artifact. | |
| exclude_id | No | Optional D3FEND defense slug (CamelCase, e.g. 'TokenBinding') to omit from results. Useful when chaining from d3fend_defense_lookup so the originating defense is not echoed back in its own siblings list. Omit when not needed. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only hint at read-only and idempotent behavior. The description adds concrete behavioral details: default slim response (saves ~60 chars/row, ~30%), include='full' option, rate limits (30/hr free, 500/hr Pro), and return format specification.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The single-paragraph description is well-structured: purpose, default behavior, parameters, usage example, chaining, rate limits, return format. Every sentence adds necessary information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple filters, chaining, rate limits, differing response formats) and the presence of output schema, the description covers all relevant aspects thoroughly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All 6 parameters are already described in the schema (100% coverage). The description adds value by explaining the default include behavior with char savings, the chaining use of exclude_id, and providing examples for keyword and artifact.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches the MITRE D3FEND catalog by keyword, tactic, or artifact. It differentiates itself from siblings like d3fend_defense_lookup by specifying chaining behavior.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit use cases (e.g., hardening access tokens) and chaining instructions with exclude_id. It lacks explicit when-not-to-use, but context with sibling tools implies appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
dns_lookupDNS LookupARead-onlyIdempotentInspect
Query all DNS record types (A, AAAA, MX, NS, TXT, CNAME, SOA) for a domain. Use for mail routing inspection, nameserver verification, or SPF/DMARC checks; for full overview use domain_report. TXT records are returned raw (no filter) — total_txt_records always carries the honest count (use domain_report for the security-only filtered TXT view). Free: 30/hr, Pro: 500/hr. Returns {domain, records: {a, aaaa, mx, ns, txt, total_txt_records, cname, soa}, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to query, without protocol or path (e.g. 'example.com', 'cloudflare.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, destructiveHint=false. Description adds valuable behavioral context: TXT records are returned raw with honest count, rate limits (30/hr free, 500/hr pro), and return structure. Does not contradict annotations; scores 4 for adding beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is a single packed sentence but effectively front-loads purpose and key details. Every phrase adds value, no fluff. Could be slightly more structured, but overall concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given simple input schema (1 param, fully described), presence of output schema, and annotations, the description provides sufficient context: explains return format, rate limits, and distinguishes from sibling. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with parameter 'domain' described clearly ('Root domain to query, without protocol or path'). The description does not add additional parameter meaning beyond what the schema provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description is specific: 'Query all DNS record types (A, AAAA, MX, NS, TXT, CNAME, SOA) for a domain.' Lists clear use cases like mail routing, nameserver verification, SPF/DMARC checks, and explicitly distinguishes from sibling 'domain_report' for filtered TXT views.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool vs alternatives: 'Use for mail routing inspection, nameserver verification, or SPF/DMARC checks; for full overview use domain_report.' Also clarifies that TXT records are returned raw and 'total_txt_records' is honest, directing to domain_report for filtered view.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
domain_reportDomain ReportARead-onlyIdempotentInspect
Query DNS, WHOIS, SSL, subdomains, and threat intel for a domain in one call. By default dns.txt is filtered to security-relevant entries (SPF, DMARC, DKIM, MTA-STS, TLS-RPT) and dns.total_txt_records reports the honest pre-filter count; pass include_all_txt=true for the raw TXT list. Use as a starting point for domain investigations; use audit_domain for live headers + tech stack. Response carries next_calls — chain with subdomain_enum (always emitted), ssl_check + tech_fingerprint (when an A record resolves) for the standard recon depth without re-prompting. Free: 30/hr, Pro: 500/hr. Returns domain report with DNS records, WHOIS data, SSL cert, risk score, email config, threat status, recommendation, and next_calls.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to analyze, without protocol or path (e.g. 'example.com', 'shopify.com') | |
| include_all_txt | No | Return every TXT record (default: False, only SPF/DMARC/DKIM/MTA-STS/TLS-RPT kept). dns.total_txt_records is always emitted with the honest pre-filter count. Default filter strips vendor verification strings (google-site-verification, ms=, facebook-domain-verification, etc.) that bloat the response without security signal. Set True only when you need the raw TXT inventory. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint, idempotentHint, etc.) are complemented by descriptions of default TXT filtering, rate limits (30/hr free, 500/hr Pro), next_calls behavior, and the rationale for stripping vendor verification strings. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but front-loaded with purpose. While slightly long, every sentence provides essential information for correct tool use, balancing completeness with clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema (not shown), returns are presumed documented. The description covers parameters, usage context, behavioral details, rate limits, and chaining instructions, leaving no gaps for effective agent invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and descriptions add value: domain parameter clarifies 'without protocol or path'; include_all_txt explains default filter and when to use True, including examples of stripped strings.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it queries DNS, WHOIS, SSL, subdomains, and threat intel for a domain in one call. It distinguishes from sibling audit_domain by specifying it as a starting point and names other tools for deeper analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Use as a starting point for domain investigations; use audit_domain for live headers + tech stack.' Provides guidance on include_all_txt parameter and suggests chaining with specific tools via next_calls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
email_disposableEmail DisposableARead-onlyIdempotentInspect
Check if email address uses a known disposable/temporary provider (Guerrilla Mail, Temp Mail, Mailinator, etc.). Use for input validation to detect throwaway signups; for domain reputation use threat_intel. Companion email-investigation tools: email_mx (deliverability + MX trust), domain_report on the email's domain (full recon), threat_intel (malware-distribution signal on the domain). Free: 30/hr, Pro: 500/hr. Returns {disposable, domain, provider}.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Full email address to check (e.g. 'user@tempmail.com', 'test@guerrillamail.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, openWorldHint=true, idempotentHint=true, destructiveHint=false. Description adds return fields {disposable, domain, provider}, consistent with read-only behavior. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is compact: purpose, examples, use-case, companion tools, rate limits, and return structure in three sentences. No fluff, front-loaded with essential info.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (1 param, output schema exists, annotations cover safety), the description fully covers what the agent needs: purpose, when to use, return fields, and rate limits. Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Single parameter email is fully described in schema (100% coverage). Description adds example formats ('user@tempmail.com', 'test@guerrillamail.com'), which is helpful but not critical. Baseline 3, plus 1 for extra context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses specific verb 'Check if email address uses a known disposable/temporary provider' and lists examples (Guerrilla Mail, Temp Mail, Mailinator). It clearly distinguishes from sibling tools like threat_intel, email_mx, and domain_report by stating their different use cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use ('input validation to detect throwaway signups') and when not ('for domain reputation use threat_intel'), and mentions companion tools. Also provides rate limits (Free: 30/hr, Pro: 500/hr), aiding selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
email_mxEmail MXARead-onlyIdempotentInspect
Analyze email security: MX records, SPF policy, DMARC policy, DKIM probe across common+date-based selectors, mail provider, grade. Use to verify email-auth setup and phishing risk; for full audit use domain_report. Free: 30/hr, Pro: 500/hr. email_security.dkim_status reports honest evidence: 'verified' iff at least one selector responded, else 'unverifiable' (custom selectors cannot be discovered without prior knowledge). Grade: when DKIM verified, A=SPF+DMARC+DKIM/B=2of3/C=1of3; when DKIM unverifiable, A=SPF+DMARC/B=one/F=neither — DKIM absence is NOT penalized because it is unprovable in DNS. Returns {mx_records, mail_provider, email_security:{spf, dmarc, dkim_selectors, dkim_status, grade, issues}, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to analyze email configuration for (e.g. 'example.com', 'google.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Goes beyond annotations by explaining DKIM status logic ('verified' vs 'unverifiable'), grading formula under both DKIM conditions, and that DKIM absence is not penalized. Also mentions rate limits. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Starts with core purpose, followed by alternative, rate limits, and detailed behavioral notes. Each sentence adds value. Slightly long but well-organized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers what the tool returns (list of fields) and explains grading and DKIM logic. The 'issues' field is mentioned but not detailed, which is acceptable with output schema present. Adequate for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema already provides clear description for the only parameter 'domain'. The tool description adds no further parameter meaning; baseline 3 applies since schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool analyzes email security covering MX records, SPF, DMARC, DKIM, mail provider, and grade. Distinguishes from sibling 'domain_report' by specifying this is for verification and phishing risk while domain_report is for full audit.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use for verifying email-auth setup and phishing risk, and for full audit use domain_report. Provides rate limits but does not mention other siblings like email_security_posture. Clear context with one alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
email_security_postureEmail Security PostureARead-onlyIdempotentInspect
Analyze domain email authentication posture: SPF, DMARC, DKIM with numeric score and findings. Dual-use: red-team (spoofing feasibility) + blue-team (posture audit). Score 0-100, grades A+-F. DKIM probing tests common selectors + recent dates; custom selectors must be supplied. Passive DNS-only; no SMTP probe. Free: 30/hr, Pro: 500/hr.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to audit email authentication posture for (e.g. 'example.com') | |
| selectors | No | Optional comma-separated custom DKIM selectors to probe |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, openWorld, and non-destructive traits. The description adds significant behavioral context: it performs passive DNS-only probing, tests common DKIM selectors plus custom ones, and outputs a score 0-100 with grades A+-F. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose and outputs. Every sentence adds essential information: first sentence covers function and output, second sentence covers use cases, third covers technical details and rate limits. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the key aspects: what the tool does (SPF, DMARC, DKIM), how it works (passive DNS, custom selectors), output format (score and grades), and rate limits. Since there is an output schema, return values are covered. Minor details like the exact grading scale or finding structure are omitted, but the tool is sufficiently described for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% description coverage for both parameters. The description reinforces the schema by explaining the purpose of custom selectors and the probing behavior, adding value beyond the schema's basic descriptions. This justifies a score above the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool analyzes domain email authentication posture (SPF, DMARC, DKIM) and produces a numeric score with findings. It uses a specific verb ('Analyze') and resource ('domain email authentication posture'), effectively distinguishing it from sibling tools like dns_lookup or domain_report that do not focus on email security.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly mentions dual-use for red-team and blue-team, indicates it is passive DNS-only with no SMTP probe, and provides rate limit information. It explains when custom DKIM selectors are needed. While it does not explicitly state when not to use or name alternatives, the context is clear enough for correct tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
email_verifyEmail VerifyARead-onlyIdempotentInspect
One-call email validation combining syntax + MX records + disposable check + role-address detection (admin@/info@/...) + free-provider classification (gmail/outlook/yahoo/...). Use BEFORE adding an email to a contact list, sending an outbound message, or auditing a lead-list dump — replaces 2-3 tool calls (email_mx + email_disposable + manual role parse) with one structured response. Deliberately does NOT do SMTP RCPT TO deliverability probing — Hunter.io / NeverBounce-style mailbox enumeration is an ethical grey area we declined; use those services if you need that specific signal. role_address=true on admin@, info@, noreply@, support@, etc. (Gmail-style +tag is stripped before classification). free_provider=true on consumer-mailbox domains (B2B detection signal — a 'work' email at @gmail.com likely isn't a corporate user). Free: 30/hr, Pro: 500/hr. Returns {email, domain, syntax_valid, mx_records, disposable, disposable_provider, role_address, role_type, free_provider, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Full email address to verify (e.g. 'admin@example.com', 'user@gmail.com'). Must contain '@'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate safe, read-only, idempotent behavior. The description adds detailed behavioral context: checks performed, role_address detection details (admin@, info@, etc.), free_provider detection, and mentions that Gmail-style +tag is stripped. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is informative but slightly long; however, every sentence adds value. Well-structured: purpose first, then usage, limitations, details. Front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given complexity with multiple checks, the description covers input, output fields (listed in description), rate limits, exclusions (no SMTP probing), making it fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only parameter 'email' has 100% schema coverage. Description adds examples and requirement ('Must contain @'), providing additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states it is a one-call email validation combining syntax, MX, disposable, role, and free-provider checks. It distinguishes itself from sibling tools like email_mx and email_disposable by noting it replaces 2-3 tool calls.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear when-to-use guidance ('BEFORE adding an email to a contact list...') and explicit what-it-does-not-do (SMTP RCPT TO deliverability probing) with alternatives (Hunter.io/ NeverBounce). Also mentions rate limits (30/hr Free, 500/hr Pro).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exploit_lookupExploit LookupARead-onlyIdempotentInspect
Search public exploits/PoC for a specific CVE across three sources: (1) GitHub Advisory Database (sources.github.advisories[]), (2) Shodan CVEDB references (sources.shodan_refs.results[] — packetstorm/seclists/vendor URLs cited by Shodan; results capped at SHODAN_REFS_LIMIT default 200, truncated=true when capped, count is the honest upstream total), (3) ExploitDB CSV mirror (exploits[] array, with edb_id + author + verified flag — these are the actual ExploitDB entries). Use to assess if a vulnerability has weaponized exploits in the wild; run after cve_lookup to evaluate real-world risk. When the CVE is also in CISA KEV (kev.in_kev=true on cve_lookup), pair with kev_detail for federal patch deadline; pair with cwe_lookup on cwe_id for the underlying weakness category and mitigations. Response carries next_calls — single cve_lookup pivot for full context (KEV status, CWE chain, CVSS, EPSS); cve_lookup's own next_calls then surface kev_detail and cwe_lookup automatically (this endpoint has no in_kev/cwe_id schema, so blind emission of those pivots is intentionally avoided). Free: 30/hr, Pro: 500/hr. Returns {cve_id, exploits_found, has_public_exploit, sources: {github, shodan_refs: {found, count, truncated, results}}, exploits: [{edb_id, cve_id, date_published, author, type, platform, url, verified, description}], summary, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE identifier in format CVE-YYYY-NNNNN (e.g. 'CVE-2024-3094', 'CVE-2023-44487') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses response structure with field details, Shodan refs limit (default 200, truncated flag), and explains next_calls logic. No contradictory annotations; readOnlyHint=true aligns with the search nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense with useful information but slightly verbose. It is well-structured, covering sources, usage, and returns, though a few sentences could be trimmed without loss.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the rich annotations and output schema, the description fully covers the tool's behavior, integration points, and constraints. No missing information for an effective agent invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter (cve_id) with full schema coverage (100%). The description reinforces the format and gives examples, but adds no substantial meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches public exploits/PoC for a specific CVE across three named sources. It distinguishes itself from sibling tools like cve_lookup, kev_detail, and cwe_lookup by specifying its unique function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance: 'Use to assess if a vulnerability has weaponized exploits in the wild; run after cve_lookup'. Provides context on when to pair with kev_detail and cwe_lookup, and mentions rate limits (30/hr free, 500/hr Pro).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
geo_auditGeo AuditARead-onlyIdempotentInspect
Deterministic GEO / AI-visibility readiness audit of a domain's homepage with a 0-100 score + a missing_signals fix list. Answers "can AI assistants (ChatGPT, Claude, Perplexity, Google AI) discover, crawl, and recommend this site?" using STRUCTURAL signals ONLY — no LLM is queried, fully deterministic. 7 weighted rules: llms.txt present (15), AI-crawler robots.txt access — 9 crawlers incl. GPTBot/ClaudeBot/PerplexityBot/Google-Extended/CCBot (25 — the dominant signal; blocking = invisible to that AI surface), schema.org @type coverage Organization/Product/FAQPage (20), server-side rendering vs client-only SPA (15 — a JS-only SPA serves AI crawlers empty HTML), discovery signals og/canonical/sitemap (10), semantic headings single-H1 + H2 structure (10), competitor-comparison content (5). Use to triage why a brand is absent from AI recommendations, as a pre-flight before GEO/AEO content work, or to score a prospect's AI-readiness. Strictly homepage-only — we do NOT crawl. Ethical floor: target's robots.txt is honoured — Disallow: / for ContrastAPI returns 403 error.code = robots_txt_disallow and we DO NOT fetch. Cache-Control: no-store/private skips our cache write (cache_respected=false). Per-target eTLD+1 throttle (60 req/min). Free: 30/hr, Pro: 500/hr. Returns {domain, fetched_url, status_code, llms_txt_present, ai_crawlers_total, ai_crawlers_allowed, ai_crawlers_blocked, schema_types, client_side_rendered, render_framework, has_canonical, og_tag_count, sitemap_count, h1_count, h2_count, comparison_content, score, missing_signals, cache_respected, summary}. Returns 502 on DNS/TCP/TLS failure; 403 robots_txt_disallow when the target opted out.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Registrable domain to audit for AI-visibility / GEO readiness (e.g. 'example.com', 'shopify.com'). No scheme, no path, no port. Strictly homepage-only — the bot fetches https://<domain>/ with HTTP fallback (we do NOT crawl). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, openWorldHint, idempotentHint. The description adds substantial behavioral context: fully deterministic (no LLM queried), honors robots.txt with specific error codes (403, 502), cache behavior, throttling per eTLD+1, and detailed output fields. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is lengthy but well-structured, front-loading purpose and then detailing rules, usage, ethics, and output. Every sentence provides necessary information for a complex tool, though it could be slightly more concise without losing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (7 weighted rules, multiple output fields, error states, rate limits, ethical considerations), the description is highly complete. It covers input constraints, behavioral details, output format, and edge cases. The output schema is mentioned, so return values are sufficiently documented.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'domain' has 100% schema description coverage. The description adds meaning by specifying it must be registrable, no scheme/path/port, homepage-only, with HTTP fallback. This adds value beyond the schema's own description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states this tool performs a 'Deterministic GEO / AI-visibility readiness audit' of a domain's homepage, producing a 0-100 score and fix list. It distinguishes itself from siblings like seo_audit by focusing specifically on AI assistant discoverability, and from audit_domain by being homepage-only.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'to triage why a brand is absent from AI recommendations, as a pre-flight before GEO/AEO content work, or to score a prospect's AI-readiness.' It also states what not to do: 'Strictly homepage-only — we do NOT crawl.' It provides context on ethical handling of robots.txt and rate limits.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_cvss_detailsGet CVSS DetailsARead-onlyIdempotentInspect
Parse a CVSS v3.x vector string into a per-metric breakdown plus a recomputed base score. Returns the canonicalized vector, version (3.0 or 3.1), base_score, base_severity (NONE/LOW/MEDIUM/HIGH/CRITICAL), and the eight base metrics: attack_vector (NETWORK/ADJACENT_NETWORK/LOCAL/PHYSICAL), attack_complexity (LOW/HIGH), privileges_required (NONE/LOW/HIGH), user_interaction (NONE/REQUIRED), scope (UNCHANGED/CHANGED), and the three impact metrics confidentiality_impact / integrity_impact / availability_impact (NONE/LOW/HIGH each). When temporal/environmental metrics are explicit in the vector, temporal_score and environmental_score are populated separately. Use to translate raw CVSS strings into agent-friendly attributes without re-parsing the vector grammar yourself, and to verify upstream NVD scoring against the recomputed value. v2 vectors (AV:N/AC:L/Au:N/...) are rejected with 400 — read cvss_v2_vector from cve_lookup if you need v2 detail. Free: 30/hr, Pro: 500/hr. Returns {version, vector, base_score, base_severity, metrics: {attack_vector, attack_complexity, privileges_required, user_interaction, scope, confidentiality_impact, integrity_impact, availability_impact}, temporal_score, environmental_score, summary, verdict}.
| Name | Required | Description | Default |
|---|---|---|---|
| vector | Yes | CVSS v3.0 or v3.1 vector string, e.g. 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'. v2 vectors are rejected — use the cvss_v2_vector field on cve_lookup if you need v2. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool as read-only and idempotent. The description adds rate limits (30/hr free, 500/hr pro) and details the return structure (fields like base_score, metrics object). No contradictions. A score of 4 reflects the added value beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core action. It is relatively long but each sentence adds value, covering purpose, return fields, usage guidelines, and rate limits. Could be slightly more concise but maintains good density.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description comprehensively lists all return fields (canonicalized vector, version, base_score, base_severity, metrics, temporal/environmental scores, summary, verdict). It also covers error handling for v2 vectors. Fully complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the schema already describes the vector parameter. The description adds context by providing an example vector string and explicitly stating v2 vectors are rejected. This adds meaningful guidance beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it parses a CVSS v3.x vector string into a per-metric breakdown and recomputed base score. It distinguishes itself from siblings like cve_lookup and exploit_lookup by focusing on CVSS vector parsing, which no other sibling tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use: to translate raw CVSS strings and verify upstream NVD scoring. Also states v2 vectors are rejected and directs users to cvss_v2_field on cve_lookup for v2 details. Clear when-not-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
hash_lookupHash LookupARead-onlyIdempotentInspect
Query MalwareBazaar for file hash (MD5/SHA1/SHA256): malware family, file type, size, tags, first/last seen, download count. Use to check if file hash is known malware; use ioc_lookup for auto-detection of all IOC types. Companion malware-investigation tools: ioc_lookup (multi-source: ThreatFox + Feodo Tracker + URLhaus), threat_intel (domain-level URLhaus check), exploit_lookup (link a known CVE to PoC code if the hash maps to an exploit binary). Free: 30/hr, Pro: 500/hr. Returns {found, malware_family, file_type, file_size, tags, first_seen, last_seen, signature}.
| Name | Required | Description | Default |
|---|---|---|---|
| file_hash | Yes | File hash to look up. Accepts MD5 (32 chars), SHA-1 (40 chars), or SHA-256 (64 chars). Lowercase hex only, no spaces. Example: 'd41d8cd98f00b204e9800998ecf8427e' |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint true, and destructiveHint false. The description adds valuable behavioral context beyond annotations: rate limits (30/hr free, 500/hr Pro) and a summary of returned fields, which helps the agent understand side effects and limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (6-7 sentences) and front-loaded: it starts with purpose, then usage guidelines, then rate limits, then return fields. No redundant or irrelevant information; every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has an output schema, the description does not need to explain return values in detail, but it still lists the key fields. The description covers all essential aspects: purpose, usage context, behavioral traits, and parameter constraints, making it fully actionable for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The schema already fully documents the file_hash parameter with accepted formats and examples. The description does not add any new meaning beyond what is in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool queries MalwareBazaar for file hashes (MD5/SHA1/SHA256) and returns malware family, file type, size, tags, dates, and download count. It explicitly distinguishes itself from sibling tools like ioc_lookup (multi-source) and others, satisfying the 'specific verb+resource, distinguishes from siblings' criterion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance: 'Use to check if file hash is known malware; use ioc_lookup for auto-detection of all IOC types.' It also lists companion tools with their purposes, giving clear when-to-use and when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ioc_lookupIOC LookupARead-onlyIdempotentInspect
Enrich Indicator of Compromise (IP/domain/URL/hash) by auto-detecting type and querying abuse.ch feeds. Per-type source coverage: hash → ThreatFox only (Feodo and URLhaus do not index hashes); IP → ThreatFox + Feodo Tracker + URLhaus; domain / URL → ThreatFox + URLhaus. verdict.sources_queried lists what actually ran; verdict.sources_unavailable lists what failed (timeout / upstream error). Use as primary IOC triage tool when type unknown; use threat_intel for domain-only, hash_lookup for richer MalwareBazaar hash data. Free: 30/hr, Pro: 500/hr. Returns {indicator, type, threat_level, sources, summary, verdict}.
| Name | Required | Description | Default |
|---|---|---|---|
| indicator | Yes | Indicator of Compromise: IP address, domain, full URL, or file hash in MD5/SHA1/SHA256 format (e.g. '8.8.8.8', 'evil.com', 'https://evil.com/malware.exe', 'd41d8cd98f00b204e9800998ecf8427e') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, destructiveHint. The description adds behavioral details: auto-detection of type, per-type source coverage, verdict fields (sources_queried, sources_unavailable), and failure handling. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Every sentence serves a purpose: purpose, source coverage, usage guidance, rate limits, output format. No filler, well-organized, and front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (multiple input types, multiple feeds, output schema exists), the description covers input possibilities, feed mapping, failure behavior, and output structure. It is fully informative for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a detailed description of the indicator parameter. The description adds context about auto-detection and feed behavior, enriching the parameter semantics beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies the verb 'Enrich' and the resource 'Indicator of Compromise' with explicit types (IP/domain/URL/hash) and auto-detection. It distinguishes from siblings like threat_intel (domain-only) and hash_lookup (richer MalwareBazaar data), making the purpose clear and unique.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance: 'Use as primary IOC triage tool when type unknown' and alternatives for specific cases. Rate limits (30/hr free, 500/hr Pro) are provided, helping the agent decide when to use this tool vs. others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ip_lookupIP LookupARead-onlyIdempotentInspect
Query comprehensive IP intelligence: reverse DNS, ASN + holder name + country inline (RIPE Stat, Phase 1), open ports, hostnames, vulnerabilities (Shodan InternetDB enriched with severity + cvss_v3 from local cve.db — Phase 2 v1.16.0 BREAKING; vulns is now list[VulnInfo] {cve_id, severity, cvss_v3} dicts, pre-1.16 it was list[str] of CVE IDs; unknown CVEs emit severity='UNKNOWN' / cvss_v3=null — do NOT infer benign), cloud provider, Tor exit status, and reputation. cloud_provider uses two-tier detection: published cloud CIDR ranges (AWS/GCP/Cloudflare) first, then an ASN-to-provider fallback map for anycast/public-service IPs outside published ranges (e.g. 8.8.8.8 → AS15169 → 'Google'). Reputation: FireHOL level1 blocklist on Free tier; +AbuseIPDB + Shodan on Pro (Phase 4). Use for IP investigation; for orchestrated IP+reputation use threat_report. Response is null-explicit: every field is always present (cloud_provider=null when neither tier matches; tor_exit=false when not listed or upstream fetch failed — check verdict.sources_unavailable to disambiguate fetch failure from genuine absence). Response carries next_calls (conditional) — asn_lookup when ASN is populated, ioc_lookup when reputation is FireHOL-listed or AbuseIPDB confidence>50, threat_report on Pro tier for orchestrated profile. Free: 30/hr, Pro: 500/hr. Returns {ip, ptr, geo, asn, asn_name, country, ports, hostnames, vulns, cloud_provider, tor_exit, reputation, risk_score, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| ip | Yes | IPv4 or IPv6 address to investigate (e.g. '8.8.8.8', '2606:4700::1111') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations (readOnlyHint, openWorldHint, idempotentHint, destructiveHint=false) are complemented by extensive behavioral details: null-explicit response fields, two-tier cloud_provider detection, tor_exit false on fetch failure vs genuine absence, next_calls logic, version-breaking changes for vulns field format, and severity handling. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long and dense with information. While every sentence adds value, the sheer length and run-on style reduce readability. It could benefit from structured formatting (e.g., bullet points) or segmentation by topic. Front-loading is good but overall conciseness suffers.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of the tool (many response fields, conditional behaviors, version history), the description is thorough. It explains every field's behavior, null handling, and next_calls, making it complete for agent usage. The output schema exists but is not needed given the detailed prose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'ip' is described in schema (IPv4 or IPv6). The description adds examples ('8.8.8.8', '2606:4700::1111') and context about its purpose, providing value beyond the schema's brief description. Schema coverage is 100%, so baseline is 3; the extra examples increase it to 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Query') and resource ('comprehensive IP intelligence'), listing numerous data points (reverse DNS, ASN, ports, vulnerabilities, etc.). It clearly distinguishes from siblings like asn_lookup, ioc_lookup, and threat_report by stating 'Use for IP investigation; for orchestrated IP+reputation use threat_report.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Use for IP investigation; for orchestrated IP+reputation use threat_report.' It includes rate limits (Free 30/hr, Pro 500/hr) and mentions triggers for next_calls (asn_lookup, ioc_lookup, threat_report). However, it does not explicitly state when not to use this tool beyond the alternative mention.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kev_detailKEV DetailARead-onlyIdempotentInspect
Look up CISA KEV (Known Exploited Vulnerabilities) full record for a CVE. Returns federal patch deadline (due_date), CISA-specified required_action remediation, known ransomware association, vendor/product, the CISA-given common name (e.g. 'Log4Shell'), CISA-reported CWE list, plus lifecycle metadata: date_updated (when CISA last revised the entry), date_removed (set when CISA removed the CVE from the catalog — null while still active), and updated_at (our DB sync freshness). Returns 404 when the CVE is not in the KEV catalog — use cve_lookup for non-KEV CVEs. Best follow-up after cve_lookup or cve_search(kev=true) when an in_kev=true CVE is identified; chain with cwe_lookup on each returned CWE to investigate the weakness category. Free: 30/hr, Pro: 500/hr. Returns {cve_id, vendor_project, product, vulnerability_name, date_added, due_date, required_action, known_ransomware_use, notes, cwes, date_updated, date_removed, updated_at, verdict, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes | CVE identifier in format CVE-YYYY-NNNNN (e.g. 'CVE-2021-44228', 'CVE-2024-3094') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. Description adds context about 404 return behavior and rate limits, but does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is front-loaded with action, followed by return details, usage guidance, and rate limits. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given tool complexity (one parameter, output schema exists), description covers purpose, return values, error handling, rate limits, and follow-up steps. Fully adequate for agent selection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear parameter description including format examples. Description does not add significant meaning beyond listing return fields, which is not parameter-specific.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description explicitly states 'Look up CISA KEV full record for a CVE,' using a specific verb and resource. It distinguishes from siblings like cve_lookup by noting it returns 404 for non-KEV CVEs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: use for in_kev=true CVEs after cve_lookup or cve_search, and alternatives like cve_lookup for non-KEV CVEs. Also mentions chaining with cwe_lookup and rate limits.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
password_checkPassword CheckARead-onlyIdempotentInspect
Check if SHA-1 hash appears in Have I Been Pwned (HIBP) breach dataset using k-anonymity (5-char prefix only, full hash never leaves tool). Use for password breach audits; read-only, no data stored. Companion OSINT investigation tools: hash_lookup (file-hash malware family lookup, different namespace), email_disposable (throwaway-mail signal on associated accounts), username_lookup (social-platform exposure on associated handles). Free: 30/hr, Pro: 500/hr. Returns {found, count}.
| Name | Required | Description | Default |
|---|---|---|---|
| sha1_hash | Yes | Full SHA-1 hash of the password as 40 lowercase hexadecimal characters (e.g. '5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8' for 'password') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, idempotentHint, destructiveHint=false; description adds that no data is stored and the full hash never leaves the tool, reinforcing the privacy-preserving k-anonymity approach. Rate limits also disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is concise, front-loaded with purpose and method, and includes usage guidance, companion tools, rate limits, and return format—all in a few sentences with no superfluous content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with output schema, the description covers what it does, how it works, when to use it, and what it returns, leaving no significant gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers the sole parameter (sha1_hash) with 100% documentation. Description adds behavioral nuance (only 5-char prefix used) that helps the agent understand how the parameter is processed, adding extra context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks if a SHA-1 hash appears in the HIBP breach dataset using k-anonymity (5-char prefix). It distinguishes from sibling tools like hash_lookup by specifying different namespaces.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly mentions use for password breach audits, read-only nature, and lists companion tools (hash_lookup, email_disposable, username_lookup) as alternatives for different investigation areas. Rate limits are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
phishing_checkPhishing CheckARead-onlyIdempotentInspect
Query URLhaus for a specific URL and its host. is_malicious is True only when there is ACTIVE evidence — exact URL match with url_status='online' (or unknown) OR host has urls_online > 0. URLhaus retains historical records forever, so a host can have url_count > 0 with urls_online == 0; in that case is_malicious=False, is_stale=True, threat_level='low'. Use for URL-level threat assessment; use threat_intel for domain-level checks. Companion threat-investigation tools: ioc_lookup (multi-source IOC: ThreatFox + URLhaus + Feodo Tracker, auto-detect type), hash_lookup (file-hash malware family, MalwareBazaar), threat_intel (domain-level URLhaus only). Free: 30/hr, Pro: 500/hr. Returns {url, host, is_malicious, is_stale, urlhaus_host:{found,urls_online,url_count}, urlhaus_url:{found,threat,tags,status}, threat_level, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL to check, including protocol (e.g. 'https://suspicious-login.com/verify', 'http://evil.com/payload.exe') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses detailed behavioral logic (active evidence criteria, historical retention, stale state) beyond annotations, and includes rate limits. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with front-loaded purpose, then detailed logic, companion tools, and output format. Slightly lengthy but every sentence adds value; no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers purpose, usage context, behavioral details, rate limits, output structure, and sibling differentiation. Output schema is described inline, making it complete despite 1 param complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear description of the 'url' parameter including examples. Description adds behavioral context but not new parameter meaning beyond schema, per baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it queries URLhaus for a URL and host, defines is_malicious logic, and explicitly distinguishes from siblings like threat_intel for domain-level checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use (URL-level threat assessment), when not (use threat_intel for domains), lists companion tools, and includes rate limits (30/hr free, 500/hr Pro).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
phone_lookupPhone LookupARead-onlyIdempotentInspect
Validate and analyze phone number: country, region, carrier, line type (mobile/landline/VoIP), timezone, formatted versions. Use to verify phone legitimacy and detect fraud risks. Requires E.164 format (+1234567890). Companion OSINT identity-investigation tools: username_lookup (social-platform handle correlation), email_disposable (throwaway-mail signal on associated email). Free: 30/hr, Pro: 500/hr. Returns {valid, country, region, carrier, carrier_status, line_type, timezone, formats}. carrier is omitted from the wire when libphonenumber has no mapping for the region (US/CA/GB and other MNP-restricted regions); always read carrier_status — 'known' means carrier is present, 'unsupported_region' means we cannot identify the carrier (do not infer the number lacks one).
| Name | Required | Description | Default |
|---|---|---|---|
| number | Yes | Phone number in E.164 format: + followed by country code and number, no spaces or dashes. Examples: '+14155552671' (US), '+905551234567' (TR), '+442071234567' (UK). Wrong: '0555-123-4567', '(415) 555-2671' |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds significant value by specifying rate limits (30/hr free, 500/hr pro) and a critical behavioral trait: the carrier field is omitted for certain regions and carrier_status must be interpreted accordingly. This prevents incorrect inferences by the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with purpose first, then format requirements, companion tools, rate limits, and return behavior. It is concise but slightly redundant with the schema examples. Every sentence contributes, but it could be more streamlined.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists, the description sufficiently explains return values and adds crucial behavioral context about carrier omission and carrier_status interpretation. It covers edge cases (MNP-restricted regions) and rate limits, making it complete for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a detailed parameter description including format examples. The description reinforces the E.164 format but does not add new semantic meaning beyond the schema. Baseline is 3 for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Validate and analyze' and clearly lists expected outputs (country, region, carrier, line_type, timezone, formats). It distinguishes itself from siblings by mentioning companion tools username_lookup and email_disposable for identity investigation, making its role in the toolkit clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: to verify phone legitimacy and detect fraud risks. It mentions companion OSINT tools for identity investigation, providing context. However, it lacks explicit 'when not to use' guidance or alternatives besides the companions, which would prevent misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
redirect_chainRedirect ChainARead-onlyIdempotentInspect
Walk an HTTP redirect chain hop-by-hop, returning per-hop {url, status_code, location, latency_ms}. Use to deobfuscate URL shorteners (bit.ly / t.co / lnkd.in), audit suspicious links from phishing investigations, or trace marketing tracking redirects. SSRF-guarded: each redirect target's resolved IP is re-validated before connecting (private IPs and non-HTTP schemes rejected). Up to 10 hops; loop_detected=true if a hop would revisit a previously-seen URL (we abort before the duplicate fetch); truncated=true if the chain still had a 30x at hop 10. Per-target eTLD+1 throttle (60 req/min) consumed once for the start host AND once per new host reached — a chain across 11 unrelated domains cannot bypass the cap. Free: 30/hr, Pro: 500/hr. Returns {start_url, final_url, hops, hop_count, final_status, loop_detected, truncated, summary}. Returns 502 ErrorResponse on hard fetch failure (timeout / TLS / connect); 429 with Retry-After if a hop's eTLD+1 throttle is exceeded mid-chain.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full URL whose redirect chain to walk, e.g. 'https://bit.ly/3xyz' or 'http://example.com/old-path'. Must start with http:// or https://. Pass the URL exactly as you'd `curl -L` it; the server handles encoding. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, idempotentHint, destructiveHint), the description adds significant behavioral details: SSRF-guarded with IP re-validation, loop detection with loop_detected flag, truncation at 10 hops, per-target eTLD+1 throttle with specific rate limits (60 req/min), and hard fetch failure handling. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single paragraph but well-structured: it opens with the core action and output, then lists use cases, followed by technical details (SSRF, limits, errors). Every sentence adds value without redundancy. It could be slightly more scannable, but it is compact and informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one parameter and a detailed output schema (described in text), the description covers all essential aspects: purpose, use cases, technical behavior (SSRF, loops, truncation), rate limits, error handling (502, 429 with Retry-After). It provides a complete picture without requiring the user to infer anything.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'url' is already well-documented in the input schema (100% coverage). The description adds practical usage guidance: 'Pass the URL exactly as you'd `curl -L` it; the server handles encoding.' This enriches the schema description with an intuitive analogy and reassurance about encoding, providing added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool walks an HTTP redirect chain hop-by-hop, specifying the exact per-hop data returned {url, status_code, location, latency_ms}. It lists concrete use cases (deobfuscating URL shorteners, audit suspicious links, trace marketing redirects), which distinguishes it from sibling tools that are primarily lookups and scans.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description provides explicit use cases for when to use the tool (deobfuscate shorteners, audit links, trace redirects). It also details limits (10 hops, rate limits) and error responses (502, 429). However, it does not explicitly state when not to use it or mention alternatives, though sibling tools don't offer similar functionality.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
robots_txtRobots.txtARead-onlyIdempotentInspect
Fetch + parse the target domain's robots.txt — sitemaps, per-User-agent allow/disallow rules, crawl-delay, Host directive. Use BEFORE crawling/scraping a target site (seo_audit, brand_assets, redirect_chain) to honour the site's published rules. status_code=404 means no robots.txt exists = implicit allow-all per RFC 9309 §2.4. ContrastAPI fetches with User-agent: ContrastAPI/<version> (+https://contrastcyber.com/bot) so site operators can identify + opt out via robots.txt; we honour Disallow: / for our UA in seo_audit and brand_assets. Per-target eTLD+1 throttle (60 req/min) prevents weaponising this endpoint against a single site; subdomain rotation collapses to the same bucket. Free: 30/hr, Pro: 500/hr. Returns {domain, fetched_url, status_code, sitemaps, user_agents:{ua:{allow,disallow,crawl_delay}}, host, truncated, summary}. Returns 502 ErrorResponse if the target rejected the connection (DNS/TCP/TLS failure); the agent should NOT assume "no robots" in that case — it's an upstream-failure signal.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Registrable domain to fetch robots.txt for (e.g. 'example.com', 'github.com'). No scheme, no path, no port. Subdomains accepted; the bot fetches https://<domain>/robots.txt with HTTP fallback. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, openWorldHint, idempotentHint, destructiveHint. Description adds user-agent identification, rate limiting, free/pro limits, return fields, and error handling details, going beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is thorough but slightly lengthy. However, it is well-structured with front-loaded main purpose and subsequent details. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema defines the return structure, the description covers all necessary context: prerequisites, error handling, rate limits, and sibling tool relationships. Highly complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter (domain) with 100% schema coverage. Description adds constraints (no scheme/path/port, subdomain handling, HTTP fallback) that clarify usage beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches and parses robots.txt, listing extracted elements (sitemaps, rules, etc.). It uses specific verbs and resources, and distinguishes itself from sibling tools by being the only one dealing with robots.txt.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to use BEFORE crawling/scraping for seo_audit, brand_assets, redirect_chain. Explains when 404 means implicit allow-all and when 502 is an upstream failure, not 'no robots'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scan_headersScan HeadersARead-onlyIdempotentInspect
Perform live HTTP GET and analyze security headers: CSP, HSTS, X-Frame-Options, X-Content-Type-Options, Permissions-Policy, Referrer-Policy. Use to audit live website headers; use check_headers to validate headers you already have. Free: 30/hr, Pro: 500/hr. By default header values are truncated to 500 chars (CSP can exceed 4 KB on large sites); pass include='full' for the full raw value. Returns {headers_present, headers_missing, findings, total_score}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to scan live HTTP headers for (e.g. 'example.com', 'api.github.com') | |
| include | No | Detail level. Default ('') returns slim findings — raw header values capped at 500 chars with total_value_length carrying the honest pre-truncation length. Pass 'full' to restore the full raw value (useful for inspecting full CSP directives on sites like GitHub where the CSP header exceeds 4 KB). Allowed: '' or 'full'. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and idempotent. Description adds useful behavioral context: truncation to 500 chars, CSP can exceed 4 KB, and return format. No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is dense but efficient, front-loading purpose and including all key details in a compact form. Could be slightly better structured, but every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given two parameters and an output schema, the description fully covers tool behavior, usage scenarios, rate limits, and parameter options. No gaps for effective usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline 3. Description adds meaning by explaining the effect of the include parameter and the return fields, going beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states tool performs live HTTP GET and analyzes security headers, listing specific headers. Distinguishes from sibling check_headers by specifying when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says use for auditing live website headers and check_headers for validating existing headers. Provides rate limits and details on truncation behavior with the include parameter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
seo_auditSEO AuditARead-onlyIdempotentInspect
One-shot SEO audit of a domain's homepage with a 0-100 composite score + a missing_signals list of concrete fixes. Use BEFORE pitching SEO work to a prospect, when triaging a lead's marketing maturity, or as a structured pre-flight before deeper auditing tools (Lighthouse / SEMrush). 10 audit rules each worth 10 pts: title present, title length 30-60 chars (Google SERP truncation window), meta description present, meta description length 50-160, exactly one H1, canonical link, >=3 OG tags, JSON-LD present, image alt-text coverage (proportional), HTTPS. Strictly homepage-only — we do NOT crawl the site. Ethical floor: target's robots.txt is honoured — Disallow: / for ContrastAPI OR * returns 403 error.code = robots_txt_disallow and we DO NOT fetch. Cache-Control: no-store/private skips our cache write (cache_respected=false in the response). Per-target eTLD+1 throttle (60 req/min) prevents weaponising via subdomain rotation. All target-derived strings/lists are _untrusted. Free: 30/hr, Pro: 500/hr. Returns {domain, fetched_url, status_code, title_untrusted, meta_description_untrusted, canonical_url, h1_untrusted, h1_count, h2_count, h3_count, images_total, images_missing_alt, internal_link_count, external_link_count, og_tags, json_ld_present, score, missing_signals, cache_respected, summary}. Returns 502 on DNS/TCP/TLS failure; 403 robots_txt_disallow when the target opted out.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Registrable domain to audit SEO for (e.g. 'example.com', 'shopify.com'). No scheme, no path, no port. Strictly homepage-only — the bot fetches https://<domain>/ with HTTP fallback and audits that single page (we do NOT crawl). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, etc.), the description discloses ethical handling (robots.txt honoring, cache-control respect), rate limits (60 req/min per eTLD+1), error codes (502, 403), and the 'cache_respected' flag. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is detailed and well-structured, starting with a high-level summary then diving into specifics. While slightly verbose, every sentence adds value and no redundancy is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the existence of an output schema covering return values, the description fully covers behavior, constraints, error handling, ethical considerations, and rate limiting. It addresses all likely agent questions for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter 'domain' is thoroughly described: registrable domain, no scheme/path/port, strictly homepage-only. The description adds constraints beyond the schema (e.g., HTTP fallback, no trailing slash). Schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states it performs a one-shot SEO audit of a domain's homepage with a 0-100 composite score and a list of concrete fixes. It distinguishes from siblings like 'audit_domain' by emphasizing the homepage-only scope and the specific audit rules.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Clearly specifies when to use: before pitching SEO work, triaging lead marketing maturity, or as a pre-flight before deeper tools. Also clarifies what not to do: strictly homepage-only and not a site crawl.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sigma_rule_lookupSigma Rule LookupARead-onlyIdempotentInspect
Look up a single Sigma detection rule by UUID from the SigmaHQ corpus (~3,200 rules, refreshed daily at 02:00 UTC). Returns the full rule with title, description, status (stable/test/experimental/deprecated/unsupported), level (informational/low/medium/high/critical), logsource (product/category/service), detection logic, tags (including attack.t#### ATT&CK technique refs and cve.YYYY-#### CVE refs), author, references, and modification date. Use to fetch a known rule for context (e.g., a SIEM detection that fired) or to inspect a rule discovered via REST sigma_rule_search. When a rule tags an ATT&CK technique or CVE, the response next_calls surfaces atlas_technique_lookup / cve_lookup as natural follow-ups. Free: 30/hr, Pro: 500/hr. Returns {rule, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| rule_id | Yes | Sigma rule UUID (RFC 4122, 36 chars, hyphenated). Example: '195e1b9d-bfc2-4ffa-ab4e-35aef69815f8'. Obtained from the REST sigma_rule_search endpoint or external SIEM correlation. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already confirm readOnly, idempotent, not destructive. Description adds rate limits (30/hr Free, 500/hr Pro), daily refresh at 02:00 UTC, and return structure including next_calls with follow-up tool suggestions. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is comprehensive yet well-structured: purpose, return fields, usage, follow-ups, rate limits. Each sentence adds value. Slightly verbose in enumerating status levels, but overall efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With output schema mentioned and only 1 parameter, the description fully covers behavior and output. Includes next_calls for contextual follow-ups. No gaps given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a well-described parameter. Description adds value by explaining where to obtain the UUID (sigma_rule_search or external SIEM) and providing an example. Exceeds basic schema information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Look up a single Sigma detection rule by UUID' with specific source (SigmaHQ corpus), size, and refresh. Distinguishes from sibling tools like bulk_sigma_rule_lookup and sigma_rule_search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit use cases: 'fetch a known rule for context (e.g., a SIEM detection that fired)' or 'inspect a rule discovered via REST sigma_rule_search'. Implies alternatives (search, bulk) and includes rate limits as usage constraints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ssl_checkSSL CheckARead-onlyIdempotentInspect
Analyze SSL/TLS certificate: grade (A/B/C/D/F), protocol version, cipher suite, chain, expiry, Subject Alternative Names, and structured validation findings. Invalid certs (expired, self-signed, hostname mismatch, untrusted root) are reported as findings via valid=false + validation_errors[] rather than as endpoint failures, so an unreachable cert still returns useful intel. Grade D = cert readable but invalid; F = expired, legacy TLS, or probe failure. Use to audit certificate validity and detect expiring certs; for full domain audit use audit_domain. Free: 30/hr, Pro: 500/hr. Returns {grade, valid, validation_errors, protocol, cipher, issuer, subject, not_before, not_after, days_remaining, chain, san, warnings}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to check SSL/TLS certificate for (e.g. 'example.com', 'api.stripe.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate read-only, open-world, idempotent, non-destructive. Description adds valuable behavioral details: how invalid certs are handled (returns valid=false+validation_errors, not endpoint failures), grade definitions, and rate limits (30/hr free, 500/hr Pro). No contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is fairly long but each sentence adds value, front-loaded with purpose. Could be slightly more concise but still effective. No waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that an output schema exists (indicated), description covers key aspects: purpose, behavior on invalid certs, grade definitions, rate limits, and return fields. Complete for this tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter (domain) with 100% schema coverage. Description does not add meaning beyond schema, which is sufficient. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool analyzes SSL/TLS certificates and lists specific aspects (grade, protocol, etc.). It explicitly distinguishes from sibling audit_domain with 'for full domain audit use audit_domain', showing specific verb+resource+scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'Use to audit certificate validity and detect expiring certs' and provides an alternative: 'for full domain audit use audit_domain'. Clear usage context and exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
subdomain_enumSubdomain EnumARead-onlyIdempotentInspect
Discover subdomains using passive methods: Certificate Transparency logs + DNS brute-force (no active probing). Use to map organization's attack surface; non-intrusive. Response carries next_calls — capped at 5 ssl_check hints (one per first-five subdomain) so triage scales to large enumerations without token bloat; pull tail entries by name when needed. Free: 30/hr, Pro: 500/hr. Returns {domain, count, subdomains, sources, found_via_wordlist, found_via_crtsh, wildcard_status, crtsh_status, warnings, summary, next_calls}. Always check wildcard_status FIRST: 'absent' means the DNS brute-force plane was meaningful; 'present' means the zone answers every name (wildcard DNS) so wordlist results were discarded and count is a certificate-transparency LOWER BOUND — report the surface as UNKNOWN, not small, and never infer low exposure from it; 'undetermined' means a negative-control probe went unanswered, so count is unverified. Then check crtsh_status: 'ok' means the CT lookup completed (so a low count is real); 'timeout' / 'rate_limited' / 'unavailable' / 'error' means CT logs did not respond and the count is wordlist-only — the actual attack surface is likely larger, retry later or surface the limitation to the user.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to enumerate subdomains for (e.g. 'example.com', 'tesla.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint, idempotentHint, etc. Description goes far beyond: explains response fields, wildcard_status and crtsh_status interpretation, rate limits, and how to handle partial results. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is lengthy but well-organized with clear structure. Front-loads purpose. However, some detail about response fields could be shortened or moved to output schema documentation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given complexity (multiple sources, status fields, rate limits, output schema present but not covering all interpretation), description is very complete. Covers use case, method, limitations, result interpretation, and actions for partial results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has one parameter (domain) with description, coverage 100%. Description does not add significant new info for the parameter beyond what schema provides, but schema already covers it well.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool discovers subdomains using passive methods (Certificate Transparency logs + DNS brute-force) and maps attack surface. Distinguishes from sibling tools by specifying the passive, non-intrusive nature.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly describes when to use (map organization's attack surface) and mentions rate limits. Does not explicitly say when not to use or list alternatives, but context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tech_fingerprintTech FingerprintARead-onlyIdempotentInspect
Detect website technology stack: CMS, frameworks, CDN, analytics tools, web servers, languages (via HTTP headers + HTML analysis). Use for passive reconnaissance; for full audit use audit_domain. Free: 30/hr, Pro: 500/hr. Returns {technologies: [{name, category, confidence%, version}]}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to fingerprint (e.g. 'example.com', 'shopify.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only (readOnlyHint=true), idempotent (idempotentHint=true), and non-destructive behavior. The description adds value by explaining the analysis method (HTTP headers + HTML) and the return structure, which goes beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences: first explains what the tool does, second provides usage context and return format. No unnecessary words, front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter, the description covers purpose, methodology, usage guidance, rate limits, and return format (with a hint at the structure). There is no missing critical information for an AI agent to decide when and how to use this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter 'domain', with a clear description in the schema. The tool description does not add additional semantic information about the parameter beyond what is in the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Detect website technology stack' with specific examples (CMS, frameworks, etc.) and methodology (HTTP headers + HTML analysis). It distinguishes from sibling tool 'audit_domain' by noting this is for passive reconnaissance, while a full audit should use that tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use ('passive reconnaissance') and when not to ('for full audit use audit_domain'), providing an alternative tool. It also includes rate limits (Free: 30/hr, Pro: 500/hr), guiding usage expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tech_stack_cve_auditTech Stack CVE AuditARead-onlyIdempotentInspect
Composite tech-stack + CVE audit (MCP-only, no REST endpoint). Detects technologies on the target domain, queries CVE database for known vulnerabilities per product, enriches top-10 CVE candidates with CISA KEV federal patch deadlines, and checks public exploit / PoC availability. Identical for every tier — all data is sourced from local DB mirrors (no Shodan/AbuseIPDB), so there is no tier gating. CVE candidate batch: 50. Cost: 10 tokens per call — Free 30/hr ≈ 3 audits, Pro 500/hr ≈ 50 audits. Returns {domain, technologies, cves_by_tech, kev_findings, exploit_findings, summary, next_calls}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Target domain to fingerprint and CVE-audit (e.g. 'example.com'). IPs and internal hostnames are rejected. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and no destructiveness. The description adds significant behavioral context: identical for all tiers, uses local DB mirrors, no tier gating, cost 10 tokens, rate limits (30/hr for free, 500/hr for Pro), and that IPs/internal hostnames are rejected. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core composite purpose in the first sentence. It is comprehensive but somewhat dense, covering multiple aspects concisely. Every sentence adds value, though it could be slightly more structured for easier scanning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (composite, multiple steps), the description is thorough: it explains all steps, tier behavior, cost, rate limits, and explicitly lists return fields (domain, technologies, cves_by_tech, etc.). An output schema exists, so return values are well-covered. No gaps noted.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with one parameter 'domain'. The schema description adds meaning beyond type/format by specifying 'Target domain to fingerprint and CVE-audit (e.g. 'example.com'). IPs and internal hostnames are rejected.' This provides clear constraints and examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is a 'Composite tech-stack + CVE audit' tool that detects technologies, queries CVEs, enriches with KEV deadlines, and checks exploit availability. This specific verb+resource combination distinguishes it from sibling tools like 'tech_fingerprint' (just fingerprinting) and 'cve_lookup' (just CVE details).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for auditing a domain's technology stack and vulnerabilities, but does not explicitly state when to use this tool versus alternatives (e.g., separate tech_fingerprint or cve_lookup). It mentions 'MCP-only, no REST endpoint' but lacks clear when-not or alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
threat_intelThreat IntelARead-onlyIdempotentInspect
Check domain against abuse.ch URLhaus for known malware-distribution URLs (single source — for multi-feed correlation use ioc_lookup which adds ThreatFox and, for IPs, Feodo Tracker). Use for fast domain-level threat assessment; use phishing_check for specific URLs. Free: 30/hr, Pro: 500/hr. Returns {malware_urls, threat_tags, threat_status, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to check for threats (e.g. 'suspicious-site.com', 'example.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds behavioral context: it is a single-source check, returns specific fields, and has rate limits. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (3 sentences) and well-structured: main purpose first, then alternatives, rate limits, and return format. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description is complete: it specifies the source, alternatives, rate limits, and the fields returned. No gaps remain for an AI agent to understand usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% for the single parameter 'domain'. The description does not add additional meaning beyond what the schema provides, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks a domain against abuse.ch URLhaus for known malware-distribution URLs, using a specific verb ('Check') and resource ('domain'). It distinguishes from siblings like ioc_lookup and phishing_check.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool (fast domain-level threat assessment) and when to use alternatives: ioc_lookup for multi-feed correlation and phishing_check for specific URLs. It also provides rate limit details.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
threat_reportThreat ReportARead-onlyIdempotentInspect
Query comprehensive threat profile for an IP: Shodan host data, AbuseIPDB reputation, ASN/geolocation, and open ports. Use for IP investigation and SOC alert triage; for domain data use domain_report. Note: nested asn block always returns at most 50 IPv4/IPv6 prefixes — call asn_lookup with include_full_prefixes=True for the full announced-prefixes list. enrichment.vulns is severity-aware list[VulnInfo] (cve_id + severity + cvss_v3) — Phase 2 v1.16.0 BREAKING; pre-1.16 it was list[str] of CVE IDs. Free: 30/hr (costs 6 tokens), Pro: 500/hr. Returns {ip, enrichment, abuseipdb, shodan, asn, threat_level}.
| Name | Required | Description | Default |
|---|---|---|---|
| ip | Yes | Public IPv4 or IPv6 address to investigate (e.g. '8.8.8.8', '1.1.1.1'). Private/reserved IPs are rejected. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, etc. The description adds significant behavioral context beyond annotations: rate limits (30/hr Free, 500/hr Pro), breaking change in enrichment.vulns (list of strings pre-1.16 vs list of VulnInfo objects), and the return shape. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured: first sentence states purpose and scope, following sentences add usage guidance, limitations, breaking changes, and rate limits. Every sentence adds value, and the information is front-loaded. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema (not shown but mentioned), the description still outlines the return shape ('Returns {ip, enrichment, abuseipdb, shodan, asn, threat_level}'). It covers all important aspects: what it does, when to use it, behavioral details, limitations, and rate limits. For a one-parameter tool with high schema coverage and annotations, this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the schema already explains the ip parameter adequately (must be public IPv4/IPv6, private/reserved rejected). The tool description adds minimal extra meaning ('Use for IP investigation'), but does not provide new syntax or format details beyond what the schema already states. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it queries a comprehensive threat profile for an IP, listing specific data sources (Shodan, AbuseIPDB, ASN/geolocation, open ports). It also explicitly distinguishes from the sibling 'domain_report' by saying 'for domain data use domain_report'. This provides specific verb+resource and differentiates among siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage context: 'Use for IP investigation and SOC alert triage' and directs to a sibling tool for domain data. It also notes limitations (ASN prefixes at most 50, breaking change in vulns format) and rate limits, helping the agent decide when to use this tool versus alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
username_lookupUsername LookupARead-onlyIdempotentInspect
Search for username across 15+ social/dev platforms (GitHub, Reddit, X/Twitter, LinkedIn, Instagram, TikTok, Discord, YouTube, Keybase, HackerOne, etc.). Use for OSINT investigations and identity verification. Free: 30/hr, Pro: 500/hr. Returns {username, total_found, platforms: [{name, exists, url, status_code}]}.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Username string to search across platforms, without @ prefix (e.g. 'torvalds', 'johndoe', 'elonmusk') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal readOnly, openWorld, idempotent, non-destructive. The description adds the return format {username, total_found, platforms: [...]} and rate limits, fully disclosing behavior beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with platform list and key details. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single parameter, existing output schema, and richness of annotations, the description covers purpose, usage, output structure, and limitations (rate) fully.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes the username parameter with examples (without '@'). The tool description does not add new parameter meaning beyond what's in the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool searches for a username across 15+ platforms, listing specific examples (GitHub, Reddit, etc.) and mentions OSINT and identity verification as use cases. This distinguishes it from sibling tools like asn_lookup or dns_lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly recommends use for OSINT investigations and identity verification, and notes rate limits (30/hr free, 500/hr Pro). While it doesn't specify when not to use or name alternatives, the context is clear enough for an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wayback_lookupWayback LookupARead-onlyIdempotentInspect
Retrieve Wayback Machine snapshots for a domain: first capture, latest, total count, snapshot list. Use to investigate domain history and age; for full audit use domain_report. Free: 30/hr, Pro: 500/hr. status='ok' means the count is authoritative (even when 0 → confirmed no archives). status='unavailable' means CDX timed out/rate-limited/5xx — total_snapshots is OMITTED (unknown, NOT zero) and the agent should NOT report "no snapshots"; the warnings[] array carries the cdx_* error code (cdx_timeout/cdx_rate_limited/cdx_unavailable/cdx_error/cdx_parse_error/cdx_body_too_large). Heavy domains (kernel.org, microsoft.com, archive.org itself) frequently time out the CDX endpoint despite having millions of snapshots — fall back to archive_url for manual inspection. Returns {domain, status, total_snapshots, first_seen, last_seen, years_online, snapshots, archive_url, summary, warnings}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain to look up in web archives (e.g. 'example.com', 'archive.org') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior. The description adds critical behavioral details: the meaning of 'status' values, that 'total_snapshots' is omitted when unavailable (not zero), error code mapping to warnings, and heavy domain fallback. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but highly informative, front-loading the purpose and then providing usage guidelines and behavioral caveats. Every sentence adds value, though it could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (one parameter, rich output, error handling, rate limits, alternative tool), the description covers return value structure, status meanings, error codes, and usage context. The presence of an output schema (though not detailed here) is noted, and the description provides sufficient context for an agent to select and use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'domain' has 100% schema coverage with a clear description. The tool description does not add new semantic details beyond the schema, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves Wayback Machine snapshots for a domain, specifying what is returned (first capture, latest, total count, snapshot list). It distinguishes from the sibling tool 'domain_report' by mentioning 'for full audit use domain_report'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool ('investigate domain history and age') and provides an alternative ('for full audit use domain_report'). Also includes rate limits and warnings about heavy domains, guiding proper invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whois_lookupWHOIS LookupARead-onlyIdempotentInspect
Retrieve WHOIS registration data: registrar, creation/expiry dates, nameservers, status. Use to verify domain ownership, age, expiration; for full audit use domain_report. Free: 30/hr, Pro: 500/hr. Returns {domain, whois: {registrar, creation_date, expiry_date, updated_date, name_servers, status, raw_length, error}, summary}.
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Root domain to query WHOIS for (e.g. 'example.com', 'github.com') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, etc. Description adds return structure details and rate limits, providing context beyond annotations. No contradiction. Moderate added value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences, each serving a purpose: purpose/data, usage/alternative, return/limits. Front-loaded and no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter, read-only tool with annotations covering safety and output schema hinted in description, all necessary context is provided: purpose, usage, rate limits, return fields. Complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter 'domain' with schema description covering 100%. Description does not add additional semantic details beyond what's in the input schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with 'Retrieve WHOIS registration data: registrar, creation/expiry dates, nameservers, status.' This clearly states the action (retrieve) and resource (WHOIS data) with specific fields. It distinguishes from sibling 'domain_report' by noting 'for full audit use domain_report'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'Use to verify domain ownership, age, expiration' and when not: 'for full audit use domain_report'. Also includes rate limits: 'Free: 30/hr, Pro: 500/hr', aiding in resource management.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v1.34.5- Changed
audit_domain2 fields changed- changed
Output schema / $defs / RiskInfo / properties / max_score / descriptionPrevious value: -"Maximum achievable score (100 by default; drops by the corresponding factor's max when an upstream source fails — e.g. crt.sh timeout excludes the CT factor and max_score becomes 90, so grade is computed against the available signals)."New value: +"Maximum achievable score, 100 by default. It drops by a factor's max when that signal could not be measured, so grade reflects the available signals instead of penalizing the domain for our blind spot. Observed values are 100, 95, 90, 85, 80 and 75: a crt.sh failure excludes the 10-point CT factor, an unverifiable DKIM selector trims the email factor 25->20, and wildcard DNS can exclude the 10-point subdomain factor. ALWAYS compute percentages against this field, never against a literal 100." - added
Output schema / $defs / SubdomainsInfo / properties / wildcard_statusAdded value: +{ + "anyOf": [ + { + "enum": [ + "absent", + "present", + "undetermined" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Wildcard-DNS probe result; anything other than 'absent' means count is unverified.", + "title": "Wildcard Status" +}
- Changed
domain_report2 fields changed- changed
Output schema / $defs / RiskInfo / properties / max_score / descriptionPrevious value: -"Maximum achievable score (100 by default; drops by the corresponding factor's max when an upstream source fails — e.g. crt.sh timeout excludes the CT factor and max_score becomes 90, so grade is computed against the available signals)."New value: +"Maximum achievable score, 100 by default. It drops by a factor's max when that signal could not be measured, so grade reflects the available signals instead of penalizing the domain for our blind spot. Observed values are 100, 95, 90, 85, 80 and 75: a crt.sh failure excludes the 10-point CT factor, an unverifiable DKIM selector trims the email factor 25->20, and wildcard DNS can exclude the 10-point subdomain factor. ALWAYS compute percentages against this field, never against a literal 100." - added
Output schema / $defs / SubdomainsInfo / properties / wildcard_statusAdded value: +{ + "anyOf": [ + { + "enum": [ + "absent", + "present", + "undetermined" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Wildcard-DNS probe result; anything other than 'absent' means count is unverified.", + "title": "Wildcard Status" +}
- Changed
subdomain_enum1 field changed- added
Output schema / $defs / SubdomainsResponse / properties / wildcard_statusAdded value: +{ + "default": "absent", + "description": "Result of two synthetic negative-control DNS probes. 'absent' = no catch-all, the wordlist plane is trustworthy. 'present' = wildcard DNS (*.domain) answers every name, so brute-force cannot distinguish a real host from the catch-all; wordlist results are discarded (found_via_wordlist=0) and count is a certificate-transparency LOWER BOUND — the real surface is UNKNOWN, not small. 'undetermined' = a probe went unanswered or the target name was too long to probe, so the count is unverified and may contain artefacts. Treat anything other than 'absent' as a measurement caveat.", + "enum": [ + "absent", + "present", + "undetermined" + ], + "title": "Wildcard Status", + "type": "string" +}
55 tool updates
v1.34.4- Changed
asn_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_case_study_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_case_study_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_technique_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_technique_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
audit_domain1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
brand_assets1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_atlas_technique_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_cve_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_ioc_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_sigma_rule_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
calculate_risk_score1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_dependencies1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_headers1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_injection1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_secrets1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
contrast_scan1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cve_leading1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cve_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cve_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cwe_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_attack_coverage1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_for_attack1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
dns_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
domain_report1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_disposable1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_mx1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_security_posture1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_verify1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
exploit_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Added
geo_audit - Changed
get_cvss_details1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
hash_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ioc_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ip_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
kev_detail1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
password_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
phishing_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
phone_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
redirect_chain1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
robots_txt1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
scan_headers1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
seo_audit1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
sigma_rule_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ssl_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
subdomain_enum1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
tech_fingerprint1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
tech_stack_cve_audit1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
threat_intel1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
threat_report1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
username_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
wayback_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
whois_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit", - "contrast_scan" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "geo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
54 tool updates
v1.33.23- Changed
asn_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_case_study_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_case_study_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_technique_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
atlas_technique_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
audit_domain1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
brand_assets1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_atlas_technique_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_cve_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_ioc_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
bulk_sigma_rule_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
calculate_risk_score1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_dependencies1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_headers1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_injection1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
check_secrets1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Added
contrast_scan - Changed
cve_leading1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cve_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cve_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
cwe_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_attack_coverage1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_for_attack1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
d3fend_defense_search1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
dns_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
domain_report1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_disposable1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_mx1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_security_posture1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
email_verify1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
exploit_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
get_cvss_details1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
hash_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ioc_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ip_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
kev_detail1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
password_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
phishing_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
phone_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
redirect_chain1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
robots_txt1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
scan_headers1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
seo_audit1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
sigma_rule_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
ssl_check1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
subdomain_enum1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
tech_fingerprint1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
tech_stack_cve_audit1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
threat_intel1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
threat_report1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
username_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
wayback_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
- Changed
whois_lookup1 field changed- changed
Output schema / $defs / PivotHint / properties / tool / enumPrevious value: -[ - "cve_lookup", - "cve_search", - "cve_leading", - "bulk_cve_lookup", - "calculate_risk_score", - "get_cvss_details", - "exploit_lookup", - "kev_detail", - "cwe_lookup", - "subdomain_enum", - "ssl_check", - "tech_fingerprint", - "asn_lookup", - "ip_lookup", - "ioc_lookup", - "bulk_ioc_lookup", - "hash_lookup", - "threat_intel", - "threat_report", - "audit_domain", - "domain_report", - "dns_lookup", - "whois_lookup", - "wayback_lookup", - "scan_headers", - "check_headers", - "check_secrets", - "check_injection", - "check_dependencies", - "email_mx", - "email_security_posture", - "email_disposable", - "email_verify", - "robots_txt", - "redirect_chain", - "brand_assets", - "seo_audit", - "phone_lookup", - "username_lookup", - "password_check", - "phishing_check", - "atlas_technique_lookup", - "atlas_technique_search", - "bulk_atlas_technique_lookup", - "atlas_case_study_lookup", - "atlas_case_study_search", - "d3fend_defense_lookup", - "d3fend_defense_search", - "d3fend_defense_for_attack", - "d3fend_attack_coverage", - "sigma_rule_lookup", - "bulk_sigma_rule_lookup", - "tech_stack_cve_audit" -]New value: +[ + "cve_lookup", + "cve_search", + "cve_leading", + "bulk_cve_lookup", + "calculate_risk_score", + "get_cvss_details", + "exploit_lookup", + "kev_detail", + "cwe_lookup", + "subdomain_enum", + "ssl_check", + "tech_fingerprint", + "asn_lookup", + "ip_lookup", + "ioc_lookup", + "bulk_ioc_lookup", + "hash_lookup", + "threat_intel", + "threat_report", + "audit_domain", + "domain_report", + "dns_lookup", + "whois_lookup", + "wayback_lookup", + "scan_headers", + "check_headers", + "check_secrets", + "check_injection", + "check_dependencies", + "email_mx", + "email_security_posture", + "email_disposable", + "email_verify", + "robots_txt", + "redirect_chain", + "brand_assets", + "seo_audit", + "phone_lookup", + "username_lookup", + "password_check", + "phishing_check", + "atlas_technique_lookup", + "atlas_technique_search", + "bulk_atlas_technique_lookup", + "atlas_case_study_lookup", + "atlas_case_study_search", + "d3fend_defense_lookup", + "d3fend_defense_search", + "d3fend_defense_for_attack", + "d3fend_attack_coverage", + "sigma_rule_lookup", + "bulk_sigma_rule_lookup", + "tech_stack_cve_audit", + "contrast_scan" +]
53 tool updates
v1.33.21- Added
asn_lookup - Added
atlas_case_study_lookup - Added
atlas_case_study_search - Added
atlas_technique_lookup - Added
atlas_technique_search - Added
audit_domain - Added
brand_assets - Added
bulk_atlas_technique_lookup - Added
bulk_cve_lookup - Added
bulk_ioc_lookup - Added
bulk_sigma_rule_lookup - Added
calculate_risk_score - Added
check_dependencies - Added
check_headers - Added
check_injection - Added
check_secrets - Added
cve_leading - Added
cve_lookup - Added
cve_search - Added
cwe_lookup - Added
d3fend_attack_coverage - Added
d3fend_defense_for_attack - Added
d3fend_defense_lookup - Added
d3fend_defense_search - Added
dns_lookup - Added
domain_report - Added
email_disposable - Added
email_mx - Added
email_security_posture - Added
email_verify - Added
exploit_lookup - Added
get_cvss_details - Added
hash_lookup - Added
ioc_lookup - Added
ip_lookup - Added
kev_detail - Added
password_check - Added
phishing_check - Added
phone_lookup - Added
redirect_chain - Added
robots_txt - Added
scan_headers - Added
seo_audit - Added
sigma_rule_lookup - Added
ssl_check - Added
subdomain_enum - Added
tech_fingerprint - Added
tech_stack_cve_audit - Added
threat_intel - Added
threat_report - Added
username_lookup - Added
wayback_lookup - Added
whois_lookup
53 tool updates
v1.33.14- Removed
asn_lookup - Removed
atlas_case_study_lookup - Removed
atlas_case_study_search - Removed
atlas_technique_lookup - Removed
atlas_technique_search - Removed
audit_domain - Removed
brand_assets - Removed
bulk_atlas_technique_lookup - Removed
bulk_cve_lookup - Removed
bulk_ioc_lookup - Removed
bulk_sigma_rule_lookup - Removed
calculate_risk_score - Removed
check_dependencies - Removed
check_headers - Removed
check_injection - Removed
check_secrets - Removed
cve_leading - Removed
cve_lookup - Removed
cve_search - Removed
cwe_lookup - Removed
d3fend_attack_coverage - Removed
d3fend_defense_for_attack - Removed
d3fend_defense_lookup - Removed
d3fend_defense_search - Removed
dns_lookup - Removed
domain_report - Removed
email_disposable - Removed
email_mx - Removed
email_security_posture - Removed
email_verify - Removed
exploit_lookup - Removed
get_cvss_details - Removed
hash_lookup - Removed
ioc_lookup - Removed
ip_lookup - Removed
kev_detail - Removed
password_check - Removed
phishing_check - Removed
phone_lookup - Removed
redirect_chain - Removed
robots_txt - Removed
scan_headers - Removed
seo_audit - Removed
sigma_rule_lookup - Removed
ssl_check - Removed
subdomain_enum - Removed
tech_fingerprint - Removed
tech_stack_cve_audit - Removed
threat_intel - Removed
threat_report - Removed
username_lookup - Removed
wayback_lookup - Removed
whois_lookup
4 tool updates
v1.33.11- Changed
bulk_cve_lookup1 field changed- changed
Input schema / properties / cve_ids / descriptionPrevious value: -"List of CVE identifiers in format CVE-YYYY-NNNNN (e.g. ['CVE-2024-3094', 'CVE-2021-44228', 'CVE-2023-44487']). Maximum 10 per request for free tier, 50 for Pro."New value: +"List of CVE identifiers in format CVE-YYYY-NNNNN (e.g. ['CVE-2024-3094', 'CVE-2021-44228', 'CVE-2023-44487']). Maximum 50 per request (same cap for Free and Pro)."
- Changed
bulk_ioc_lookup1 field changed- changed
Input schema / properties / indicators / descriptionPrevious value: -"List of indicators of compromise: IP addresses, domains, URLs, or file hashes (e.g. ['8.8.8.8', 'evil.com', 'd41d8cd98f00b204e9800998ecf8427e']). Maximum 10 per request for free tier, 50 for Pro. Each indicator type is auto-detected."New value: +"List of indicators of compromise: IP addresses, domains, URLs, or file hashes (e.g. ['8.8.8.8', 'evil.com', 'd41d8cd98f00b204e9800998ecf8427e']). Maximum 50 per request (same cap for Free and Pro). Each indicator type is auto-detected."
- Changed
bulk_sigma_rule_lookup5 fields changed- changed
Input schema / properties / rule_ids / descriptionPrevious value: -"List of Sigma rule UUIDs in RFC 4122 format. Up to 50 per call (Pro tier) or 10 (free tier). Each id counts as 1 request toward the rate limit. Per-item validation: invalid-format ids return status='invalid_format', unknown UUIDs return status='not_found' — the whole call does not fail."New value: +"List of Sigma rule UUIDs in RFC 4122 format. Up to 50 per call (same cap for Free and Pro). Each rule_id counts as 1 request toward the hourly quota. Per-item validation: invalid-format ids return status='invalid_format', unknown UUIDs return status='not_found' — the whole call does not fail." - changed
Output schema / $defs / BulkSigmaRuleLookupResponse / properties / partial / descriptionPrevious value: -"True when at least one item was not_found or invalid_format"New value: +"True when at least one item was not_found, invalid_format, or skipped due to rate limit." - added
Output schema / $defs / BulkSigmaRuleLookupResponse / properties / processedAdded value: +{ + "default": 0, + "description": "Count of items actually looked up (== len(results)). Equal to total unless dynamic-budget partial-fill kicked in.", + "title": "Processed", + "type": "integer" +} - added
Output schema / $defs / BulkSigmaRuleLookupResponse / properties / skipped_due_to_rate_limitAdded value: +{ + "description": "Rule UUIDs not processed because the caller's remaining hourly quota was smaller than the input list. Empty when full budget was available.", + "items": { + "type": "string" + }, + "title": "Skipped Due To Rate Limit", + "type": "array" +} - changed
Output schema / $defs / BulkSigmaRuleLookupResponse / properties / total / descriptionPrevious value: -"Total unique rule IDs submitted"New value: +"Total unique rule IDs submitted (== processed + len(skipped_due_to_rate_limit))."
- Changed
check_dependencies1 field changed- changed
Input schema / properties / packages / descriptionPrevious value: -"List of dependency packages to audit. Each item is an object with 'name' (required, max 200 chars, e.g. 'lodash', 'django', 'log4j-core') and optional 'version' (max 100 chars, e.g. '4.17.0', '2.14.1'). Only 'name' and 'version' fields are used; extra fields are ignored. Example: [{\"name\": \"lodash\", \"version\": \"4.17.0\"}, {\"name\": \"django\"}]. Maximum 10 per request for free tier, 50 for Pro."New value: +"List of dependency packages to audit. Each item is an object with 'name' (required, max 200 chars, e.g. 'lodash', 'django', 'log4j-core') and optional 'version' (max 100 chars, e.g. '4.17.0', '2.14.1'). Only 'name' and 'version' fields are used; extra fields are ignored. Example: [{\"name\": \"lodash\", \"version\": \"4.17.0\"}, {\"name\": \"django\"}]. Maximum 50 per request (same cap for Free and Pro)."
1 tool update
v1.33.10- Changed
cve_search2 fields changed- changed
Input schema / properties / include / descriptionPrevious value: -"Per-result detail level. Default (omit) returns slim list items (cve_id, summary, severity, cvss_v3, cwe_id, epss, kev, total_products, published, modified, sources). Pass 'full' to also return description, cvss_breakdown, affected_products, references, first_seen_source, first_seen_at — only do this when the user explicitly wants drill-down on every result. For single-CVE detail prefer cve_lookup; slim default keeps token cost ~70% lower on Log4j-class queries. Note: verdict is at the response root, not per-row (was deduplicated to save ~40% payload)."New value: +"Per-result detail level. Default (omit) returns slim list items (cve_id, summary, severity, cvss_v3, cwe_id, epss, kev, total_products, published, modified, sources). Pass 'full' to also return description, cvss_breakdown, affected_products, references, first_seen_source, first_seen_at — only do this when the user explicitly wants drill-down on every result. Even with 'full', per-result affected_products and references may be truncated (the per-result total_products/total_references report the honest counts); use cve_lookup for the guaranteed-complete per-CVE lists. For single-CVE detail prefer cve_lookup; slim default keeps token cost ~70% lower on Log4j-class queries. Note: verdict is at the response root, not per-row (was deduplicated to save ~40% payload)." - changed
Input schema / properties / product / descriptionPrevious value: -"Product or vendor name to filter by. EXACT match (case-insensitive) against the canonical product/vendor token stored in NVD CPE data — not a substring or fuzzy search. Use the short canonical name exactly as vendors publish it: 'nginx' (not 'nginx web server'), 'apache' (not 'Apache HTTP Server'), 'linux_kernel' (not 'Linux Kernel'), 'microsoft' (vendor). If unsure of the exact token, try the lowercase project name first; if 0 results, try the vendor name. Omit to search all products."New value: +"Product or vendor token to filter by. EXACT match (case-insensitive) against the NVD-canonical CPE product/vendor token — NOT substring/fuzzy, and NOT necessarily the common project name. Common names, vendor renames, and build-tool artifact ids often differ from the canonical token (e.g. modern nginx CVEs are under 'nginx_open_source'/'nginx_plus', vendor 'f5', not 'nginx'; Maven 'log4j-core' maps to 'log4j'). A low or zero count for a well-known product usually means the token differs — do NOT assume coverage is complete. For dependency/package lists prefer check_dependencies, and for a domain's whole tech stack tech_stack_cve_audit (both auto-normalize tokens). A product match means CVEs exist for that product, not that a specific running version is affected — verify the running version is within each CVE's affected range. Omit to search all products."
TDQS
Most tools have clearly distinct purposes, with detailed descriptions guiding usage. Some overlap exists among domain analysis tools (domain_report, audit_domain, dns_lookup) and CVE tools (cve_lookup, cve_search, cve_leading), but they are differentiated by scope and use case. The detailed 'Use for' hints in descriptions help disambiguate.
Tool names predominantly use snake_case with a verb_noun or noun_verb pattern (e.g., asn_lookup, check_headers, bulk_cve_lookup). A few names like 'email_security_posture' deviate from the common pattern, but overall consistency is high.
54 tools is heavily weighted for a single server. While each tool serves a niche cybersecurity domain (domain, IP, CVE, MITRE, code scanning, email, etc.), the breadth could overwhelm agents and suggests possible consolidation. The count is at the high end of appropriate for a comprehensive threat intelligence platform.
The tool surface covers major cybersecurity workflows: domain reconnaissance, IP intelligence, threat feed correlation, vulnerability management, MITRE framework navigation, email/phone validation, and basic code scanning. Minor gaps exist (e.g., no port scanning beyond ip_lookup, no malware sandboxing), but the set is well-scoped for a read-only enrichment service.
Maintenance
Related MCP Connectors
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
31CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
Pay-per-call cybersecurity for AI agents: vuln scans, threat intel, compliance, code security.
Real-time CVE, exploit, and vulnerability intelligence for AI assistants (350K+ CVEs, 115K+ PoCs)
Related MCP Servers
- AlicenseAqualityFmaintenanceMCP server for querying the Shodan API and Shodan CVEDB. This server provides tools for IP lookups, device searches, DNS lookups, vulnerability queries, CPE lookups, and more.7367161MIT
- AlicenseAqualityDmaintenanceA MCP server for querying the VirusTotal API. This server provides tools for scanning URLs, analyzing file hashes, and retrieving IP address reports.11389149MIT
- AlicenseNot gradedqualityDmaintenanceProvides multi-source vulnerability intelligence for AI-powered security operations, combining NVD CVSS, CISA KEV, and EPSS scores without requiring an API key.1MIT
- AlicenseAqualityAmaintenanceDomain security reconnaissance for AI agents — 13 tools (DNS+DNSSEC, SSL/TLS, HTTP security headers, SPF/DKIM/DMARC email auth, port scan, ASN, RDAP/WHOIS) plus a one-shot security_scan returning a 0–100 Health Score (A–F). Free, no API key.13561MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/UPinar/contrastapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server