Slashdot Mirror


User: lagfest

lagfest's activity in the archive.

Stories
0
Comments
107
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 107

  1. Re:It's Called PRT on Robocabs Coming to Europe · · Score: 1

    And if you don't want to wait a few years, the Copenhagen metro is fully automated. http://m.dk/en/welcome

  2. Re:If the email program is called Bifrost on What's In Your Inbox? · · Score: 2, Informative

    Marvel fans? Last time i checked, Nordic mythology wasn't invented by marvel.

  3. Re:Self Healing? on Networked Landmines Work Together · · Score: 1
    U.S. mines will kill:
    • Enemy soldiers
    • Enemy vehicles
    • U.S. soldiers
    • U.S. vehicles
    • Women
    • Children
    • Medical personnel
    • Animals
    Yay, mines won't kill me \o/

    /you sexist insensitive clod
  4. Re:Incomplete Summary on Plasma Needle to Replace Dentist's Drill · · Score: 3, Insightful

    "Nothing is poison and everything is poison; the difference is in the dose." - Paracelsus

  5. Re:I've never been so embarrassed in my life. on How Google Ranks Videos · · Score: 2, Funny

    Oh it's not that bad, only 44 out of the top 60 vids are Crazy Frog related.
    I, for one, welcome our new Crazy Frog overlord.

  6. Re:INIT floods on Better Networking with SCTP · · Score: 5, Informative
    Who says you have to track the cookies? Just make a hash of the client's ip address, port, and a key that changes every 20 seconds. Now you only have to save a history of the three latest keys.

    In fact, that's pretty close to how it's done according to SCTP for beginners
    The server receives an association setup request (an INIT chunk) usually in the CLOSED state, and analyzes the data contained in that chunk. From that it generates all the values needed at its side to enter an established association, and generates a secure hash of these values and a secret key (e.g. with the MD5 or SHA-1 algorithms). The values are then put into the so-called COOKIE, along with the derived message authentication code (MAC). This COOKIE is returned to the sender of the INIT chunk in an INIT-ACK chunk. The server remains in the CLOSED state, and forgets all about the received INIT chunk.
  7. Re:INIT floods on Better Networking with SCTP · · Score: 5, Insightful

    lets change the quote scope a little:

    SCTP protects against this type of attack through a four-way handshake and the introduction of a cookie. In SCTP, a client initiates a connection with an INIT packet. The server responds with an INIT-ACK, which includes the cookie (a unique context identifying this proposed connection). The client then responds with a COOKIE-ECHO, which contains the cookie sent by the server. At this point, the server allocates the resource for the connection and acknowledges this by sending a COOKIE-ACK to the client.

    Funny how things suddenly makes sense when you read the entire paragraph.