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

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;
}
}
?>