Leak Society - The Home Of Nulled Resources.
Forum Beta v1 Now Live!
Main feature on a SMS Bomber {Source Code}
Thead Owner : Knowledge, Category : Everything Coding, 0 Comment, 60 Read
Viewers: 1 Guest(s)
Member
***
76
Messages
14
Threads
0
Rep
4 Years of Service
08-10-2014, 10:50 PM
#1
Quote:Dim EmailMessage As New MailMessage
Dim TheTelephoneNumber As String = TextBox3.Text
Dim MyCarrier As String = ComboBox1.SelectedItem.ToString()


EmailMessage.From = New MailAddress(TextBox1.Text)
EmailMessage.To.Add(TheTelephoneNumber + MyCarrier)
EmailMessage.Subject = (TextBox5.Text)
EmailMessage.Body = (RichTextBox1.Text)
EmailMessage.Priority = MailPriority.High

Dim SimpleSMTP As New SmtpClient("smtp.gmail.com")
SimpleSMTP.Port = 587
SimpleSMTP.EnableSsl = True
SimpleSMTP.Credentials = New System.Net.NetworkCredential(TextBox1.Text, TextBox2.Text)
SimpleSMTP.Send(EmailMessage)

End Sub

What this is doing is telling the program to use (gmail email) to send high priority mail to a assigned number, this source is very simple and can be found anywhere :) Just wanted to share some source code on it all of you I assume know what a SMS Bomber is!


Forum Jump: