Skip to content

sescandor/DOTS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proof-of-Concept for DDoS Open Threat Signaling Protocol

Based on protocol specifications found in the IETF DOTS document

Scope:

  • Implement client-server heartbeat communication.
  • Implement client to server mitigation request handling

Done:

  • Initial client and server implementation.
  • Client can consume server messages.
  • Server can consume client messages.
  • Client can now generate heartbeats
  • Client can now process heartbeats from server.
  • Client shuts down channel if it determines that communication channel is lossy.
  • Server can now generate heartbeats
  • Server can now process heartbeats from client.

TODO:

  • Implement "Mitigation Request Handling"
  • Fix SIGINT response issue

Methods for testing:

Method 1) Generate a binary file called "client_messages_file" with:

  • seqno
  • last_client_seqno as data. We can use this file as input to the client for testing. We can then start the DOTSClient to listen on port 9999. We can send a udp packet to this client for testing in this way:

cat client_messages_file | nc -4u -w1 localhost 9999

Method 2) Start a mock server using:

ncat -e /bin/cat -k -u -l 1235

This will echo back any data sent to it. Then, start up the DOTSClient. This should receive its own sequence number believing that it is the server's sequence number

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published