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

166 lines
No EOL
3.1 KiB
PHP

<?php
// Allow List - returns false if not found
if ( !defined( 'ABSPATH' ) ) {
status_header( 404 );
exit;
}
// last updated from https://developer.paypal.com/braintree/docs/reference/general/braintree-ip-addresses on 2/29/24
class chkbraintree extends be_module {
public $searchname = 'Braintree';
public $searchlist = array(
// IP ranges
'63.146.102.0/26',
'64.4.245.128/25',
'159.242.240.0/21',
'184.105.251.192/26',
'204.109.13.0/24',
'205.219.64.0/26',
'209.117.187.192/26',
// IP addresses
'3.105.10.183',
'3.105.225.84',
'3.121.140.140',
'3.121.81.158',
'3.122.176.248',
'3.13.64.186',
'3.130.159.200',
'3.17.123.234',
'3.210.51.78',
'3.217.221.47',
'3.218.50.40',
'3.219.134.92',
'13.236.192.223',
'13.248.139.42',
'13.59.123.211',
'13.59.221.189',
'18.194.163.26',
'18.219.43.168',
'18.220.234.250',
'18.222.16.129',
'34.226.31.148',
'34.227.252.232',
'34.228.35.242',
'34.233.137.2',
'35.156.167.229',
'35.156.220.140',
'35.163.3.206',
'52.29.159.59',
'52.32.253.174',
'52.40.39.250',
'52.40.66.148',
'52.62.69.124',
'52.63.13.180',
'52.65.178.175',
'52.88.213.101',
'54.69.192.149',
'54.70.36.105',
'54.79.127.74',
'76.223.13.31',
// sandbox
'3.0.254.180',
'3.104.56.150',
'3.113.200.9',
'3.113.229.112',
'3.120.119.75',
'3.121.106.237',
'3.121.164.234',
'3.13.92.194',
'3.14.35.212',
'3.220.238.198',
'3.9.84.180',
'13.127.189.236',
'13.210.219.251',
'13.234.174.91',
'13.235.118.29',
'13.235.150.220',
'13.236.156.3',
'13.248.141.30',
'13.251.190.251',
'13.48.80.201',
'13.48.88.154',
'13.52.191.162',
'13.53.202.200',
'13.53.79.19',
'13.54.200.47',
'13.55.21.210',
'13.58.164.247',
'15.164.15.215',
'15.164.168.254',
'15.164.54.187',
'18.130.160.231',
'18.136.77.216',
'18.142.0.145',
'18.162.128.255',
'18.162.131.120',
'18.162.67.12',
'18.162.72.201',
'18.200.142.157',
'18.217.209.3',
'18.221.45.134',
'18.223.103.77',
'18.229.101.222',
'18.231.9.255',
'18.232.5.12',
'34.214.65.175',
'34.234.80.105',
'34.234.80.137',
'34.234.80.153',
'34.234.80.190',
'34.237.133.134',
'34.243.143.250',
'34.255.174.44',
'35.157.148.96',
'35.158.212.12',
'35.158.30.247',
'35.162.23.35',
'35.164.110.229',
'35.177.65.248',
'35.178.128.157',
'35.180.84.175',
'35.181.122.216',
'35.181.137.42',
'35.181.161.116',
'35.182.81.213',
'35.183.169.117',
'50.18.225.62',
'50.18.50.113',
'52.10.180.37',
'52.14.193.75',
'52.15.203.201',
'52.193.225.73',
'52.194.11.6',
'52.36.201.203',
'52.39.201.194',
'52.52.171.44',
'52.57.216.246',
'52.63.197.49',
'52.65.33.215',
'52.78.198.71',
'52.9.201.213',
'54.148.237.196',
'54.161.46.43',
'54.176.192.159',
'54.176.193.158',
'54.177.106.232',
'54.177.221.126',
'54.183.158.200',
'54.193.128.216',
'54.207.12.197',
'54.241.91.115',
'54.67.105.20',
'54.67.53.148',
'54.94.132.38',
'76.223.15.98',
'99.79.135.217',
'99.79.148.201',
'99.81.241.232',
'184.169.137.109',
'184.169.160.115',
'184.72.16.50',
'204.236.187.5'
);
}
?>