This batch will work as a calculater Encrypter batch will add any digit you putt in the cmd screen.. and the decrypter will subtract the digits which u type in cmd... try this
open notepad copy this command and paste and saveas encrypter.bat
@echo off
title encrypter
:a
set /p number=enter number to encrypt:
set /p key=set key:
set /a ans=%number% + %key%
echo encrypted text is %ans%
pause
cls
goto a
and this commands for decrypter.... make another batch
@echo off
title decrypter
:a
set /p number=enter number to decrypt:
set /p key=enter key:
set /a ans=%number% - %key%
echo decrypted text is %ans%
pause
cls
goto a
ZEESHAN HACKER...
0 comments:
Post a Comment