Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix. Http. Hard coded cleantalk IPs removed. #481

Merged
merged 1 commit into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions lib/CleantalkSP/Common/Helpers/IP.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,34 +49,6 @@ class IP
),
);

/**
* @var array Set of CleanTalk servers
*/
public static $cleantalks_servers = array(
// MODERATE
'moderate1.cleantalk.org' => '162.243.144.175',
'moderate2.cleantalk.org' => '159.203.121.181',
'moderate3.cleantalk.org' => '88.198.153.60',
'moderate4.cleantalk.org' => '159.69.51.30',
'moderate5.cleantalk.org' => '95.216.200.119',
'moderate6.cleantalk.org' => '138.68.234.8',
// APIX
'apix1.cleantalk.org' => '35.158.52.161',
'apix2.cleantalk.org' => '18.206.49.217',
'apix3.cleantalk.org' => '3.18.23.246',
'apix4.cleantalk.org' => '44.227.90.42',
'apix5.cleantalk.org' => '15.188.198.212',
'apix6.cleantalk.org' => '54.219.94.72',
'apix7.cleantalk.org' => '54.219.94.72',
'apix8.cleantalk.org' => '148.251.84.122',
'apix9.cleantalk.org' => '135.148.237.215',
'apix10.cleantalk.org' => '5.9.221.172',
'apix11.cleantalk.org' => '88.198.99.241',
//ns
'netserv2.cleantalk.org' => '178.63.60.214',
'netserv4.cleantalk.org' => '51.81.55.252',
);

/**
* Getting arrays of IP (REMOTE_ADDR, X-Forwarded-For, X-Real-Ip, Cf_Connecting_Ip)
*
Expand Down Expand Up @@ -560,42 +532,6 @@ public static function calculateMaskForIPs($ip, $mask_start, $mask_end)
return $out;
}

/**
* Get URL form IP. Check if it's belong to cleantalk.
*
* @param string $ip
*
* @return bool|false
* @psalm-suppress PossiblyUnusedMethod
*/
public static function isIPCleantalks($ip)
{
if (self::validate($ip)) {
$url = array_search($ip, self::$cleantalks_servers, true);
return (bool) $url;
}

return false;
}

/**
* Get URL form IP. Check if it's belong to cleantalk.
*
* @param $ip
*
* @return false|int|string
* @psalm-suppress PossiblyUnusedMethod
*/
public static function resolveCleantalks($ip)
{
if (self::validate($ip)) {
$url = array_search($ip, self::$cleantalks_servers, true);
return $url ?: self::resolve($ip);
}

return $ip;
}

/**
* Get URL form IP
*
Expand Down
38 changes: 20 additions & 18 deletions lib/CleantalkSP/SpbctWP/Helpers/HTTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,41 @@
class HTTP extends \CleantalkSP\Common\Helpers\HTTP
{
/**
* Sort CleanTalks API servers by response time
* Wrapper for self::sortHostsByResponseTime()
* Get CleanTalk API servers from DNS
*
* @return array
*/
public static function getCleantalksAPIServersOrderedByResponseTime()
public static function getCleantalksAPIServersFromDNS()
{
return static::sortHostsByResponseTime(
// Get only apix*.cleantalk.org domains from cleantalk servers
array_filter(
IP::$cleantalks_servers,
static function ($key) {
return (bool)preg_match('/^apix\d\d?\.cleantalk\.org$/', $key);
},
ARRAY_FILTER_USE_KEY
)
);
$servers = [];
$dns_records = dns_get_record('api.cleantalk.org', DNS_A);

foreach ($dns_records as $record) {
if (isset($record['ip'])) {
$server_host = gethostbyaddr($record['ip']);
if ( $server_host !== false && $server_host !== $record['ip'] ) {
$servers[$server_host] = $record['ip'];
}
}
}

return $servers;
}

/**
* Sort CleanTalks moderate servers by response time
* Sort CleanTalks API servers by response time
* Wrapper for self::sortHostsByResponseTime()
*
* @return array
*/
public static function getCleantalksModerateServersOrderedByResponseTime()
public static function getCleantalksAPIServersOrderedByResponseTime()
{
return static::sortHostsByResponseTime(
// Get only moderate*.cleantalk.org domains from cleantalk servers
// Get only apix*.cleantalk.org domains from cleantalk servers
array_filter(
IP::$cleantalks_servers,
static::getCleantalksAPIServersFromDNS(),
static function ($key) {
return (bool)preg_match('/^moderate\d\d?\.cleantalk\.org$/', $key);
return (bool)preg_match('/^apix\d\d?\.cleantalk\.org$/', $key);
},
ARRAY_FILTER_USE_KEY
)
Expand Down
2 changes: 1 addition & 1 deletion security-malware-firewall.php
Original file line number Diff line number Diff line change
Expand Up @@ -1350,7 +1350,7 @@ function spbc_test_connection($urls_to_test = array())
{

$out = array();
$urls_to_test = $urls_to_test ?: array_keys(\CleantalkSP\SpbctWP\Helpers\IP::$cleantalks_servers);
$urls_to_test = $urls_to_test ?: array_keys(HTTP::getCleantalksAPIServersFromDNS());

foreach ( $urls_to_test as $url ) {
$start = microtime(true);
Expand Down
2 changes: 1 addition & 1 deletion tests/Common/Helpers/HelperHTTPTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function testPingMethods()

public function testPingCurl() {
$hosts = array_filter(
IP::$cleantalks_servers,
HTTP::getCleantalksAPIServersFromDNS(),
static function ($key) {
return (bool)preg_match('/^apix\d\d?\.cleantalk\.org$/', $key);
},
Expand Down
Loading