// docs / scans
Scan types
FixVibe তিন ধরনের targets-এর বিরুদ্ধে তিন ধরনের scans চালায়। প্রতিটির gating, speed, এবং blast radius আলাদা — আপনি যা test করছেন তার সঙ্গে মেলে এমনটি বেছে নিন।
Passive
Available on every tier. A passive scan never sends crafted attack input; it fetches the URL like a normal browser and checks shipped responses, client assets, BaaS exposure, DNS, and public security posture against 250+ vulnerability classes.
এটি read-only হওয়ায় passive যেকোনো URL-এর against run করতে পারে — domain verification নেই, attestation নেই। trade-off হলো depth: input পাঠানো ছাড়া যেগুলো discover করা যায় না, passive সেগুলো miss করে।
Passive কী ধরে
- Missing security headers (HSTS, CSP, frame-options, ইত্যাদি)।
- Insecure cookie attributes (Secure / HttpOnly / SameSite নেই)।
- Weak TLS configuration, expired certs, missing HSTS preload।
- JS bundles-এ secrets (Supabase service keys, AWS keys, Stripe sk_, ইত্যাদি)।
- Exposed source maps, debug endpoints, OpenAPI specs, GraphQL introspection।
- Open Supabase RLS / Firebase rules / Clerk misconfiguration।
- DNS (subdomain takeover, missing SPF/DKIM/DMARC)।
- Threat-intel listings (Spamhaus, URLhaus)।
- Known CVEs থাকা outdated framework versions।
Active Hobby+
Active scans perform bounded verification against verified domains you have explicitly authorized. They are available on the Hobby plan and higher tiers (Pro, Unlimited) and are designed to confirm risky behavior without publishing the underlying probe recipes.
আমরা কেন gate করি: attestation flow
Active probes তাত্ত্বিকভাবে production প্রভাবিত করতে পারে — slow responses, error spikes, test stores-এ garbage data। আমরা আপনাকে বলি:
- Domain verify করুন DNS TXT বা HTTP file দিয়ে (Account → Domains)।
- Authorization attest করুন — scan-start সময়ে একবার confirmation যে আপনার permission আছে। আপনার IP, user-agent, এবং timestamp সহ server-stamped;
audit_logs-এ লেখা হয়।
For scheduled re-scans and API/MCP active starts, domain authorization is recorded from Dashboard → Domains and can be revoked at any time. Automated active scans use the authorized safety level for that domain.
GitHub repository Pro+
Repo scans skip deployed URL testing and review source through the FixVibe GitHub App or your OAuth connection. They report high-confidence code, dependency, and repository-security risks without storing your source code.
Repo scans আপনার repo-তে কখনও write করে না এবং source code persist করে না — শুধু finding evidence stored হয়। Quota: URL scans-এর একই scansPerMonth bucket।
API দিয়ে trigger করুন
curl -X POST https://fixvibe.app/api/v1/scans \
-H "Authorization: Bearer fxv_..." \
-H "content-type: application/json" \
-d '{"target":"https://staging.example.com"}'REST API and MCP can start passive scans, and can start active scans for verified domains that have been explicitly authorized in Dashboard → Domains. Full reference: /docs/api.
Anonymous one-shot scans
Home page unsigned-up visitors-কে প্রতি browser session-এ একটি single passive scan চালাতে দেয়। এই scans creation-এর 24 hours পরে expire হয় এবং expire হওয়ার আগে sign up করলে real account-এ migrate করা যায় — auth callback anonymous scan-কে automatically new org-এ attach করে।
