<?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>Wordpress Archives - Rhein-Ruhr-Informatik</title>
	<atom:link href="https://rhein-ruhr-informatik.de/en/category/articles/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://rhein-ruhr-informatik.de/en/category/articles/wordpress/</link>
	<description></description>
	<lastbuilddate>Tue, 13 May 2025 11:13:41 +0000</lastbuilddate>
	<language>en-US</language>
	<sy:updateperiod>
	hourly	</sy:updateperiod>
	<sy:updatefrequency>
	1	</sy:updatefrequency>
	

<image>
	<url>https://rhein-ruhr-informatik.de/wp-content/uploads/2025/03/cropped-favicon-32x32.png</url>
	<title>Wordpress Archives - Rhein-Ruhr-Informatik</title>
	<link>https://rhein-ruhr-informatik.de/en/category/articles/wordpress/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>So verbessern Sie die WordPress-Sicherheit vor der Veröffentlichung</title>
		<link>https://rhein-ruhr-informatik.de/en/2025/05/14/wordpress-sicherheit/</link>
		
		<dc:creator><![CDATA[Rhein-Ruhr-Informatik]]></dc:creator>
		<pubdate>Wed, 14 May 2025 05:23:21 +0000</pubdate>
				<category><![CDATA[Artikel]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid ispermalink="false">https://rhein-ruhr-informatik.de/?p=795</guid>

					<description><![CDATA[<p>WordPress is a popular CMS, making it an attractive target for attackers. Before releasing a website, security measures should be implemented to protect against vulnerabilities and hacker attacks. The main steps are outlined below. 1. Update WordPress and Plugins. 2. Restrict Access to wp-admin and wp-login.php<a class="moretag" href="https://rhein-ruhr-informatik.de/en/2025/05/14/wordpress-sicherheit/"> Read more&#8230;</a></p>
<p>The post <a href="https://rhein-ruhr-informatik.de/en/2025/05/14/wordpress-sicherheit/">So verbessern Sie die WordPress-Sicherheit vor der Veröffentlichung</a> appeared first on <a href="https://rhein-ruhr-informatik.de/en">Rhein-Ruhr-Informatik</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress is a popular CMS, making it an attractive target for attackers. Before releasing a website, security measures should be implemented to protect against vulnerabilities and hacker attacks. The main steps are outlined below.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img fetchpriority="high" decoding="async" width="554" height="534" src="https://rhein-ruhr-informatik.de/wp-content/uploads/2025/04/image.png" alt="" class="wp-image-796" style="width:421px;height:auto" srcset="https://rhein-ruhr-informatik.de/wp-content/uploads/2025/04/image.png 554w, https://rhein-ruhr-informatik.de/wp-content/uploads/2025/04/image-300x289.png 300w, https://rhein-ruhr-informatik.de/wp-content/uploads/2025/04/image-12x12.png 12w" sizes="(max-width: 554px) 100vw, 554px" /></figure></div>


<h2 class="wp-block-heading">1. Update WordPress and Plugins</h2>



<ul class="wp-block-list">
<li>Keep WordPress, themes, and plugins updated.</li>



<li>Remove unused or outdated plugins and themes.</li>



<li>Use only verified plugins from the official repository.</li>
</ul>



<h2 class="wp-block-heading">2. Restrict Access to <code>wp-admin</code> and <code>wp-login.php</code> beschränken</h2>



<h3 class="wp-block-heading"><code>wp-admin</code> and <code>wp-login.php</code> rename</h3>



<p>The default login pages (<code>/wp-admin</code> and <code>/wp-login.php</code>) make the site vulnerable to brute-force attacks.</p>



<h4 class="wp-block-heading">How to Change the Login Page URL?</h4>



<ul class="wp-block-list">
<li><strong>Using a Plugin</strong> (<a href="https://wordpress.org/plugins/wps-hide-login/">WPS Hide Login</a>)
<ul class="wp-block-list">
<li>Install the plugin and set a new URL (e.g. <code>/secure-login</code>).</li>
</ul>
</li>
</ul>



<ul class="wp-block-list">
<li><strong>Using .htaccess (for Apache)</strong></li>
</ul>



<pre class="wp-block-code"><code>RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-login.php$ &#91;NC]
RewriteRule ^(.*)$ /secure-login &#91;R=301,L]
</code></pre>



<ul class="wp-block-list">
<li><strong>Protect wp-login.php with Basic Authentication</strong></li>
</ul>



<pre class="wp-block-code"><code>&lt;FilesMatch "wp-login.php">
   AuthType Basic
   AuthName "Restricted Access"
   AuthUserFile /etc/apache2/.htpasswd
   Require valid-user
&lt;/FilesMatch>
</code></pre>



<p><strong>Restrict Access to <code>wp-admin</code> for Specific IPs</strong></p>



<p>To allow only certain IP addresses to access wp-admin, add the following code to <code>.htaccess</code> hinzufügen:</p>



<pre class="wp-block-code"><code>&lt;Directory "/var/www/html/wp-admin">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.100 203.0.113.5
&lt;/Directory></code></pre>



<p>Replace <code>192.168.1.100</code> and <code>203.0.113.5</code> with your actual IP addresses.</p>



<h2 class="wp-block-heading">3. <code>xmlrpc.php</code> disable</h2>



<p>The <code>xmlrpc.php</code> file is used for remote management but is often targeted in attacks.</p>



<p>How to Disable It?</p>



<ul class="wp-block-list">
<li><strong>Using .htaccess</strong></li>
</ul>



<pre class="wp-block-code"><code>&lt;Files xmlrpc.php>
   Order Deny,Allow
   Deny from all
&lt;/Files>
</code></pre>



<ul class="wp-block-list">
<li><strong>Using a Plugin</strong>
<ul class="wp-block-list">
<li>Install Disable XML-RPC and activate it</li>
</ul>
</li>
</ul>



<h2 class="wp-block-heading">4. <code>wp-content/uploads/</code> protection</h2>



<p>The directory <code>wp-content/uploads/</code> contains uploaded files and should not execute scripts.</p>



<p>Block PHP Execution in <code>uploads</code> directory</p>



<p><strong>Create or edit .htaccess in uploads</strong></p>



<pre class="wp-block-code"><code>&lt;FilesMatch ".*\.php$">
    Order Deny,Allow
    Deny from all
&lt;/FilesMatch></code></pre>



<p><strong>Check File Accessibility</strong> PHP files in <code>uploads</code> will no longer execute.</p>



<h2 class="wp-block-heading">5. <code>admin</code>- Change the Username</h2>



<p>The default <code>admin</code> user is a common target for attacks.</p>



<h3 class="wp-block-heading">How to Change It?</h3>



<ol class="wp-block-list">
<li><strong>Create a New Admin User</strong> (Users → Add New).</li>



<li><strong>Log Out and Log in with the New Account.</strong>.</li>



<li><strong>Delete admin (Reassign Posts to Another User Before Deleting).</strong></li>
</ol>



<h2 class="wp-block-heading">6. Limit Login Attempts</h2>



<p>Install the <strong>Limit Login Attempts Reloaded</strong> plugin to limit failed login attempts.</p>



<h2 class="wp-block-heading">7. Enforce HTTPS</h2>



<p>Ensure the website runs over HTTPS by installing an SSL certificate.</p>



<h2 class="wp-block-heading">8. Use Cloudflare WAF</h2>



<p>Enable Cloudflare Web Application Firewall (WAF) to prevent attacks such as SQL injections and XSS.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p>Implementing these steps will significantly improve WordPress security before release.</p>



<p></p><p>The post <a href="https://rhein-ruhr-informatik.de/en/2025/05/14/wordpress-sicherheit/">So verbessern Sie die WordPress-Sicherheit vor der Veröffentlichung</a> appeared first on <a href="https://rhein-ruhr-informatik.de/en">Rhein-Ruhr-Informatik</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>