From 196dd3baf215e8fb268106726bf4434d4bdc3e34 Mon Sep 17 00:00:00 2001 From: DAProgs Date: Wed, 11 Mar 2026 20:59:20 -0400 Subject: [PATCH] 2603.4 - Slowing down connections more --- portspoof_py/__init__.py | 2 +- portspoof_py/server.py | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/portspoof_py/__init__.py b/portspoof_py/__init__.py index 4a89ef4..e2d2c96 100644 --- a/portspoof_py/__init__.py +++ b/portspoof_py/__init__.py @@ -1,2 +1,2 @@ """portspoof_py — asyncio Python rewrite of the portspoof TCP honeypot.""" -__version__ = '2603.3' +__version__ = '2603.4' diff --git a/portspoof_py/server.py b/portspoof_py/server.py index b898f15..f9e0459 100644 --- a/portspoof_py/server.py +++ b/portspoof_py/server.py @@ -7,8 +7,8 @@ import socket import struct from typing import Optional -_DELAY_MIN = 0.2 # seconds -_DELAY_MAX = 2.0 # seconds +_DELAY_MIN = 1.0 # seconds +_DELAY_MAX = 5.0 # seconds from .config import Config from .logger import Logger diff --git a/pyproject.toml b/pyproject.toml index 72d0b97..214f1df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "portspoof-py" -version = "2603.3" +version = "2603.4" description = "Python asyncio rewrite of the portspoof TCP honeypot" readme = "README.md" requires-python = ">=3.11"