My column names differed slightly from what was mentioned above. A query like this may help root out any others:
SELECT * FROM wp_postmeta
WHERE meta_value LIKE '%atob%' OR meta_value LIKE '%eval%'
This looks for the JavaScript atob() or eval() function calls. I found that I could simply delete these rows from wp_postmeta without deleting the entire entry, but that may not be best practice…
-
This reply was modified 2 years ago by Town Nerd.