mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-26 03:13:58 +08:00
32 lines
No EOL
585 B
PHP
32 lines
No EOL
585 B
PHP
<?php
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
class dam_spam_check_misc_allow_list extends dam_spam_module {
|
|
public $searchname = 'VaultPress';
|
|
public $searchlist = array(
|
|
'VaultPress',
|
|
array( '207.198.112.0', '207.198.113.255' ),
|
|
'WorldPay',
|
|
'207.242.204.32/29',
|
|
'12.220.48.112/28',
|
|
'193.41.220.0/23',
|
|
'208.74.164.0/22',
|
|
'199.254.202.0/24',
|
|
'216.137.161.128/26',
|
|
'70.35.172.128/25',
|
|
'62.6.167.128/25',
|
|
'84.45.252.0/25',
|
|
'195.35.90.0/23',
|
|
'Clickbank',
|
|
'74.63.153.66',
|
|
'74.63.153.67',
|
|
'96.47.69.66',
|
|
'96.47.69.67'
|
|
);
|
|
}
|
|
|
|
?>
|