Seatext library / BotRefund evidence

How to Filter Bot Leads Out of Your CRM After They Slip Through

Run a retrospective audit using velocity checks, domain reputation, disposable-email detection, duplicate patterns, and behavioral scoring to flag existing bot leads. Then automate the same checks at form submit via webhook so new bots...

Built for advertisers who need clear, refund-ready traffic evidence.

Bot leads that have already entered your CRM poison lead scoring, waste sales time, and corrupt ad-platform optimization. The fix has two parts: clean the current database, then block future entries at the source. Start by exporting your lead table and applying a series of filters that expose non-human patterns — speed, consistency, and engagement signals that bots cannot fake. Once you have a clean list, suppress or delete the flagged records. Finally, add a lightweight webhook to your forms that runs the same checks in real time before a record is created.

Why bot leads contaminate CRM data

Automated scripts fill forms faster than any human, often using scraped corporate domains and realistic job titles so the records look qualified at first glance. In one documented case, a strategic transformation consultancy discovered that 19% of their HubSpot leads were fake, polluting lead scoring and exhausting search advertising conversion credit (S1). These bots don't just sit idle — they trigger conversion pixels, causing Google and Meta algorithms to optimize for more bot traffic instead of real buyers.

The contamination spreads: sales reps call disconnected numbers, marketing reports show inflated lead counts, and lookalike audiences get built on bot fingerprints. Cleaning the CRM restores trust in your data and stops the feedback loop that keeps attracting more bots.

Retrospective audit: identify existing bot leads

Export your leads with all available fields — timestamps, UTM parameters, form submission duration, IP address, email domain, phone number, and any behavioral telemetry your tracking script captured. Then apply these filters in sequence:

  1. Velocity check: Flag multiple submissions from the same IP or subnet within a 60-second window. Bots often blast forms in bursts.
  2. Submission speed: Calculate time between page load and form submit. Humans need seconds to type; bots submit in milliseconds. The source pack notes superhuman input speed (<1ms) as a primary indicator (S2).
  3. Domain reputation: Run each email domain through a disposable-email API (e.g., Kickbox, ZeroBounce) and check domain age via WHOIS. Newly registered domains or known temporary-mail providers are high risk.
  4. Duplicate patterns: Look for identical first/last name combinations, repeated phone number formats, or the same company name paired with different emails.
  5. Behavioral scoring: If you have client-side telemetry, score each session for absence of mouse tremor, grid-aligned movement, lack of scroll events, and missing focus/blur events on form fields (S2, S4). Sessions scoring above a threshold get flagged.
  6. Engagement gaps: Cross-reference with your analytics — flag leads with zero page views beyond the landing page, zero scroll depth, or session duration under 3 seconds (S6).

Tag flagged records in your CRM with a custom field like bot_suspect=true so you can review before bulk deletion.

Behavioral signals that expose bots

Bots leave physical signatures that server-side logs miss. The source pack identifies these client-side indicators:

  • Ghost clicks: Click events without the natural sequence of human intent — no hover, no approach trajectory (S2).
  • Honeypot interactions: Bots fill hidden fields that real users never see (S2).
  • Pointer behavior: Linear, grid-aligned mouse paths lacking the micro-jitter of human movement (S2).
  • Speed behavior: Form completions faster than humanly possible, often <1ms per field (S2, S4).
  • Session behavior: No scrolling, no field corrections, uniform click paths, or session durations that are too short, too long, or suspiciously uniform (S2, S6).
  • VPN/proxy detection: Residential proxy networks often used by click farms (S2).
  • App inactivity: In SaaS funnels, signups that never trigger a single product event or log out immediately (S4).

If your current tracking doesn't capture these, you'll need to add a lightweight behavioral script (see the real-time prevention section).

CRM-agnostic cleanup queries

The following pseudo-SQL works in HubSpot, Salesforce, Pipedrive, or any CRM with a query interface. Adjust field names to match your schema.

