I made all this stuff ^^, sharing because eventually someone might need or will learn something from it.
Intrafile Searcher:
Batch Programmer:
Rock Paper and Scissor:
Seizure (Only for the lolz):
Intrafile Searcher:
Code:
@echo off
color 0f
:start
cls
echo By Worms - www.hacking.rs
echo.
set /p palavra=What word are you looking for:
echo.
:inverte
set /p inverter=Would you like to use reverse scan?(y/n):
if %inverter% equ y goto aa
if %inverter% equ n goto aa
goto inverte
:aa
echo.
:caps
set /p caps=Ignore case sensitive?(y/n):
if %caps% equ y goto bb
if %caps% equ n goto bb
goto caps
:bb
echo.
set /p arquivo=File to be scanned:
echo.
set /p relat=Save .txt report after scan?(y/n):
if %inverter% equ s goto inv
goto naoinv
:inv
set %inv%=/c
:naoinv
if %caps% equ s goto igno
goto find
:igno
set igno=/i
:find
echo.
find %inv% /n %igno% "%palavra%" %arquivo%
if %relat% equ n goto nrel
find %inv% /n %igno% "%palavra%" %arquivo% >> FileScan.txt
:nrel
echo.
set /p pause=Press Enter to start a new scan:
goto start
Batch Programmer:
Code:
@echo off
color 0a
title Worms .Bat Programer
echo.
echo Welcome to Worms.Bat Programer
echo.
echo Type a title for your Program:
set /p name=Name:
echo.
echo @echo off > %name%.bat
echo title %name% >> %name%.bat
echo %name%.bat Is on the same folder that M.BP is now!
echo.
:bcolor
cls
echo.
echo What is the Background Color of your Program:
echo.
echo 0 = Black
echo 1 = Blue
echo 2 = Green
echo 3 = Aqua
echo 4 = Red
echo 5 = Purple
echo 6 = Yellow
echo 7 = White
echo 8 = Gray
echo 9 = Light Blue
echo a = Light Green
echo b = Light Aqua
echo c = Light Red
echo d = Light Purple
echo e = Light Yellow
echo f = Bright White
echo.
set /p bcolor=Background Color:
if %bcolor% == 0 goto tcolor
if %bcolor% == 1 goto tcolor
if %bcolor% == 2 goto tcolor
if %bcolor% == 3 goto tcolor
if %bcolor% == 4 goto tcolor
if %bcolor% == 5 goto tcolor
if %bcolor% == 6 goto tcolor
if %bcolor% == 7 goto tcolor
if %bcolor% == 8 goto tcolor
if %bcolor% == 9 goto tcolor
if %bcolor% == a goto tcolor
if %bcolor% == b goto tcolor
if %bcolor% == c goto tcolor
if %bcolor% == d goto tcolor
if %bcolor% == e goto tcolor
if %bcolor% == f goto tcolor
msg * Color not found!
goto bcolor
:tcolor
cls
echo.
echo What is the Text Color of your Program:
echo.
echo 0 = Black
echo 1 = Blue
echo 2 = Green
echo 3 = Aqua
echo 4 = Red
echo 5 = Purple
echo 6 = Yellow
echo 7 = White
echo 8 = Gray
echo 9 = Light Blue
echo a = Light Green
echo b = Light Aqua
echo c = Light Red
echo d = Light Purple
echo e = Light Yellow
echo f = Bright White
echo.
set /p tcolor=Text Color:
if %tcolor% == 0 goto color
if %tcolor% == 1 goto color
if %tcolor% == 2 goto color
if %tcolor% == 3 goto color
if %tcolor% == 4 goto color
if %tcolor% == 5 goto color
if %tcolor% == 6 goto color
if %tcolor% == 7 goto color
if %tcolor% == 8 goto color
if %tcolor% == 9 goto color
if %tcolor% == a goto color
if %tcolor% == b goto color
if %tcolor% == c goto color
if %tcolor% == d goto color
if %tcolor% == e goto color
if %tcolor% == f goto color
msg * Color not found!
goto tcolor
:color
echo color %bcolor%%tcolor% >> %name%.bat
:start
set command=123456
cls
echo.
time /t
date /t
echo.
echo Choose A Command number to add:
echo 1 - Copy * To *
echo 2 - Delete *
echo 3 - Make Directory
echo 4 - Rename *
echo 5 - Move *
echo 6 - Change Current Directory
echo 7 - Show Message (In Console)
echo 8 - Show Message (Pop Up)
echo 9 - Mark Spot
echo 10 - Go to Spot
echo 11 - Release IP
echo 12 - Renew IP
echo 13 - Flush DNS
echo 14 - Shutdown (Time+Coment)
echo 15 - Kill Task *
echo 16 - Change Time
echo 17 - Change Date
echo 18 - Start *
echo 19 - Type your own Code
echo.
set /p command=Command to add:
if %command% == 1 goto cmd1
if %command% == 2 goto cmd2
if %command% == 3 goto cmd3
if %command% == 4 goto cmd4
if %command% == 5 goto cmd5
if %command% == 6 goto cmd6
if %command% == 7 goto cmd7
if %command% == 8 goto cmd8
if %command% == 9 goto cmd9
if %command% == 10 goto cmd10
if %command% == 11 goto cmd11
if %command% == 12 goto cmd12
if %command% == 13 goto cmd13
if %command% == 14 goto cmd14
if %command% == 15 goto cmd15
if %command% == 16 goto cmd16
if %command% == 17 goto cmd17
if %command% == 18 goto cmd18
if %command% == 19 goto cmd19
msg * Command not found!
goto start
:cmd1
cls
echo.
echo What is the file that you want to copy?
set /p cFile=File :
echo.
echo Where do you want to copy it?
set /p cPath=Folder Path:
echo copy %cFile% %cPath% >> %name%.bat
msg * Copy Command Added!
goto start
:cmd2
cls
echo.
echo What is the file that you want to delete?
set /p Del=File to Delete:
echo del %Del% >> %name%.bat
msg * Delete Command Added!
goto start
:cmd3
cls
echo.
echo What is the name of the folder?
set /p Fpan=Name:
echo md %Fpan% >> %name%.bat
msg * Make Directory Command Added!
goto start
:cmd4
cls
echo.
echo What is the file that you want to Rename?
set /p rFile=Source File:
echo.
echo What is the new name for it?
set /p rNname=New Name:
echo rename %rFile% %rNname% >> %name%.bat
msg * Rename Command Added!
goto start
:cmd5
cls
echo.
echo What is the file that you want to Move?
set /p mFile=File:
echo.
echo Where do you want to move it to?
set /p mLoc=New Location:
echo move %mFile% %mLoc% >> %name%.bat
msg * Move Command Added!
goto start
:cmd6
cls
echo.
echo Where do you want to be the new Directory?
set /p cdPath=New Directory:
echo cd /d %cdPath% >> %name%.bat
msg * Change Directory Command Added!
goto start
:cmd7
cls
echo.
echo What message do you want to show?
set /p eMsg=Message:
echo echo %eMsg% >> %name%.bat
msg * Message Command Added!
goto start
:cmd8
cls
echo.
echo What message do you want to show?
set /p mMsg=Message:
echo msg * %mMsg% >> %name%.bat
msg * Message Command Added!
goto start
:cmd9
cls
echo.
echo What the Loop name?
set /p Lspot=Loop Name:
echo :%Lspot% >> %name%.bat
msg * Loop Spot Command Added!
goto start
:cmd10
cls
echo.
echo What the Loop name (To Go)?
set /p Lspotgo=Loop Name:
echo goto %Lspotgo% >> %name%.bat
msg * Go To Loop Spot Command Added!
goto start
:cmd11
cls
echo.
echo ipconfig /release >> %name%.bat?
msg * Release IP Command Added!
goto start
:cmd12
cls
echo.
echo ipconfig /renew >> %name%.bat?
msg * Renew IP Command Added!
goto start
:cmd13
cls
echo.
echo ipconfig /flushdns >> %name%.bat?
msg * Flush DNS Command Added!
goto start
:cmd14
cls
echo How many Hours?
set /p hour=Hours:
set /a shour=%hour%*3600
echo.
echo How many Minutes?
set /p min=Minutes:
set /a smin=%min%*60
echo.
echo How many seconds?
set /p sec=Seconds:
set /a sec=%shour%+%smin%+%sec%
echo.
echo Input a Comment:
set /p comen=Comment:
echo.
echo shutdown /s /t %sec% /c "%comen%" /f >> %name%.bat
msg * Shutdown command in %sec% Seconds added!
goto start
:cmd15
cls
echo.
echo What is the name of the Task?
set /p taskk=Task:
echo taskkill /f /im %taskk% >> %name%.bat >> %name%.bat
msg * Task Kill Command added!
goto start
:cmd16
cls
echo.
echo What is the new Computer time (hh:mm:ss)?
set /p stime=Time:
echo time %stime% >> %name%.bat
msg * Time Change Command added!
goto start
:cmd17
cls
echo.
echo What is the new Computer date (dd-mm-yyyy)?
set /p sdate=Date:
echo date %sdate% >> %name%.bat
msg * Date Change Command added!
goto start
:cmd18
cls
echo.
echo What is the File to Start??
set /p startfile=File:
echo start %startfile% >> %name%.bat
msg * Start File Command added!
goto start
:cmd19
cls
echo.
echo Go typing you own code, write "stopwriting" without quotation marks to go back to the menu
echo.
:type
set /p ocode=
if %ocode% == stopwriting goto start
echo %ocode% >> %name%.bat
goto type
Rock Paper and Scissor:
Code:
@echo off
color 0a
title Rock Paper and Scissor
set msg=.
set pp=0
set pc=0
set tot=0
set emp=0
:start
set / emp=%tot%-%nep%
cls
echo.
echo Worms - www.hacking.rs
echo.
echo%msg%
echo.
echo Total %tot% - Ties %emp%
echo.
echo Wins %pp% - Loses %pc%
echo.
echo Choose:
echo.
echo 1 [Rock]
echo 2 [Paper]
echo 3 [Scissor]
echo.
set /p pessoa=Number=
echo.
if %pessoa% EQU 1 goto comp
if %pessoa% EQU 2 goto comp
if %pessoa% EQU 3 goto comp
goto start
:comp
set comp=%random%
if %comp% LSS 10922 goto pedra
if %comp% LSS 21844 goto papel
if %comp% LSS 32767 goto tesoura
echo.
:pedra
if %pessoa% EQU 1 goto ep
if %pessoa% EQU 2 goto gp
if %pessoa% EQU 3 goto pp
:gp
set msg= The computer chosen Rock. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:pp
set msg= The computer chosen Rock. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:ep
set msg= The computer chosen Rock. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
goto start
:papel
if %pessoa% EQU 1 goto ppp
if %pessoa% EQU 2 goto epp
if %pessoa% EQU 3 goto gpp
:gpp
set msg= The computer chosen Paper. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:ppp
set msg= The computer chosen Paper. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:epp
set msg= The computer chosen Paper. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
echo.
goto start
:tesoura
if %pessoa% EQU 1 goto gt
if %pessoa% EQU 2 goto pt
if %pessoa% EQU 3 goto et
:gt
set msg= The computer chosen Scissor. You Win!
set /a tot=%tot%+1
set /a pp=%pp%+1
goto start
:pt
set msg= The computer chosen Scissor. You Lost!
set /a tot=%tot%+1
set /a pc=%pc%+1
goto start
:et
set msg= The computer chosen Scissor. Tie!
set /a tot=%tot%+1
set /a emp=%emp%+1
goto start
Seizure (Only for the lolz):
Code:
@echo off
:aa
set /a oi=%random%/3300
set /a tchau=%random%/3300
color %oi%%tchau%
echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%
goto aa