Results 1 to 11 of 11
  1. #1
    hero312's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0

    [Help]Nexon Account Generator

    I have FULLY coded my Nexon account Generator.

    I only have 2 problems though.

    1-(Most Important)-When ever i load up the webpage i get this errpr

    this sight requiers you to download and install macromedia flash player 7 or higher. Please Install and try again.
    Because of that Error the Submit button on the webpage dissipears thus not letting it creat the account.

    Any Help


    2-How can i get the capcha from the nexon webpage into a picture box


    Thank you for help in advance!

  2. #2
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Check the snippet vault and the Tutorial thread, I already saw in that threads..

  3. #3
    hero312's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    could you tell me which thread cant find it ;O

  4. #4
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive

  5. #5
    hero312's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    ive looked through all of the tutorials. nothing

    and snippets i looked through first 2 pages and nothing..

  6. #6
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    https://www.mpgh.net/forum/33-visual-...t-creator.html

    There is many tuts and many ways use search button..

  7. #7
    hero312's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    that doesnt solve my problem

    also i looked through every snippet page
    Last edited by hero312; 03-12-2011 at 07:52 PM.

  8. #8
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Here.. its a popular code..

    Code:
     Dim capurl As String
            Dim inner1 As String = Web.Document.Body.InnerHtml
    
            Dim inner As String = inner1
            Dim findStart As String, pulledOut As String
            findStart = "properties="
            Dim start As Integer, [end] As Integer
            start = inner.IndexOf(findStart)
            inner = inner.Remove(0, start + findStart.Length)
            [end] = inner.IndexOf("""")
            inner = inner.Remove([end], inner.Length - [end])
            pulledOut = inner
            capurl = ""
            capurl = ("https://passport.nexon.net/Registration/FormShieldHttpHandler.aspx?__formShieldID=captchaFS&generate=image&properties=") & pulledOut
            PictureBox1.ImageLocation = capurl
            PictureBox1.Show()
    Your welcome.

  9. #9
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    You sure you have Macromedia Flash Player 7+ installed for Internet Explorer?

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  10. #10
    hero312's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    problem fixed and yes i did

    Close thread please

  11. #11
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by hero312 View Post
    problem fixed and yes i did

    Close thread please
    Please share your solution for people to use as a reference if they ever run into this problem.

    Thread marked solved.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)