depy
Forum Replies Created
-
Forum: Plugins
In reply to: [File Manager] Got hacked – Zero day vulnerabilityHello,
A vulnerability in the plugin caused many many sites to be infected with a virus called “lowerbeforwarden”. Vulnerable file in the WP File Manager plugin enabled the attackers to inject virus into sites.
A fix you can try:
If you are able access the admin panel, then first install this plugin called “MalCure”, run a scan. In the scan it will show you all the infected files, then you can use FTP to search through the files, delete the files or just remove the part that’s the virus code.Next you may also want to fully replace wp-admin, wp-includes folders on your WP installation to be safe.
A little more detailed steps:
https://www.stramaxon.com/2020/04/wordpress-ico-malware-redirect.html
The cleanup is mostly deleting the infected files and updating the vulnerable plugin.
@mndpsingh287 While I appreciate you offering helping people with hacked sites, it is still not fair that you have still not posted anything to document the ways and methods to disinfect the site, instead you are offering help over emails that’s not doing anything to many of your plugin users who just wants to get rid of the virus and would do it themselves if they know how.
Forum: Themes and Templates
In reply to: Showing something only on Homepage using is_home() not workingProblem solved. Thank you.
Forum: Themes and Templates
In reply to: Showing something only on Homepage using is_home() not workingHi @codemovement
That fixed the problem. I am now checking with
$wp_query->get( 'paged' ) < 2whether the the paged value of the page is less than 2 and it works as I expected.<?php if( is_home() && is_front_page() && ($wp_query->get( 'paged' ) < 2) ) : ?> <h3>This is homepage</h3> <?php endif; ?>Thank you very much for the quick help!