@m13v/seo-components 0.38.2 → 0.38.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -46,8 +46,17 @@ export interface DmShortLinkRedirectConfig {
|
|
|
46
46
|
* (Google publishes this; any real Android user is on a current device).
|
|
47
47
|
* - AI-Innovation-Radar, a named AI/news scraper.
|
|
48
48
|
* - AFMMainUI/Darwin, Apple's Ads-For-Messages link prefetch (no human tap).
|
|
49
|
+
*
|
|
50
|
+
* 2026-05-10: extended after a 24h click audit found four leak patterns
|
|
51
|
+
* sitting in the human pile:
|
|
52
|
+
* - LinkResolver/1.0 and link-resolver/1.0 (named link-unfurl bots,
|
|
53
|
+
* no "bot/crawler" token in the UA).
|
|
54
|
+
* - Bare "Mozilla/5.0 (compatible)" with no engine info (no real browser
|
|
55
|
+
* ever sends just this; spoofed minimal fingerprint).
|
|
56
|
+
* - curl/<version> (generic HTTP client; "axios/" was already caught,
|
|
57
|
+
* curl was missed).
|
|
49
58
|
*/
|
|
50
|
-
const BOT_UA_RE = /bot|crawler|spider|Twitterbot|LinkedInBot|Slackbot|facebookexternalhit|Discordbot|TelegramBot|WhatsApp|Applebot|Googlebot|Bingbot|YandexBot|DuckDuckBot|redditbot|Pinterest|Embedly|Snapchat|axios\/|python-requests|python-urllib|node-fetch|^node$|dataminr|Anthill|^Mozilla\/5\.0$|Chrome\/70\.|Nexus 5X Build\/MMB29P|AI-Innovation-Radar|^AFMMainUI
|
|
59
|
+
const BOT_UA_RE = /bot|crawler|spider|Twitterbot|LinkedInBot|Slackbot|facebookexternalhit|Discordbot|TelegramBot|WhatsApp|Applebot|Googlebot|Bingbot|YandexBot|DuckDuckBot|redditbot|Pinterest|Embedly|Snapchat|axios\/|python-requests|python-urllib|node-fetch|^node$|dataminr|Anthill|^Mozilla\/5\.0$|Chrome\/70\.|Nexus 5X Build\/MMB29P|AI-Innovation-Radar|^AFMMainUI|LinkResolver|link-resolver|^Mozilla\/5\.0 \(compatible\)$|^curl\//i;
|
|
51
60
|
|
|
52
61
|
/**
|
|
53
62
|
* Factory for `GET /r/[code]`.
|