mirror of
https://gh.wpcy.net/https://github.com/webguyio/dam-spam.git
synced 2026-05-25 03:03:57 +08:00
18 lines
No EOL
366 B
PHP
18 lines
No EOL
366 B
PHP
<?php
|
|
|
|
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 dam_spam_check_square extends dam_spam_module {
|
|
public $searchname = 'Square';
|
|
public $searchlist = array(
|
|
'74.122.184.0/21',
|
|
'103.31.216.0/22',
|
|
'185.57.56.0/22'
|
|
);
|
|
}
|
|
|
|
?>
|