hello i´ve got a problem with a batch file. it should read out the ips from a text file and then do 3 commands in a loop.
Normaly the IP should be inserted in %%a but this dont work. i always get
c:\haxx\>brute.exe %a administrator
The batch file looks like this:
If "scan.txt" =="" goto EXIT
for /f "eol=; tokens=1*" %%a in (scan.txt) do call :sub
:sub
brute.exe %%a administrator
sleep 5
pskill brute.exe
i hope someone could help me




