Friday, May 28, 2010

(TuT) How to Make A Fake Program

Hey there, I'll be showing you how to make a fake program today.

Q. What is a fake program?

A. A fake program is a program that looks quite realistic[/size] and appealing to the user, it is normally binded with malware or viruses to trick the user into opening the program.


Today, I'll be showing you how to make one in VB 2008.

Download link : Visual Basic 2008




STEP 1 : THE APPEARANCE


Open VB 2008 up. Click Windows Application, name it whatever you want, but for this tutorial, I'll name it "Fake Program 1."

You'll see a square with nothing on it, that's called the form.

On your right, (or left) you'll see a big box, that's called the toolbox.

The toolbox has quite a lot of options in it, such as buttons, textboxes, etc;

There are hundreds of fake programs out there; but today, I'll be making a Myspace Account Cracker.

This will trick the person into downloading and saying "Oh wow! Im gonna hack my friends Myspace! Oh yeah!"

So, now let's start out.

From the toolbox, drag onto the form, 2 textboxes, 2 buttons, 2 labels.

A textbox is a box where you can put text inside, a button, makes a function occur when clicked on, and a label, is just for decoration, :)

Now, the textbox is going to be where the person put's the Myspace user's email. Now, to make our lives easier, put the label beside the textbox, and right click it, and choose properties.

In the properties, you will see a option called "text," in that text, put "Victim's e-mail." The trick to getting a fake program right, is to make it look really good, for example, this won't look good at all compared to "Victim's e-mail," "victimz email."

Compare those two, the first one looks ALOT better.

Now, the second textbox is going to be where the "fake password," pops out.

Now, right click on the first button, and click on properties, and in the text, put "OK," this will "start," our program, and the password will pop out in the textbox.

The second button isn't important at all, it's just a exit button.

In the properties of it, in the text put "Exit."

Now, right click on the form, and in the properties, where it says text, put "Myspace Account Cracker," on show icon, put false. Form border style, fixed single, and show in taskbar, false.



If you want to, you can also put a backround image to make it look a bit more cleaner and nicer, so it will be a bit more convincing.

And, in the properties of our second label, in the text put "password," and put the label right beside the second textbox.





PART 2 : THE UNREAL CODING....

The program isn't actually supposed to crack a Myspace account, it's only supposed to be binded with using a binder. If you are binding a virus with it, you are also going to be using a crypter.

- Binder : Program which binds two files together into one.

- Crypter : Program which makes a program, normally malware, to be undetected by AV's, (Anti - Viruses).

Now, on the first button, double click it, and, put the following code :

Code:
If TextBox1.Text = "" Then
MsgBox("Please enter a valid e-mail.")
Else
TextBox1.Enabled = True
Dim Key As Integer
Key = (Rnd() * 5)
Select Case Key
Case 1
TextBox2.Text = "FAKE PASSWORD"
Case 2
TextBox2.Text = "FAKE PASSWORD"
Case 3
TextBox2.Text = "FAKE PASSWORD"
Case 4
TextBox2.Text = "FAKE PASSWORD"
Case 5
TextBox2.Text = "FAKE PASSWORD"
Case 6
TextBox2.Text = "FAKE PASSWORD"
Case 7
TextBox2.Text = "FAKE PASSWORD"
Case 8
TextBox2.Text = "FAKE PASSWORD"
Case 9
TextBox2.Text = "FAKE PASSWORD"
Case 10
TextBox2.Text = "FAKE PASSWORD"

End If



NOTE : Add how many cases you need, the number of cases = the number of passwords.


On the exit button, put in
Code:
Me.Close()



AND WE'RE DONE!!!!!




CONGRATULATIONS!!!!! YOU HAVE MADE YOUR VERY FIRST FAKE PROGRAM, BIND IT WITH ANYTHING, AND SEND IT TO PEOPLE TO INFECT!