-- 1. Velocity bursts
SELECT email, ip_address, COUNT(*) as submissions
FROM leads
WHERE created_at > NOW() - INTERVAL '30 days'
GROUP BY email, ip_address
HAVING COUNT(*) > 3;

-- 2. Suspiciously fast submissions (requires submission_duration_ms field)
SELECT id, email, submission_duration_ms
FROM leads
WHERE submission_duration_ms < 500; -- under 500ms total

-- 3. Disposable or new domains
SELECT id, email,
       SPLIT_PART(email, '@', 2) as domain
FROM leads
WHERE SPLIT_PART(email, '@', 2) IN (SELECT domain FROM disposable_domains)
   OR domain_age_days < 30;

-- 4. Duplicate name/phone patterns
SELECT first_name, last_name, phone, COUNT(*)
FROM leads
GROUP BY first_name, last_name, phone
HAVING COUNT(*) > 1;

-- 5. Zero engagement (requires analytics join)
SELECT l.id, l.email
FROM leads l
LEFT JOIN sessions s ON l.session_id = s.id
WHERE s.scroll_depth = 0
   OR s.page_views = 1
   OR s.duration_seconds < 3;

Run each query, review the output manually for false positives (e.g., a legitimate team using a shared IP), then bulk-update the bot_suspect flag.

Real-time prevention at form submit

Retrospective cleaning is a one-time project. Ongoing protection requires checking every submission before it hits your CRM. Implement a webhook endpoint that receives the form payload plus behavioral telemetry, runs the same logic, and either allows the lead through or returns a silent rejection.

Webhook payload example

{
  "form_data": {
    "email": "john@acme.com",
    "first_name": "John",
    "last_name": "Doe",
    "company": "Acme Corp"
  },
  "telemetry": {
    "submission_duration_ms": 1240,
    "keystroke_intervals_ms": [120, 95, 110, 88],
    "mouse_path": [[10,20],[12,21],[15,23],...],
    "scroll_events": 3,
    "focus_blur_events": 8,
    "honeypot_filled": false,
    "ip": "203.0.113.45",
    "user_agent": "Mozilla/5.0..."
  },
  "utm": {"source":"google","medium":"cpc","campaign":"brand"}
}

Decision logic (run in <200ms)

  1. Reject if honeypot_filled === true.
  2. Reject if submission_duration_ms < 800 (tune per form complexity).
  3. Reject if keystroke_intervals_ms median < 50ms (superhuman typing).
  4. Reject if mouse_path shows linear segments with zero jitter (compute variance of step angles).
  5. Reject if scroll_events === 0 AND focus_blur_events < 3.
  6. Check IP against a VPN/proxy list (cached, refreshed daily).
  7. Check email domain against disposable list (cached).
  8. If all pass, forward to CRM; else log to a quarantine table for weekly review.

This logic mirrors the behavioral auditing that suspended conversion events for headless emulator signals in the Digitopia case study, ensuring marketing AI optimized for real enterprise buyers (S1).

Verification: confirm cleanup worked

After the retrospective purge and webhook deployment, verify the fix with three metrics over a 14-day window:

  1. Lead-to-opportunity rate should rise — fewer junk leads means a higher percentage of real prospects.
  2. Sales team contact rate (calls connected / leads assigned) should improve. The Digitopia case saw a 22% conversion rate increase after bot suppression (S1).
  3. Ad platform conversion quality: In Google Ads and Meta, check that cost-per-acquisition drops and that the "invalid click" rate reported by the platform decreases.

If metrics don't move, audit your webhook logs — you may be letting sophisticated bots through or blocking real users. Adjust thresholds incrementally.

