So stoppen Sie WordPress-Pingbacks und Trackbacks-Spam

So stoppen Sie WordPress-Pingbacks und Trackbacks-Spam

Überprüfen Sie die Tabelle meines WordPresswp_commentsund stellen Sie fest, dass die Dateigröße 500 MB für etwa 1 Million Kommentare enthält! Stöbern Sie darin und finden Sie heraus, dass rund 900.000 ++ Kommentare als "trackback" markiert und mit der Website eines Spammers verknüpft wurden. Das Schlimmste ist, dass diese Art von 'trackback' s Kommentaren jede Sekunde zunimmt!

Befolgen Sie die folgenden Schritte, um das Problem sofort zu beheben.

1. Diskussionseinstellungen

Login WordPress Admin Panel, Einstellungen - >> Diskussion - >>Default article settings, deaktiviert die zweite Option

image

2. ping_status = "geschlossen"

2.1 The existing articles are still open for attack, update all posts’ ping_status to closed

phpMyAdmin- oder MySQL-Konsolen

UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'post';

UPDATE wp_posts SET ping_status='closed' WHERE post_status = 'publish' AND post_type = 'page';

2.2 Delete all the existing ‘trackback’ spam comments

phpMyAdmin- oder MySQL-Konsolen

DELETE FROM  `wp_comments` WHERE  `comment_type` = 'trackback'

P.S WordPress should consider turning off this ‘pingback and trackback’ feature by default!

Stop this also – Spam comments on attachment
Das könnte Sie interessieren-WordPress – How to stop spam comments on attachment.