mirror of
https://gh.wpcy.net/https://github.com/webguyio/stop-spammers-classic.git
synced 2026-05-28 02:13:58 +08:00
26 lines
No EOL
576 B
PHP
26 lines
No EOL
576 B
PHP
<?php
|
|
// Allow List - returns false if not found
|
|
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
status_header( 404 );
|
|
exit;
|
|
}
|
|
|
|
// last updated from https://help.turbify.com/s/article/SLN19413 on 2/29/24
|
|
class chkyahoomerchant extends be_module {
|
|
public $searchname = 'Yahoo Merchant Services';
|
|
public function process( $ip, &$stats = array(), &$options = array(), &$post = array() ) {
|
|
$yahoo = array(
|
|
'52.0.50.252',
|
|
'52.20.227.151',
|
|
'52.21.142.28',
|
|
'52.21.143.68',
|
|
'52.73.246.40',
|
|
'52.89.44.13'
|
|
);
|
|
return $this->searchList( $ip, $yahoo );
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|