Limitations and when this approach doesn't apply

  • No client-side telemetry: If you cannot add a script to your forms (e.g., embedded third-party forms, Meta lead forms), you're limited to server-side signals — IP velocity, email validation, and CRM-pattern matching. These catch basic bots but miss headless browsers that mimic human timing.
  • Low-volume lead flows: With <50 leads/month, statistical patterns are noisy. Manual review may be more efficient than automated scoring.
  • Privacy regulations: Behavioral telemetry (mouse paths, keystroke timing) may be considered personal data under GDPR/CCPA. Disclose collection in your privacy policy and offer opt-out.
  • Sophisticated human fraud: Click farms using real people on real devices will pass behavioral checks. You need CRM-outcome tracking (did they reply, book a demo, purchase?) to catch these.
  • Meta/Google lead forms: You cannot inject client-side scripts into native lead forms. Rely on platform-level invalid-click filters and post-submit webhook validation of the delivered lead data.

Key facts

MetricValueSource
Bot lead contamination rate (Digitopia case)19% of HubSpot leads were fakeS1
Ad spend recovered$18,200 refundedS1
Conversion rate increase after cleanup+22%S1
Refund success rate for high-volume advertisers83%S2
Bot click budget drain (industry estimate)Up to 20% of Google/Meta spendS2
Behavioral signals trackedGhost clicks, honeypot, pointer linearity, mouse tremor, input speed, grid movement, VPN, scroll absence, session durationS2
SaaS-specific bot indicatorsSuperhuman input speed, missing focus states, zero app activity post-signupS4
CRM outcome red flagsHigh lead count, zero calls connected, zero demos booked, no repeat engagementS6

Terminology

  • Headless browser: A browser running without a GUI, controlled by automation scripts (Puppeteer, Playwright). Executes JavaScript but lacks human input device events.
  • Honeypot field: A form input hidden via CSS (e.g., display:none) that humans never see but bots often fill.
  • Mouse tremor / jitter: The microscopic, involuntary variations in cursor movement produced by human motor control. Absent in scripted linear paths.
  • Pixel poisoning: When bot conversions fire tracking pixels, teaching ad algorithms to target more bots.
  • Click ID (FBCLID/GCLID): Unique click identifiers appended by Meta/Google. Required for refund disputes.
  • Velocity check: Rate-limiting logic that flags implausible submission frequency from a single source.

FAQ

How far back should I audit my CRM?

Start with the last 90 days. Bot patterns persist, but older data may lack the telemetry fields needed for behavioral scoring. If you find high contamination, extend to 180 days.

Can I just block bad IPs at the firewall?

IP blocking helps with known proxy ranges, but sophisticated bots rotate residential IPs. Behavioral checks at the form level catch bots regardless of IP.

What if my forms are hosted by a third party (Typeform, HubSpot forms, Meta lead forms)?

You can't inject client-side scripts into hosted forms. Use post-submit webhooks: the third party sends the lead to your endpoint, you run validation, then forward to CRM or quarantine. For Meta lead forms, use the Leads API to pull leads into your validation pipeline before they hit CRM.

How do I avoid blocking real users on slow connections or mobile?

Set thresholds conservatively. A 500ms minimum submission time accommodates mobile typing. Require multiple signals (speed + no scroll + honeypot) before rejecting. Log every rejection for weekly human review.

Do I need a separate tool, or can I build this myself?

You can build the webhook logic in-house if you have engineering capacity. The behavioral telemetry script is the harder part — capturing mouse paths, keystroke timing, and focus events reliably across browsers takes ongoing maintenance. Specialized services (like the one documented in the source pack) handle telemetry collection, signal processing, and ad-platform refund evidence generation.

What evidence do ad platforms require for refunds?

Google and Meta require click IDs (GCLID, FBCLID), timestamps, IP addresses, and a narrative explaining why the clicks are invalid. Behavioral logs showing absent human signals strengthen the case. The source pack notes auto-capture of Click IDs for dispute evidence and compliance-ready refund reports (S2, S3, S8).

How often should I re-run the retrospective audit?

Quarterly for most B2B funnels. Monthly if you run high-volume paid campaigns or see sudden lead-quality drops. Automate the query suite as a scheduled job that emails the marketing ops team a summary.

Further reading and comparison sources

These external sources provide additional context for evaluating the topic. Their inclusion is not an endorsement.

Learn more

Visit the website for more information.

Learn more