This is a typical AJAX timeout error. The scanner uses AJAX to connect to the /wp-admin/admin-ajax.php script, but the connection is timing out.
If you go to WordPress “Tools > Site Health”, do you see any error?
Regarding duplicator, it’s likely the same issue because a lot of plugins (and WordPress too) uses the AJAX API.
Yes, I checked Site Health, there are NO critical issues.
Also, in my staging environment I deactivated all my plugins, but STILL the problem persists.
What is worth noticing: Sometimes when I click on a page in my WP admin area, I get a white page, as if the page cannot be loaded. This happens inconsistently. It can happen with any page, for example “Pages” or “Menus”.
What can be the reason for this problem?
You need to debug WordPress:
1. Edit your wp-config.php
2. Search for:
define('WP_DEBUG', false);
3. Replace with:
define('WP_DEBUG', true);
4. Add this line below:
define( 'WP_DEBUG_LOG', true );
The error log (if any) will be located in “/wp-content/debug.log”.
You can also install a plugin like https://ww.wp.xz.cn/plugins/query-monitor/