When using Cloudflare CDN it is hard to see where attacks on your website are coming from.
tail -30 /var/log/httpd/access_log
<html><body>
<?php
if(isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
$ip = $_SERVER['HTTP_CF_CONNECTING_IP'];
} else {
$ip=$_SERVER['REMOTE_ADDR'];
}
header("Location: /testpage?from=" . $ip);
die();
?>
</body></html>
tail -30 /var/log/httpd/access_log