Results 1 to 6 of 6

Thread: Is this the best method?

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    9

    Is this the best method?

    I'm working on the server for a game. Some users have previously barraged me with DOS attacks which have slowed it down and crashed it several times.

    They mainly sent the attacks to my account sign up and login logic for my server, which makes everything else mess up, as I said.

    My question is if I make a datatype specifically used to store and time the requests sent to these (and possibly other) logic gateways will that be enough to supress the attacks?

    VB Code:
    1. Private Type AntiDoS
    2.     HD As Long
    3.     lastTICK As Long
    4. End Type
    5. Dim AntiDoSsignup() As AntiDoS
    6. Dim AntiDoSLogin() As AntiDoS

    the HD is the harddrive hash obtained from the client.

    I was thinking that each time they try signing up, the AntiDoSsignup array would get larger and store that information.

    the last tick will be the time from GetTickCount. my logic would be:

    if they send an attempt more than 3 times within ~1-2 seconds, they will be blocked.

    Is there anything I am overlooking? I was thinking perhaps of analyzing the packets sent from the client to further determine if they were malicious or not.

    Thanks.

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Is this the best method?

    Welcome to the forums.

    Are you looking for a way to combat the sheer number or the malicious nature of these DOS hits?

  3. #3
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770

    Re: Is this the best method?

    Is this a web-based signup procedure?

  4. #4

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    9

    Re: Is this the best method?

    this is software based.. and I would just like to know if that method I explained above would help prevent the automated data sent to those sections messing up or slowing down my code.

  5. #5

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    9

    Re: Is this the best method?

    Quote Originally Posted by Hack
    Welcome to the forums.

    Are you looking for a way to combat the sheer number or the malicious nature of these DOS hits?
    I was hoping I could do both.. but if not then the sheer number.

  6. #6

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    9

    Re: Is this the best method?

    so no one knows how to do it?

    i knew no one could... that is why i posted this.

    nope.. after more than a week,, no one could come up with the best method, or even clarify my notions.
    Last edited by CoiledSpine; May 21st, 2005 at 08:18 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width