C4talyst
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Content Shortcode] Pretty/SEO URLs for PaginationWow, thanks! I will check this out.
Forum: Plugins
In reply to: [Custom Content Shortcode] Pretty/SEO URLs for PaginationNo way to use wp_rewrite within the plugin?
Forum: Plugins
In reply to: [FeedWordPress] We Need A Commercial Version Of This PluginThis plugin has become pretty important for our operations, and one I’d certainly buy.
Hey Matt, about 20 of my sites got hit with this a couple days ago, along with the ‘backup’ user being installed in all our WP sites across all the mysql db’s.
Could this have been the culprit?
https://blog.sucuri.net/2015/10/security-advisory-stored-xss-in-akismet-wordpress-plugin.html
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedAlso, how would a few outdated cores and plugins on other sites explain the files showing up on brand-new 4.3.1 sites running no plugins?
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedI don’t think the server was rooted through any of these attacks. Are you saying there are past WP or plugin exploits that allowed database users to be added to other sites?
It’s generally pretty obvious to tell when a server has been rooted, especially if the attackers are using it for anything (usually spam).
In the case of this attack, these sites all received the uploaded file I mentioned, and the added user (and nothing else) on the morning of October 10. I think these sites were all hit individually using an automated tool.
“Traversing” the database makes no sense…the attackers would be limited to using the one account they had access to, if they could read wp-config.php.
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedMy server. I’ve been through the logs but I’m not running mod_security so the information is limited. I’m just now starting to go through all the sites. Several were running older WP versions and have some outdated plugins however, a few were running WP 4.3.1 with only a handful of up-to-date plugins in place. It looks like in each case, an admin user named ‘backup’ was also added.
Forum: Fixing WordPress
In reply to: Dozens of WP Sites HackedTara, I mentioned that guide in my post. I posted here mainly due to concerns that this may be a new exploit within a plugin or the WP core.
Forum: Plugins
In reply to: [Enhanced Media Library] WP Admin – Media Settings GoneDerp…nevermind. Always found after I make the post…
Forum: Plugins
In reply to: [FeedWordPress] Wrong Permalink for Imported PostsIt turns out our feed id’s in the wp_postmeta table didn’t match between the sites. Once this was fixed, we were good to go. Many thanks to the author, Charles, for emailing us back with this tip.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] What is the shortcode for multiple post_typesWouldn’t work for everyone’s needs, but did in my case.
add_filter( 'rpwe_default_query_arguments', 'dw_news_post_types' ); function dw_news_post_types( $args ) { $args['post_type'] = array('post','news'); // Changing the number of posts to show. return $args; }
Forum: Plugins
In reply to: [Recent Posts Widget Extended] What is the shortcode for multiple post_typesAny chance this will be implemented in the future? Dying for this feature.
Forum: Plugins
In reply to: [FeedWordPress] CSV Page Import Seen as SourceI ended up disabling the plugin to do my imports. Not ideal…but worked.
Forum: Fixing WordPress
In reply to: disable wpautop?This sucks…posting to track in case someone discovers a new method for disabling wpautop.
Ok, read the other post linked to from here and fixed my issue by using [js][/js].