Show Posts
|
Pages: [1]
|
4
|
General Category / HP History / Re: Hacker-Project Tool
|
on: April 10, 2009, 06:00:09 PM
|
Imports System.Web Imports System.IO Imports System.Net.Mail
Public Class Bug
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = "" Then MsgBox("The from field is not filled in!", MsgBoxStyle.OkOnly, "Error") Exit Sub End If ProgressBar1.Value = 20 Dim mail As New System.Net.Mail.MailMessage() Dim SmtpServer As New SmtpClient ProgressBar1.Value = 40 SmtpServer.Credentials = New Net.NetworkCredential("(my mail)", "(my password)") SmtpServer.Port = 587 SmtpServer.Host = "smtp.gmail.com" SmtpServer.EnableSsl = True mail.To.Add("(my mail)") mail.From = New MailAddress("(my mail)") mail.Subject = "Hacker-Project Tool - " & ComboBox1.SelectedItem mail.Body = "Message from: " & TextBox1.Text & vbNewLine & RichTextBox1.Text ProgressBar1.Value = 60 SmtpServer.Send(mail) ProgressBar1.Value = 100 MsgBox(ComboBox1.SelectedItem & " sent!", MsgBoxStyle.OkOnly, ComboBox1.SelectedItem) End Sub End Class
|
|
|
8
|
Feedback Terminal / Suggestions / Some suggestions
|
on: March 31, 2009, 05:54:32 PM
|
Hi I have some suggestions.I dont know if someone already suggested them but Ill leave them here anyway
Copy file option If you want to have 6 virii to install on your gateway but you only have 1 there could be a copy file option so that you could have the 6 files and you wouldnt need to download them all from a server.
DVDs,CDs,PEN Drives and External Hard Drives If you want to save your important software out of the gateway in a safe place you could buy one of these to save it.It would be good if you wanted to format your HDD.Copying operations with these wouldnt use bandwidth and would be faster.
Compilers So you have some files that you arent using but you dont want to delete them?Use a compiler to join them all in one file and reduce their size.You would need a decompiler to retrieve the files.
IP Database Cracker You could use a password cracker to delete a password from the other player's IP database or download targets.
|
|
|
|