mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-27 03:23:56 +08:00
35 lines
No EOL
648 B
PHP
35 lines
No EOL
648 B
PHP
<?php
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
// last updated from https://docs.recurly.com/docs/ip-allowlist on 2/29/24
|
|
class dam_spam_check_recurly extends dam_spam_module {
|
|
public $searchname = 'Recurly';
|
|
public $searchlist = array(
|
|
'34.105.107.15',
|
|
'34.107.35.64',
|
|
'34.107.83.154',
|
|
'34.141.92.246',
|
|
'34.79.180.69',
|
|
'34.79.238.20',
|
|
'34.86.231.208',
|
|
'34.86.76.227',
|
|
'34.89.164.175',
|
|
'35.185.253.62',
|
|
'35.188.232.138',
|
|
'35.194.77.56',
|
|
'35.195.228.7',
|
|
'35.197.126.78',
|
|
'35.199.174.181',
|
|
'35.230.60.156',
|
|
'35.233.168.62',
|
|
'35.236.210.191',
|
|
'35.240.64.130',
|
|
'35.245.149.42'
|
|
);
|
|
}
|
|
|
|
?>
|