Last active
March 29, 2025 18:37
-
-
Save szepeviktor/f3e7a88ce213c66d7592cf9c6c239ae6 to your computer and use it in GitHub Desktop.
Mark WordPress comments from Tor exit nodes as spam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Mark comments from Tor exit nodes as spam | |
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle | |
*/ | |
/** @return string|null */ | |
function getTorExitNodes() | |
{ | |
$listUrl = 'https://check.torproject.org/torbulkexitlist'; | |
$cacheFile = wp_upload_dir()['basedir'].'/tor-exit-nodes.txt'; | |
$cacheTime = HOUR_IN_SECONDS; | |
if (file_exists($cacheFile) && (time() - filemtime($cacheFile) < $cacheTime)) { | |
return file_get_contents($cacheFile); | |
} | |
$response = wp_remote_get($listUrl); | |
if (is_wp_error($response)) { | |
return null; | |
} | |
$list = wp_remote_retrieve_body($response); | |
if ($list === '') { | |
return null; | |
} | |
file_put_contents($cacheFile, $list); | |
return $list; | |
} | |
function isTorExitNode($ipv4): bool | |
{ | |
$list = getTorExitNodes(); | |
if ($list === null) { | |
return false; | |
} | |
$torExitNodes = explode("\n", trim($list)); | |
return in_array($ipv4, $torExitNodes); | |
} | |
add_action( | |
'wp_insert_comment', | |
static function ($id, $comment) { | |
if (isTorExitNode($comment->comment_author_IP)) { | |
wp_set_comment_status($id, 'spam'); | |
} | |
}, | |
10, | |
2 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment