From 94916113d2fa721a14b0ed8c67246190adde2f10 Mon Sep 17 00:00:00 2001 From: patterniha <71074308+patterniha@users.noreply.github.com> Date: Thu, 10 Jul 2025 12:30:09 +0330 Subject: [PATCH] fix random length --- app/reverse/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/reverse/config.go b/app/reverse/config.go index 517b6170..8ce38c9c 100644 --- a/app/reverse/config.go +++ b/app/reverse/config.go @@ -9,6 +9,7 @@ import ( func (c *Control) FillInRandom() { randomLength := dice.Roll(64) + randomLength++ c.Random = make([]byte, randomLength) io.ReadFull(rand.Reader, c.Random) }