Hi @iadzemovic,
First check the source you downloaded your child-theme to be sure it’s a safe place.
It’s likely a sign that your website needs to be hardened. Consider the following recommendations:
- Keep everything updated WordPress, themes, and plugins to close security gaps.
- Use plugins such as Solid Security to monitor and protect your site.
- Set file permissions to
644
for files and 755
for directories to limit unauthorized access.
- Add
define('DISALLOW_FILE_EDIT', true);
to wp-config.php
to prevent edits from the admin panel.
- Implement a WAF like Cloudflare or Sucuri to block malicious traffic.
- Restrict access to sensitive files and use IP restrictions for the
wp-admin
area.
- Enable logging for file changes and user activity with plugin like Activity Log
Implementing these measures will help strengthen your site’s security and reduce the risk of attacks.
Thanks