From 55937b0bbaedf86a1115a33db7ff7ef426e183ba Mon Sep 17 00:00:00 2001 From: modeco80 Date: Tue, 22 Aug 2023 19:10:31 -0400 Subject: [PATCH] oops --- src/worker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worker.cpp b/src/worker.cpp index 85d055e..0246702 100644 --- a/src/worker.cpp +++ b/src/worker.cpp @@ -76,7 +76,7 @@ namespace swbf { if(options.exact) { BruteforceForLength(prefix, options.startLength); } else { - for(std::uint32_t i = options.startLength; i < options.endLength; ++i) + for(std::uint32_t i = options.startLength; i <= options.endLength; ++i) BruteforceForLength(prefix, i); }