stop-spammers-classic/modules/chkpaypal.php
2025-09-13 16:55:35 -06:00

24 lines
No EOL
511 B
PHP

<?php
// Allow List - returns false if not found
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 chkpaypal extends be_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'
);
}
?>