mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-26 03:13:58 +08:00
23 lines
No EOL
486 B
PHP
23 lines
No EOL
486 B
PHP
<?php
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
// last updated from https://www.paypal.com/us/cshelp/article/what-are-the-ip-addresses-for-live-paypal-servers-ts1056 on 2/29/24
|
|
class dam_spam_check_paypal extends dam_spam_module {
|
|
public $searchname = 'PayPal';
|
|
public $searchlist = array(
|
|
'64.4.240.0/21',
|
|
'64.4.248.0/22',
|
|
'66.211.168.0/22',
|
|
'91.243.72.0/23',
|
|
'173.0.80.0/20',
|
|
'185.177.52.0/22',
|
|
'192.160.215.0/24',
|
|
'198.54.216.0/23'
|
|
);
|
|
}
|
|
|
|
?>
|