FixVibe

// docs / domains

Domains

Domain হলো আপনার মালিকানাধীন একটি verified hostname। একবার verify করলে সেই hostname-এ active probes, scheduled re-scans, এবং live threat monitoring unlock হয়।

Domain verify করা

Dashboard → Domains-এ hostname add করুন। দুটি verification methods-এর একটি বেছে নিন:

  • DNS TXT_fixvibe.<hostname>-এ আমাদের generated token সহ একটি record add করুন। আমরা আমাদের server থেকে re-resolve করি, আপনার server থেকে নয়, তাই SPF / DMARC settings interfere করে না। Typical propagation: 1-5 minutes; আমরা 10 minutes ধরে প্রতি 30 seconds-এ re-check করি।
  • HTTP file — host a small text file at /.well-known/fixvibe-verification.txt with the token. FixVibe checks it over HTTPS before enabling domain-gated features.

Verifications প্রতিদিন domain-reverify cron দিয়ে re-check করা হয়। আগে verified domain token resolve করা বন্ধ করলে (যেমন আপনি DNS record remove করেছেন), verification revoked হয় এবং সেটির active scans আবার verify_required-এ ফিরে যায় যতক্ষণ না আপনি আবার add করেন।

Scheduled re-scans Pro+

The Pro plan can re-scan a verified domain at ≥3h cadence; the Unlimited plan at ≥6h. Open Dashboard → Domains → Schedule, enable the toggle, pick a cadence:

  • 3 hours — available on Pro
  • 6h, 12h, daily, every 2 days, weekly — available on Pro and Unlimited

When a scheduled run is due, FixVibe queues a fresh scan for the verified domain and records the run. The scan inherits your domain authorization until you disable the schedule or revoke active authorization.

Completion হলে scan-completed email scheduled_scan_email preference ব্যবহার করে পাঠানো হয় (Account → Settings-এ manage করুন)।

Live threat detection Unlimited+

Unlimited plan scheduled scans-এর মাঝখানে প্রতিটি verified domain স্বয়ংক্রিয়ভাবে তিনটি signal-এর জন্য দেখে:

  • Certificate transparency — প্রতি 30 minutes আমরা crt.sh query করি আপনার hostname বা কোনো subdomain থাকা নতুন certs-এর জন্য। নতুন certs new_certificate alert fire করে।
  • DNS diff — প্রতি 30 minutes আমরা A, AAAA, MX, TXT, NS, CNAME resolve করি এবং last snapshot-এর সঙ্গে compare করি। Changes dns_change alert fire করে।
  • Threat-intel — প্রতি hour আমরা apex hostname-এর listings-এর জন্য Spamhaus DBL এবং URLhaus check করি। Listings threat_intel_listing alert fire করে।

View and dismiss alerts at Dashboard → Domains → [domain] → Monitor. Email notifications follow the threat_alert_email preference.

Snapshot retention

Monitor snapshots 7 days পরে auto-prune হয়, তবে প্রতিটি (domain, signal-type) pair-এর most recent baseline বাদে — age যাই হোক সেটি থাকে যাতে পরের diff সঠিক হয়। Dismissed alerts 90 days পরে purge হয়।

API বা MCP থেকে trigger করুন

Domain management remains dashboard-only for launch. After a domain is verified and explicitly authorized, REST API and MCP can start scans against it according to your plan:

curl
curl -X POST https://fixvibe.app/api/v1/scans \
  -H "Authorization: Bearer fxv_..." \
  -H "content-type: application/json" \
  -d '{"target":"https://example.com"}'
Domains — Docs · FixVibe