Results 1 to 8 of 8
  1. #1
    adeddd's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    211
    Reputation
    10
    Thanks
    300
    My Mood
    Psychedelic

    How can I do that?

    I want to do a "Database" that sends all the things that people write on the program to my email or PC.
    How can I do this?
    Last edited by adeddd; 03-30-2013 at 02:42 PM.

  2. #2
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    I don't really understand what you're trying to say. You could try the email code,

    Code:
            Dim MyMailMessage As New MailMessage()
            MyMailMessage.From = New MailAddress("") 'email you will use to send to your main email
            MyMailMessage.To.Add("") 'Your main email
            MyMailMessage.Subject = "" 'obvious
            MyMailMessage.Body = "" 'obvious
            Dim SMTPServer As New SmtpClient("smtp.gmail.com") 'don't touch
            SMTPServer.Port = 587 'don't touch
            SMTPServer.EnableSsl = True 'don't touch
            SMTPServer.Credentials = New System.Net.NetworkCredential("alt email", "alt email password")
            SMTPServer.Send(MyMailMessage) 'sends the message
    Though, that's not the best method since some anti-virus protectors block that.

  3. #3
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    You would need an Database, then you would have the program to connect to that database.

    About the email stuff:
    If you're trying to get peoples password and/or such.
    >This is not the place to start, learn more about how programs get detected. (So you can bypass that)

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  4. #4
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by Jorndel View Post
    About the email stuff:
    If you're trying to get peoples password and/or such.
    >This is not the place to start, learn more about how programs get detected. (So you can bypass that)
    Yea, I just use that method to do a 'feedback' form. It just emails me whatever they input. It's probably not the best method :P

  5. #5
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    ... or just build it to write to your database through a php file on your server that screens all the information that comes through...

  6. #6
    rabbit.coder's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    50
    Its easy to send emails from Gmail

    Code:
    Imports System.Net.Mail
    Code:
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            'Start by creating a mail message object
            Dim MyMailMessage As New MailMessage()
    
            'From requires an instance of the MailAddress type
            MyMailMessage.From = New MailAddress("sent_from@gmail.com")
    
            'To is a collection of MailAddress types
            MyMailMessage.To.Add("your_email@gmail.com")
    
            MyMailMessage.Subject = "GMail Test"
            MyMailMessage.Body = "This is the test text for Gmail email"
    
            'Create the SMTPClient object and specify the SMTP GMail server
            Dim SMTPServer As New SmtpClient("smtp.gmail.com")
            SMTPServer.Port = 587
            SMTPServer.Credentials = New System.Net.NetworkCredential("your_username", "your_password")
            SMTPServer.EnableSsl = True
    
            Try
                SMTPServer.Send(MyMailMessage)
                MessageBox.Show("Email Sent")
            Catch ex As SmtpException
                MessageBox.Show(ex.Message)
            End Try
        End Sub

  7. #7
    timiostimio's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    GB
    Posts
    454
    Reputation
    10
    Thanks
    5,090
    My Mood
    Cold
    Create a Ftp server?

  8. #8
    rileyjstrickland's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Florida
    Posts
    649
    Reputation
    90
    Thanks
    4,008
    My Mood
    Relaxed
    Sounds like a keylogger.

    If You Like My Releases, Hit The Thanks button!
    Follow the rules.

    Successful Purchases: 2
    @The403
    @sundy42
    Successful Sales: 1
    @wZ. Gali
    Scammed: 1

    Favorite Quotes:
    Quote Originally Posted by Doc View Post
    Who cares about simplified mandarin. The only problem here is that Cantonese (and Hokkien) is no longer being taught, but guess what, times change. There have been thousands of languages that have been lost to the ages, you'd be pissing in the wind to try and stop that.

Similar Threads

  1. How can i decrypt that ?
    By keane93 in forum Flash Game Hacks
    Replies: 2
    Last Post: 01-04-2013, 04:51 PM
  2. How can you tell that you are banned?
    By karmanrider in forum Vindictus Help
    Replies: 27
    Last Post: 08-07-2011, 11:26 PM
  3. [Solved]Crossfire Laggy How can i solve that?
    By negimaru in forum CrossFire Help
    Replies: 2
    Last Post: 10-29-2010, 11:26 PM
  4. I open that ammo thing with the virus how can I remove them -__-
    By Hadouch in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 08-19-2008, 04:23 PM
  5. i wanna spam someones email how can i do that?
    By maiko in forum Spammers Corner
    Replies: 3
    Last Post: 03-20-2008, 11:25 AM