mirror of
https://gh.wpcy.net/https://github.com/webguyio/stop-spammers-classic.git
synced 2026-05-27 02:04:00 +08:00
19 lines
No EOL
391 B
PHP
19 lines
No EOL
391 B
PHP
<?php
|
|
// Allow List - returns false if not found
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
// last updated from https://squareup.com/help/us/en/article/6537-square-terminal-troubleshooting on 2/29/24
|
|
class chkpaypal extends be_module {
|
|
public $searchname = 'Square';
|
|
public $searchlist = array(
|
|
'74.122.184.0/21',
|
|
'103.31.216.0/22',
|
|
'185.57.56.0/22'
|
|
);
|
|
}
|
|
|
|
?>
|