Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Mysterious requests?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Mysterious requests?

FoulFoul Member
edited September 2014 in Help

So i'm using nginx and i see this being spammed in access.log

92.51.245.87 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
190.60.39.188 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
190.8.167.130 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
81.24.247.34 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
193.140.229.249 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
193.140.229.249 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5268 "-" "-"
190.0.16.58 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
41.231.53.43 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
41.231.53.40 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
178.205.252.51 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"
41.231.53.40 - - [14/Sep/2014:11:50:35 -0400] "GET /index.php HTTP/1.1" 200 5262 "-" "-"

What exactly is "5262"

I know 200 is the status code... but what is 5262?

Is there a way i can block this crap?

Comments

  • The last part indicates the size of the object returned to the client, not including the response headers. If no content was returned to the client, this value will be "-". To log "0" for no content, use %B instead.

    http://httpd.apache.org/docs/2.2/logs.html

  • MunMun Member
    edited September 2014

    5262 is the size of the file being sent to the client, what are you running n your website?

    You are running a forum aren't you?

  • Well, i managed to fix the issue by changing the index file to a different name, and restarting nginx.

    @Mun
    I'm actually running a game site (tetris styled). And thanks @taronyu, but however i'm using nginx so it's kinda different.

    Thanks for clearing it up @Mun!

    Mods, please close this 8D

  • I don't think you fixed it, just delayed it.

    Most of those requests are from spam bots,

    you may want to run: https://cdn.content-network.net/nbl/nbl.sh.txt

    that daily.

    Thanked by 1Foul
  • @Foul said:
    Well, i managed to fix the issue by changing the index file to a different name, and restarting nginx.

    Mun
    I'm actually running a game site (tetris styled). And thanks taronyu, but however i'm using nginx so it's kinda different.

    Thanks for clearing it up Mun!

    Mods, please close this 8D

    I don't get it... you can't "fix" this? It is just the size of the file being sent to your client like @mun and I already said.

    Thanked by 1Dylan
Sign In or Register to comment.