im trying to make a multihacking tool (ITS ONLY FOR FUN AND NOT TO HACK ANY PCs) in .bat that works when inserted in my code
code :
@echo off
:start (
color 4
cls
title EVOKIN - by laurexs
echo Welcome to
echo.
echo ######## ## ## ####### ## ## #### ## ##
echo ## ## ## ## ## ## ## ## ### ##
echo ## ## ## ## ## ## ## ## #### ##
echo ###### ## ## ## ## ##### ## ## ## ##
echo ## ## ## ## ## ## ## ## ## ####
echo ## ## ## ## ## ## ## ## ## ###
echo ######## ### ####### ## ## #### ## ##
echo the multi-hacking console by laurexs
echo.
echo please read all the info by typing info before use
echo Tip : type help for commands
call :root
)
:root (
echo.
set c=
set /P c= "<%username%|user>"
)
if /I "%c%" equ "help" (
echo.
echo bruteforce - launches a brute force attack
echo clear comands - clears everythng except the start menu
goto root
)
if /I "%c%" equ "bruteforce" (
cls
echo Info: you need the official password cracker on your desktop
call C:Users%username%desktopPassword_Cracker
)
if /I "%c%" equ "info" (
cls
color 0F
echo Add all of the programs on your
echo desktop that came in the package
echo else some tools wont work.
echo this will disapear after 10 seconds
timeout /t 10 /nobreak >nul
goto start
)
if /I "%c%" equ "clear comands" (
goto start
)
if /I "%c%" equ "scan IPs" (
:: i need the ip scan code here
)
if "%c%" neq "help" (
echo.
echo the command "%c%" is not valid try typing help for commands
goto root
)
if "%c%" neq "bruteforce" (
echo.
echo the command "%c%" is not valid try typing help for commands
goto root
)
if "%c%" neq "info" (
echo.
echo the command "%c%" is not valid try typing help for commands
goto root
)
if "%c%" neq "clear comands" (
echo.
echo the command "%c%" is not valid try typing help for commands
goto root
)
if "%c%" neq "scan IPs" (
echo the command "%c%" is not valid try typing help for commands
)
:: dont mind my english im not that good at it :)
thats it and for the brutefoce comand i have a seperate file bc it doesnt work in here 🙂
i tried to do the wmic but i dont understand what all of it means and i want it all to be filtered (idc what will you use to scan the ips) and plese make me an explanation what ewerything means if you did not filter it all i will filter it myself.
Laurynas Kvedaravicius is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.