Stored XSS vulnerability found in Social Warfare plugin causing Redirects to Malicious websites

hacked

If you use the Social Warfare plugin for WordPress then you are likely vulnerable to this security issue or already hacked. You can check your website security by using this free website malware scanner https://scan.attacker.net The vulnerability was mainly found in version v 3.5.2 and it’s being exploited for some time. Hackers are exploiting it… Continue reading Stored XSS vulnerability found in Social Warfare plugin causing Redirects to Malicious websites

Vulnerability found in WordPress Easy WP SMTP plugin causing Malicious Redirects to other sites

malware removal

If you use Easy WP SMTP plugin for wordpress then you are likely vulnerable to this security issue or already hacked. You can check your website security by using this free website malware scanner https://scan.attacker.net The vulnerability was mainly found in version v 1.3.9 and it’s being exploited for some time. Hackers are exploiting it… Continue reading Vulnerability found in WordPress Easy WP SMTP plugin causing Malicious Redirects to other sites

How to forward a website to another url

There are several ways to accomplish this task, but the simplest to understand is to use php. To do this, you need to create the page that will do the forwarding.  This can be any page, as long as it ends in “.php”.  If you are trying to redirect a domain, you’d create “index.php” inside… Continue reading How to forward a website to another url

Redirect domain.com to www.domain.com

If you want to force clients to use www.domain.com, you can redirect them from domain.com to the www version with an .htaccess file. In your public_html folder, create a file called .htaccess and add the code: RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent] where you’d need to replace domain\.com and domain.com with your actual domain name.  Note the \ character must… Continue reading Redirect domain.com to www.domain.com