Yes, that's an interesting approach.
Perhaps you could add a feature to search a file with ranges, like NOMACHINE had done in the normal CYCLONE.
No, its a simple batch file you can use it with any tool to avoide duplication of ranges..
@echo off
setlocal enabledelayedexpansion
:: File where scanned ranges are stored
set logfile=C:\Users\Desktop\scanned_range_71.txt
:loop
:: Pick pas from {4,5,6,7} randomly
set /a pas=(%random% %% 4) + 4
:: Generate 9-digit random hex string
set s=abcdef0123456789
set pass=
for /l %%i in (1,1,8) do (
set /a n=!random! %% 16
call set pass=!pass!%%s:~!n!,1%%
)
:: Final range string
set range=%pas%%pass%000000000:%pas%%pass%fffffffff
:: Check if already scanned
findstr /c:"%range%" "%logfile%" >nul
if %errorlevel%==0 (
echo [SKIP] Duplicate range: %range%
) else (
echo [NEW] %range% [Prefix + Suffix]
echo %range%>>"%logfile%"
prefixsuffix.exe --address 1PWo3JeB9jrGwfHDNpdGK54CRas7fsVzXU --prefix 4 --suffix 2 --range %range% --grid 512,512
)
timeout /t 10 >nul
goto loop