0

In Apache access log I have these lines repeating all over the file:

186.44.190.132 - - [22/Feb/2013:23:41:34 +0100] "POST /includes/wishlistcwh.php HTTP/1.1" 200 42416 "-" "Mozilla/5.0"
151.246.16.245 - - [22/Feb/2013:23:41:32 +0100] "POST /includes/wishlistcwh.php HTTP/1.1" 200 42416 "-" "Mozilla/5.0"
186.44.190.132 - - [22/Feb/2013:23:41:40 +0100] "POST /includes/wishlistcwh.php HTTP/1.1" 200 42416 "-" "Mozilla/5.0"

It's an attack to the website, but the thing is that "/includes/wishlistcwh.php" doesn't exist in the server and Apache is returning 200 status.

What am I missing here?

1 Answers1

1

This happens when you have a mod_rewrite rule that handles requests for files that don't exist.

Jenny D
  • 27,358
  • 21
  • 74
  • 110