Mobile app version of vmapp.org
Login or Join
Nickens628

: How to stop parallel downloads In my server logs I noticed random sets of IP's originating from china that are downloading the same file of about 16MB every couple of hours, and every time

@Nickens628

Posted in: #Botattack #Download #Files #Hacking

In my server logs I noticed random sets of IP's originating from china that are downloading the same file of about 16MB every couple of hours, and every time the computer downloads it, it starts the download twice, one second apart from each other.

Currently I'm not authorized to rename the file as of yet until I manage to get a hold of the people authorized to use the file to rename it, so renaming the file will not be a solution for me at this time.

Also, I don't want to just block IP's for a period of time because the IP's could be computers of legitimate users that are temporarily hijacked.

Is there something simple I can do to stop this from happening, or do I have to rewrite half the apache server myself with more of my own programming?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Nickens628

1 Comments

Sorted by latest first Latest Oldest Best

 

@LarsenBagley505

Unfortunately there is no way to prevent a file from being download twice in parallel. The HTTP protocol is stateless and as such each and every request is considered its own request for the file and the web server does not track file requests referenced against other requests for the same file.

If this becomes a substantial issue then the only way to combat it is to deny access to your server either through a firewall or through htaccess rules from the offending IP address(es).

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme