我在这里使用了一些 goto,但是每当我尝试该文件时,它会在尝试 :brutus 之前直接转到 :john。为什么会这样,我该如何解决?
@echo off
echo ---------------------------
echo System Online
echo ---------------------------
echo.
echo Select Tool:
goto :toolselect
:toolselect
set /p choosetool=Enter a number to select Tool:
if %choosetool%=='1' goto :hydra
if %choosetool%=='2' goto :john
if %choosetool%=='3' goto :brutus
if %choosetool%=='4' goto :nmap
if %choosetool%=='5' goto :python
if %choosetool%=='' goto :exit
:john
start OpenJohn.bat
:brutus
start C:\Users\user\Desktop\Tools\Brutus.lnk