ActiveComply
Compliance monitoring for regulated industries
About this crawler
ActiveComply is a web crawler identified by the regular-expression pattern ActiveComply in the User-Agent request header. It is categorised as scanner. Use the regex above to detect, log, allow, or block ActiveComply traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- ActiveComply
- Pattern
ActiveComply- Tags
- scanner
- Reference
- https://activecomply.com/social-media-compliance-monitoring/
- Added
- 2026/04/17
- Instances
- 3 known sample(s)
Sample User-Agent strings
ActiveComplyBot
Mozilla/5.0 (compatible; ActiveComply; +https://www.activecomply.com/)
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.7339.16 Safari/537.36 (compatible; ActiveComply/2.0; +https://app.activecomply.com/bot)
Block this crawler
robots.txt — disallow ActiveComply:
User-agent: ActiveComply
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} ActiveComply [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "ActiveComply") {
return 403;
}
← back to all crawlers