<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/security/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Thu, 31 Jul 2025 06:31:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Disable Theme and Plugin Editors in WordPress</title>
		<link>https://www.bloggertipandtrick.net/disable-theme-plugin-editors-wordpress/</link>
					<comments>https://www.bloggertipandtrick.net/disable-theme-plugin-editors-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 31 Jul 2025 05:52:22 +0000</pubDate>
				<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6209</guid>

					<description><![CDATA[<p>By default, WordPress allows administrators to directly edit theme and plugin files through the dashboard. Although this feature is helpful, it can be a security risk if someone who shouldn't have access gets into the admin area. You can disable the built-in Theme Editor and Plugin Editor by adding the following line to your wp-config.php [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-theme-plugin-editors-wordpress/">How to Disable Theme and Plugin Editors in WordPress</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Disable-Theme-and-Plugin-Editors-in-WordPress.jpg" alt="How to Disable Theme and Plugin Editors in WordPress" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7332" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Disable-Theme-and-Plugin-Editors-in-WordPress.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Disable-Theme-and-Plugin-Editors-in-WordPress-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>By default, WordPress allows administrators to directly edit theme and plugin files through the dashboard. Although this feature is helpful, it can be a security risk if someone who shouldn't have access gets into the admin area.</p>
<p>You can disable the built-in <strong>Theme Editor</strong> and <strong>Plugin Editor</strong> by adding the following line to your <strong>wp-config.php</strong> file:</p>
<pre style="border: 1px solid black; overflow: auto;">// Disable the themes and plugins editor in WordPress Admin
define('DISALLOW_FILE_EDIT', true);</pre>
<p>Add this line just above the following line in your <strong>wp-config.php</strong> file:</p>
<pre style="border: 1px solid black; overflow: auto;">/* That's all, stop editing! Happy publishing. */</pre>
<p>Once added, the following editor URLs will be inaccessible and will show a permissions error message:</p>
<ul>
<li><strong>Theme Editor:</strong> <strong>http://example.com/wp-admin/theme-editor.php</strong></li>
<li><strong>Plugin Editor:</strong> <strong>http://example.com/wp-admin/plugin-editor.php</strong></li>
</ul>
<p>Here is an example of how the code should appear in your file:</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/09/Disable-the-themes-and-plugins-editor-in-WP-Admin.png" alt="Disable the themes / plugins editor in WP Admin" width="681" height="521" /></p>
<p>After applying this setting, attempting to access the editor pages will result in an error message like this:</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/09/Themes-Editor-Access-Block-Message.png" alt="Themes Editor Access Block Message" width="344" height="120" /></p>
<h3>How to Disable All File Modifications?</h3>
<p>If you also want to block all types of file modifications, such as installing or updating plugins and themes, you can use the following code instead of the one above:</p>
<pre style="border: 1px solid black; overflow: auto;">define('DISALLOW_FILE_MODS', true);</pre>
<p>This code disables all file modifications through the WordPress admin panel, including the Theme and Plugin Editors, plugin and theme installation, updates, and core updates.</p>
<p><strong>Note:</strong> This method is fully compatible with all recent WordPress versions.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-theme-plugin-editors-wordpress/">How to Disable Theme and Plugin Editors in WordPress</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/disable-theme-plugin-editors-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Activate HTTPS on Blogger Custom Domains</title>
		<link>https://www.bloggertipandtrick.net/activate-https-blogger-custom-domains/</link>
					<comments>https://www.bloggertipandtrick.net/activate-https-blogger-custom-domains/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 22 Dec 2017 08:52:56 +0000</pubDate>
				<category><![CDATA[domain]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6710</guid>

					<description><![CDATA[<p>Few days ago, Blogger added a long-awaited feature for custom domains. Now Blogger offers you the opportunity to test the HTTPS protocol for blogs with a custom domain. 1. To make the HTTPS option available for your blog, go to the user settings and switch to Blogger draft. Dashboard ► Settings ► User Settings ► [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/activate-https-blogger-custom-domains/">How to Activate HTTPS on Blogger Custom Domains</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Few days ago, Blogger added a long-awaited feature for <strong>custom domains</strong>. Now Blogger offers you the opportunity to test the <strong>HTTPS protocol</strong> for blogs with a custom domain.</p>
<p>1. To make the HTTPS option available for your blog, go to the user settings and switch to Blogger draft.</p>
<p>Dashboard ► Settings ► User Settings ► General ► Use Blogger Draft ► Yes.</p>
<p>Since then, the HTTPS option will be available for your blog.</p>
<p>2. Now go to Dashboard ► Settings ► Basic ► HTTPS.</p>
<p>3. Change "<strong>HTTPS Availability</strong>" to "<strong>Yes</strong>" and wait few minutes until Blogger generate a SSL certificate for your domain.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/12/Blogger-HTTPS-Availability-for-Custom-Domains.png" alt="Blogger HTTPS Availability for Custom Domains" width="700" height="133" class="alignnone size-full wp-image-6711" /></p>
<p>4. After that you can see the HTTPS Redirect option for your custom domain. change "<strong>HTTPS Redirect</strong>" to "<strong>Yes</strong>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/12/Blogger-HTTPS-Redirect-Option-for-Custom-Domains.png" alt="Blogger HTTPS Redirect Option for Custom Domains" width="700" height="165" class="alignnone size-full wp-image-6712" /></p>
<p>Now you have successfully activated a SSL Certificate / HTTPS for your blog with a custom domain.</p>
<p><em>According to a Blogger developer:</em></p>
<p>Due to the large number of custom domain blogs, Blogger will gradually and safely launch the feature into the default interface starting in the first quarter of 2018.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/activate-https-blogger-custom-domains/">How to Activate HTTPS on Blogger Custom Domains</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/activate-https-blogger-custom-domains/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Malware Checker : Detect Unsafe Websites</title>
		<link>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/</link>
					<comments>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 03 Dec 2015 14:10:55 +0000</pubDate>
				<category><![CDATA[domain]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5557</guid>

					<description><![CDATA[<p>Google's safe browsing technology provides a great tool called "Malware Checker" to check whether a website is currently dangerous to visit. Google checks billions of URLs per day looking for unsafe websites. Every day, they discover thousands of new unsafe sites, many of which are legitimate websites that have been compromised. When Google detect a [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/">Google Malware Checker : Detect Unsafe Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google's safe browsing technology provides a great tool called "<strong>Malware Checker</strong>" to check whether a website is currently dangerous to visit. Google checks billions of URLs per day looking for unsafe websites. Every day, they discover thousands of new unsafe sites, many of which are legitimate websites that have been compromised. When Google detect a unsafe website, they show a warning on Google Search and in web browsers. You can use Google's Malware Checker visiting here:</p>
<p><a href="https://www.google.com/transparencyreport/safebrowsing/diagnostic/" target="_blank" rel="nofollow">https://www.google.com/transparencyreport/safebrowsing/diagnostic/</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/">Google Malware Checker : Detect Unsafe Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Change Google Account Password</title>
		<link>https://www.bloggertipandtrick.net/change-google-account-password/</link>
					<comments>https://www.bloggertipandtrick.net/change-google-account-password/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 06 Oct 2015 08:21:39 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5511</guid>

					<description><![CDATA[<p>It is good to have a regular change interval for the password of your Google account. To change it, first visit to Google's "Sign-in &#038; security" page: https://myaccount.google.com/security Under "Password &#038; sign-in method" section, Click on "Password". Now you will be asked to confirm your password. After that you can see a form to enter [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-google-account-password/">How To Change Google Account Password</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>It is good to have a regular change interval for the password of your Google account. To change it, first visit to Google's "<strong>Sign-in & security</strong>" page:</p>
<p><a href="https://myaccount.google.com/security" target="_blank" rel="nofollow">https://myaccount.google.com/security</a></p>
<p>Under "<strong>Password & sign-in method</strong>" section, Click on "<strong>Password</strong>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Password-and-sign-in-method.png" alt="Password and sign-in method" width="640" height="389" class="alignnone size-full wp-image-5513" /></p>
<p>Now you will be asked to confirm your password. After that you can see a form to enter your new password.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Enter-and-Confirm-Your-Password.png" alt="Enter and Confirm Your Password" width="700" height="497" class="alignnone size-full wp-image-5512" /></p>
<p><strong>Note:</strong> Make sure you choose a strong password.</p>
<blockquote><p>A strong password contains a mix of numbers, letters, and symbols. It is hard to guess, does not resemble a real word, and is only used for this account.</p></blockquote>
<p>After entering and confirming your new password, click on "<strong>CHANGE PASSWORD</strong>" button.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-google-account-password/">How To Change Google Account Password</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/change-google-account-password/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Enable HTTPS Support in Blogger</title>
		<link>https://www.bloggertipandtrick.net/enable-https-support-in-blogger-blogspot/</link>
					<comments>https://www.bloggertipandtrick.net/enable-https-support-in-blogger-blogspot/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 01 Oct 2015 03:45:22 +0000</pubDate>
				<category><![CDATA[domain]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5503</guid>

					<description><![CDATA[<p>HTTPS (Hypertext Transfer Protocol Secure) is an internet communication protocol that protects the integrity and confidentiality of your users' data between the user's computer and the site. For example, when a user enters data into a form on your site in order to subscribe to updates or purchase a product, HTTPS protects that user's personal [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/enable-https-support-in-blogger-blogspot/">How To Enable HTTPS Support in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>HTTPS (Hypertext Transfer Protocol Secure)</strong> is an internet communication protocol that protects the integrity and confidentiality of your users' data between the user's computer and the site. For example, when a user enters data into a form on your site in order to subscribe to updates or purchase a product, HTTPS protects that user's personal information between the user and the site. <a href="https://support.google.com/webmasters/answer/6073543" target="_blank" rel="nofollow">Learn more about HTTPS</a>.</p>
<p>To <strong>enable HTTPS for your Blogger blog</strong> follow the steps given below:</p>
<p>1. Sign in to your Blogger account.</p>
<p>2. Select the blog (clicking on the name of your blog) to enable HTTPS support.</p>
<p>3. Now go to "<strong>Settings</strong>" &gt; "<strong>Basic</strong>" &gt; "<span style="color: #ff0000;"><strong>HTTPS Settings</strong></span>".</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5505" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Blogger-HTTPS-Setting.png" alt="Blogger HTTPS Setting" width="700" height="171" /></p>
<p>4. In "<span style="color: #ff0000;"><strong>HTTPS Availability</strong></span>", select "<span style="color: #008000;"><strong>Yes</strong></span>".</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5506" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Enable-HTTPS-Support-in-Blogger.png" alt="Enable HTTPS Support in Blogger" width="700" height="171" /></p>
<p>When you enable HTTPS, your blog will become accessible over <span style="text-decoration: underline;">both</span> <strong>HTTP</strong> and <strong>HTTPS</strong> connections.</p>
<p>Visitors can view your blog over an encrypted connection by visiting <span style="text-decoration: underline;"><strong><span style="color: #ff00ff; text-decoration: underline;">https</span>://YOURBLOG.blogspot.com</strong></span>.</p>
<p><strong>Note:</strong> HTTPS will not be available for blogs with a custom domain. (Currently, HTTPS is only supported for Blogspot domain blogs.)</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5507" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/HTTPS-Enabled-in-Blogger.png" alt="HTTPS Enabled in Blogger" width="700" height="201" /></p>
<p>To disable HTTPS, follow the 1, 2 and 3 steps again and select "<strong>No</strong>" for HTTPS Availability. If you disable HTTPS, visitors will be redirected to the unencrypted HTTP version of your blog.</p>
<p>Read more about <a href="https://googleonlinesecurity.blogspot.com/2015/09/https-support-coming-to-blogspot.html" target="_blank" rel="nofollow">HTTPS support coming to Blogspot</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/enable-https-support-in-blogger-blogspot/">How To Enable HTTPS Support in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/enable-https-support-in-blogger-blogspot/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>10+ Best Free WordPress Security Plugins</title>
		<link>https://www.bloggertipandtrick.net/best-free-wordpress-security-plugins/</link>
					<comments>https://www.bloggertipandtrick.net/best-free-wordpress-security-plugins/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 28 May 2015 04:25:40 +0000</pubDate>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5399</guid>

					<description><![CDATA[<p>WordPress itself is a very secure platform. But WordPress sites can be an easy target for attacks because of the themes and plugin vulnerabilities, weak passwords and obsolete software. On average, thousands of websites are hacked each day. So if you are running your website on WordPress, securing your website as much as possible is [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/best-free-wordpress-security-plugins/">10+ Best Free WordPress Security Plugins</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress itself is a very secure platform. But WordPress sites can be an easy target for attacks because of the themes and plugin vulnerabilities, weak passwords and obsolete software. On average, thousands of websites are hacked each day. So if you are running your website on WordPress, securing your website as much as possible is an essential task. Here I have listed most popular and very good free WordPress security plugins for your website. By using this plugins, it will help you to add an extra security to your site with a lot of good security practices.</p>
<h3 class="infohead">Wordfence Security</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Wordfence-Security.jpg" alt="Wordfence Security" width="590" height="191" class="infoimg" /></p>
<p>Wordfence Security is a free enterprise class security and performance plugin that makes your site up to 50 times faster and more secure. Wordfence starts by checking if your site is already infected. It will do a deep server-side scan of your source code comparing it to the Official WordPress repository for core, themes and plugins.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/wordfence/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">iThemes Security</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/iThemes-Security.jpg" alt="iThemes Security" width="590" height="191" class="infoimg" /></p>
<p>An easiest, most effective way to secure WordPress in seconds. iThemes Security (formerly Better WP Security) gives you over 30+ ways to secure and protect your WordPress site.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/better-wp-security/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">All In One WP Security & Firewall</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/All-In-One-WP-Security-Firewall.jpg" alt="All In One WP Security and Firewall" width="590" height="191" class="infoimg" /></p>
<p>All In One WP Security & Firewall is comprehensive, user-friendly, all in one WordPress security and firewall plugin for your site. It reduces security risk by checking for vulnerabilities, and by implementing and enforcing the latest recommended WordPress security practices and techniques.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">BulletProof Security</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/BulletProof-Security.jpg" alt="BulletProof Security" width="590" height="191" class="infoimg" /></p>
<p>BulletProof Security comes with features such as one-click setup wizard, .htaccess website security protection (firewalls), login security & monitoring, db backup features, db table prefix changer, security logging, http error logging, frontend|backend maintenance mode and more.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/bulletproof-security/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Sucuri Security</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Sucuri-Security.jpg" alt="Sucuri Security" width="590" height="191" class="infoimg" /></p>
<p>The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/sucuri-scanner/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Acunetix WP Security</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Acunetix-WP-Security.jpg" alt="Acunetix WP Security" width="590" height="191" class="infoimg" /></p>
<p>Acunetix WP Security plugin is a free and comprehensive security tool that helps you secure your WordPress installation and suggests corrective measures for: securing file permissions, security of the database, version hiding, WordPress admin protection and lots more.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/wp-security-scan/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">BruteProtect</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/BruteProtect.jpg" alt="BruteProtect" width="590" height="191" class="infoimg" /></p>
<p>BruteProtect is a cloud-powered Brute Force attack prevention plugin and the best protection against botnet attacks.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/bruteprotect/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">AntiVirus</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/AntiVirus.jpg" alt="AntiVirus" width="590" height="191" class="infoimg" /></p>
<p>Useful plugin that will scan your theme templates for malicious injections. It has features like virus alert in the admin bar, cleaning up after plugin removal, daily scan with email notifications, database tables and theme templates checks, whitelist solution, manual check of template files with alerts on suspected cases and more.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/antivirus/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Simple Security Firewall</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Simple-Security-Firewall.jpg" alt="Simple Security Firewall" width="590" height="191" class="infoimg" /></p>
<p>Comprehensive and Easy-To-Use WordPress Security - Comes With Business Grade Support, with no "premium" restrictions.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/wp-simple-firewall/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Login LockDown</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Login-LockDown.jpg" alt="Login LockDown" width="590" height="191" class="infoimg" /></p>
<p>Login LockDown records the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/login-lockdown/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">BBQ: Block Bad Queries</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/BBQ-Block-Bad-Queries.jpg" alt="BBQ- Block Bad Queries" width="590" height="191" class="infoimg" /></p>
<p>Block Bad Queries (BBQ) is a simple script that protects your website against malicious URL requests. BBQ checks all incoming traffic and quietly blocks bad requests containing nasty stuff like eval(, base64_, and excessively long request-strings. This is a simple yet solid solution that works great for sites where .htaccess is not available.</p>
<p><a class="infobt" href="https://wordpress.org/plugins/block-bad-queries/" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Premium WordPress Security Plugins</h3>
<p>Above security plugins are free and very good. But if you need a premium WordPress security bundle with great support, check below security suits. They will provide great protection to your site.</p>
<h3 class="infohead">Security Ninja Plugins Bundle</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Security-Ninja-Plugins-Bundle.jpg" alt="Security Ninja Plugins Bundle" width="590" height="300" class="infoimg" /></p>
<p>Security Ninja bundle includes these plugins: Security Ninja, Login Ninja, Core Scanner add-on for SN, Scheduled Scanner add-on for SN, Events Logger add-on for SN, Malware Scanner add-on for SN.</p>
<p><a class="infobt" href="http://codecanyon.net/item/security-ninja-plugins-bundle/8926745?ref=wam8387" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Swift Security Bundle</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Swift-Security-Bundle.jpg" alt="Swift Security Bundle" width="590" height="300" class="infoimg" /></p>
<p>With the Swift Security plugin you can make your WordPress website more secure with a single click. A great advantage of the plugin is that you don’t need any special technical knowledge. Swift Security bundle includes these plugins - Hide WordPress, Firewall, Code Scanner</p>
<p><a class="infobt" href="http://codecanyon.net/item/swift-security-bundle-hide-wordpress-firewall-code-scanner/10143693?ref=wam8387" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<h3 class="infohead">Smart Security Tools</h3>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/05/Smart-Security-Tools.jpg" alt="Smart Security Tools" width="590" height="300" class="infoimg" /></p>
<p>Smart Security Tools is a powerful plugin for improving security of your WordPress powered website. Plugin contains collection of tweaks and tools for extra security protection along with Security Advisor that can help you determine what needs to be done.</p>
<p><a class="infobt" href="http://codecanyon.net/item/smart-security-tools/6210378?ref=wam8387" rel="nofollow" target="_blank">Download &amp; Info</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/best-free-wordpress-security-plugins/">10+ Best Free WordPress Security Plugins</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/best-free-wordpress-security-plugins/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Block Bad Queries in WordPress</title>
		<link>https://www.bloggertipandtrick.net/how-to-block-bad-queries-in-wordpress/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-block-bad-queries-in-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 17 Mar 2015 03:22:08 +0000</pubDate>
				<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5354</guid>

					<description><![CDATA[<p>When we are running a WordPress websites, we need to protect our websites against malicious URL requests. When I find an easy solution for this, I found a free and very good WordPress plugin called Block Bad Queries (BBQ) to block bad requests automatically. It is a simple and handy PHP script that protects your [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-block-bad-queries-in-wordpress/">How to Block Bad Queries in WordPress</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When we are running a WordPress websites, we need to protect our websites against malicious URL requests. When I find an easy solution for this, I found a free and very good WordPress plugin called <a href="https://wordpress.org/plugins/block-bad-queries/" target="_blank" rel="nofollow">Block Bad Queries (BBQ)</a> to block bad requests automatically. It is a simple and handy PHP script that protects your WordPress website against malicious URL requests. BBQ checks all incoming traffic and quietly blocks bad requests containing nasty stuff like eval(, base64_, and excessively long request-strings.</p>
<p>Features of "Block Bad Queries (BBQ)" plugin as follows:</p>
<ul>
<li>Plug-n-play functionality</li>
<li>No configuration required</li>
<li>Born of simplicity, no frills</li>
<li>Blocks a wide range of malicious requests</li>
<li>Based on the 5G/6G Blacklist</li>
<li>Scans all incoming traffic and blocks bad requests</li>
<li>Works silently behind the scenes to protect your site</li>
<li>Customize blocked strings via Whitelist/Blacklist plugins</li>
</ul>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-block-bad-queries-in-wordpress/">How to Block Bad Queries in WordPress</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-block-bad-queries-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Protect WordPress wp-config.php with .htaccess</title>
		<link>https://www.bloggertipandtrick.net/how-to-protect-wordpress-wp-config-htaccess/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-protect-wordpress-wp-config-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 05 Feb 2015 04:15:59 +0000</pubDate>
				<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5315</guid>

					<description><![CDATA[<p>WordPress is the most popular content management system (CMS) in today. Over 60 million people have chosen WordPress to create their websites or blogs. With this popularity of WordPress, some people try to attack WP websites for whatever reason they see fit. WordPress configuration file (wp-config.php) is the main configuration file in your WordPress website. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-protect-wordpress-wp-config-htaccess/">How to Protect WordPress wp-config.php with .htaccess</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress is the most popular content management system (CMS) in today. Over 60 million people have chosen WordPress to create their websites or blogs. With this popularity of WordPress, some people try to attack WP websites for whatever reason they see fit. WordPress configuration file (wp-config.php) is the main configuration file in your WordPress website. It includes your database username/passwords and many site settings.</p>
<p>In this quick tutorial, I am going to explain how to project your wp-config file using .htaccess.</p>
<p><em>Note:</em> Before editing .htaccess file, please get a backup of it.</p>
<p>Now go to your site "public_html" folder and open .htaccess file for editing.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/edit-wp-htaccess-file.jpg" alt="Protect wp-config file using htaccess" width="599" height="563" class="alignnone size-full wp-image-5317" /></p>
<p>Add this code to into .htaccess and save it.</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;"># to protect wp-config.php
&lt;Files wp-config.php&gt;
	Order Allow,Deny
	Deny from all
&lt;/Files&gt;</pre>
<p>You are done!</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-protect-wordpress-wp-config-htaccess/">How to Protect WordPress wp-config.php with .htaccess</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-protect-wordpress-wp-config-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Hide WordPress Login Errors</title>
		<link>https://www.bloggertipandtrick.net/how-to-hide-wordpress-login-errors/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-hide-wordpress-login-errors/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 18 Jan 2015 01:27:59 +0000</pubDate>
				<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5305</guid>

					<description><![CDATA[<p>When someone failed to login into your WordPress admin area (dashboard), WordPress displays an error message describing the reason for that. Some way these information may be helpful to a hacker to find correct username and password for your WordPress admin area. Look at this example error message: So if you don’t want to reveal [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-hide-wordpress-login-errors/">How to Hide WordPress Login Errors</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When someone failed to login into your WordPress admin area (dashboard), WordPress displays an error message describing the reason for that. Some way these information may be helpful to a hacker to find correct username and password for your WordPress admin area. Look at this example error message:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/01/Wordpress-Login-Error.png" alt="Wordpress Login Error" width="357" height="538" class="alignnone size-full wp-image-5307" /></p>
<p>So if you don’t want to reveal to users that they are using the wrong username or the wrong password, here is a quick tip to hide WordPress login errors. </p>
<p>Paste the following line of code into your theme's functions.php file:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">add_filter('login_errors', create_function('$a', &quot;return null;&quot;));</pre>
<p>Now WordPress login errors will not be displayed when someone enter wrong login details.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/01/Hide-Wordpress-Login-Error.png" alt="Hide WordPress Login Error" width="357" height="480" class="alignnone size-full wp-image-5306" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-hide-wordpress-login-errors/">How to Hide WordPress Login Errors</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-hide-wordpress-login-errors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Block Darodar.com Referral Spam Using .htaccess</title>
		<link>https://www.bloggertipandtrick.net/block-darodar-referral-spam-using-htaccess/</link>
					<comments>https://www.bloggertipandtrick.net/block-darodar-referral-spam-using-htaccess/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 21 Dec 2014 02:46:38 +0000</pubDate>
				<category><![CDATA[security]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5200</guid>

					<description><![CDATA[<p>Can you see fake referral traffic showing up from darodar.com in your website's analytics? Darodar.com is a referrer spam affecting many Google Analytics users. When you try to visit Darodar.com, it redirects you to other website. In my case, it directs me to aliexpress.com. This is how my referral traffic has increased because of darodar.com. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/block-darodar-referral-spam-using-htaccess/">How To Block Darodar.com Referral Spam Using .htaccess</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Can you see fake referral traffic showing up from darodar.com in your website's analytics? Darodar.com is a referrer spam affecting many Google Analytics users. When you try to visit Darodar.com, it redirects you to other website. In my case, it directs me to aliexpress.com.</p>
<p>This is how my referral traffic has increased because of darodar.com. In Google Analytics, I saw this in one of my website.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/12/Darodar-Referral-Spam-Increase.png" alt="Darodar Referral Spam Increase in Google Analytics" width="710" height="252" class="alignnone size-full wp-image-5206" /></p>
<p>Referral details:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/12/Darodar-Referral-Spam-in-Analytics.png" alt="Darodar Referral Spam Details in Analytics" width="1012" height="54" class="alignnone size-full wp-image-5205" /></p>
<p>You can block this Darodar referral spam easily using .htaccess file in your site root.</p>
<p>Copy below code and paste it into your <span style="color: #ff00ff;">.htaccess</span> file:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">SetEnvIfNoCase Referer darodar.com spambot=yes
Order allow,deny
Allow from all
Deny from env=spambot</pre>
<p><span style="color: #ff0000;"><strong>Note:</strong></span> Don't forget to backup your .htaccess file before doing any changes.</p>
<p>Look at the example below:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/12/Add-Darodar-Block-Code-into-htaccess.png" alt="Add Darodar Block Code into htaccess" width="700" height="220" class="alignnone size-full wp-image-5204" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/block-darodar-referral-spam-using-htaccess/">How To Block Darodar.com Referral Spam Using .htaccess</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/block-darodar-referral-spam-using-htaccess/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
