From 2d36e4c24dee8116ed0c912ae3ca1e1e7b63db63 Mon Sep 17 00:00:00 2001 From: Connor Nelson Date: Mon, 24 Feb 2025 16:53:52 -0700 Subject: [PATCH] Add basic descriptions to DOS --- intercepting-communication/dos-1/DESCRIPTION.md | 2 ++ intercepting-communication/dos-2/DESCRIPTION.md | 4 ++++ intercepting-communication/dos-3/DESCRIPTION.md | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/intercepting-communication/dos-1/DESCRIPTION.md b/intercepting-communication/dos-1/DESCRIPTION.md index e69de29b..088b6e07 100644 --- a/intercepting-communication/dos-1/DESCRIPTION.md +++ b/intercepting-communication/dos-1/DESCRIPTION.md @@ -0,0 +1,2 @@ +The client at 10.0.0.3 is communicating with the server at 10.0.0.2 on port 31337. +Deny this service. diff --git a/intercepting-communication/dos-2/DESCRIPTION.md b/intercepting-communication/dos-2/DESCRIPTION.md index e69de29b..5deee2dc 100644 --- a/intercepting-communication/dos-2/DESCRIPTION.md +++ b/intercepting-communication/dos-2/DESCRIPTION.md @@ -0,0 +1,4 @@ +The client at 10.0.0.3 is communicating with the server at 10.0.0.2 on port 31337. +Deny this service. + +This time the server forks a new process for each client connection. diff --git a/intercepting-communication/dos-3/DESCRIPTION.md b/intercepting-communication/dos-3/DESCRIPTION.md index e69de29b..c95af554 100644 --- a/intercepting-communication/dos-3/DESCRIPTION.md +++ b/intercepting-communication/dos-3/DESCRIPTION.md @@ -0,0 +1,4 @@ +The client at 10.0.0.3 is communicating with the server at 10.0.0.2 on port 31337. +Deny this service. + +This time the server forks a new process for each client connection, and limits each session to 1 second.