Page 3 of 3 FirstFirst 123
Results 31 to 37 of 37
  1. #31
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    If nexon uses a captcha, then right click view source and get the ID, replace it in the IDpart of the code, if you have google chrome, right click inspect element


     


     


     



    The Most complete application MPGH will ever offer - 68%




  2. #32
    MugNuf's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    790
    Reputation
    9
    Thanks
    160
    My Mood
    Goofy
    Quote Originally Posted by NextGen1 View Post
    If nexon uses a captcha, then right click view source and get the ID, replace it in the IDpart of the code, if you have google chrome, right click inspect element
    I would assume they do, as shown below.

    on/FormShieldHttpHandler.aspx?__formShieldID=captchaFS

    Thats just a part of the url if you copy Image Location it.


    And if you view the source, for the part with the captcha, you get this:

    [php]<hr />
    <span id="upCaptcha">
    <p style="position:relative;left:20px;"><label class="verification">Please enter the code you see to the right for verifcation purposes</label>
    <span id="captchaFS" style="display:inline-block;border-width:0px;">

    <table border="0" cellpadding="2" cellspacing="0">
    <tr>

    <td><img id="captchaFS_Image" src="FormShieldHttpHandler.aspx?__formShieldID=cap tchaFS&amp;generate=image&amp;properties=4CDE5D781 2F773A3BE5BB56FE97A35F22F5A9E66CAA30BB465BE4FFF7EC 0755286BE3917260C976CFB25F4D6FA589607D053A843C96B2 CD2B920D47FDCC65EAF" alt="Protected by FormShield" title="Protected by FormShield" height="49" width="240" /></td>
    <td>
    <table border="0" cellpadding="1" cellspacing="0">
    <tr>
    <td></td>
    </tr>
    <tr>
    <td></td>
    </tr>

    <tr>
    <td></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </span>
    </p>

    <p style="clear:left;position:relative;left:20px;">
    <input name="txtCaptcha" type="text" id="txtCaptcha" class="input_verify" onfocus="javascript:currentlyFocusedObj=this;setTi meout(&quot;showBalloon(8)&quot;, 300);" onblur="javascript:setTimeout(&quot;doblur(this,8) ;clientCheck(8, 2);&quot;, 50);" />


    </p>
    </span>
    [/php]

    What ID do i need?

    EDIT: I just saved the page source as a .html in notpad, opened it, and its protected by FormShield.
    Last edited by MugNuf; 02-22-2010 at 06:40 AM.

  3. #33
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    Nexon Combat Arms LogIn IDs

    Log In - tbID
    Pass - tbPass
    Log In button - submit

  4. #34
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Code:
    WebBrowser1.GetElementsByID("txtaccountid").innertext = Textbox1.Textbox
    WebBrowser1.GetElementsByID("txtpassword").innertext = Textbox2.Textbox
    WebBrowser1.GetElementsByID("txtpasswordconfimation").innertext = Textbox2.Textbox
    WebBrowser1.GetElementsByID("txtemail").innertext = Textbox3.Textbox
    WebBrowser1.GetElementsByID("txtemailconfimation").innertext = Textbox3.Textbox
    WebBrowser1.GetElementsById("txtfirstname").innertext = textbox4.textbox
    Webbrowser1.Getelelementbyid("txtlastname").innertext = textbox5.text
    use my Yahoo Captcha Example to grab CA captcha or if it allows use the other 2 examples I provided, and now you have a CA account creator

    Hejsan1 CA Captcha Code
    Code:
    If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
    If PictureBox1.ImageLocation = Nothing Then
    Dim theElementCollection As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("img")
    
    
    For Each curElement As HtmlElement In theElementCollection
    Dim imgURL As String = curElement.GetAttribute("src").ToString
    If imgURL.Contains("https://passport.nexoneu.com/img/") then
    PictureBox1.ImageLocation = imgURL
    End If
    
    Next
    
    End If
    End If


    Code:
    If PictureBox1.ImageLocation = Nothing Then
                    Dim theElementCollection As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("img")
    
    
                    For Each curElement As HtmlElement In theElementCollection
                        Dim imgURL As String = curElement.GetAttribute("src").ToString
                        If imgURL.Contains("https://ab.login.yahoo.com/img/") Then 'And WebBrowser1.Document.GetElementById("cimg").Id Then
    
                            PictureBox1.ImageLocation = imgURL
                        End If
    
                    Next
    Last edited by NextGen1; 02-22-2010 at 12:24 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  5. The Following User Says Thank You to NextGen1 For This Useful Post:

    Zoom (02-22-2010)

  6. #35
    Nexulous's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    in dbb's vagina.
    Posts
    4,047
    Reputation
    63
    Thanks
    218
    My Mood
    Innocent
    Does this mean I still appreciate your work? Great job, btw. You've definitely been raping the VB section with your knowledge.

  7. The Following User Says Thank You to Nexulous For This Useful Post:

    NextGen1 (02-22-2010)

  8. #36
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by Aznfag View Post
    Does this mean I still appreciate your work? Great job, btw. You've definitely been raping the VB section with your knowledge.
    Yea he's like unpurposly pwning us with his knowledge. I always feel so noob =/



  9. #37
    Nexulous's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    in dbb's vagina.
    Posts
    4,047
    Reputation
    63
    Thanks
    218
    My Mood
    Innocent
    Yeah gtfo website designer. fml he's too cool for me.

  10. The Following User Says Thank You to Nexulous For This Useful Post:

    NextGen1 (02-22-2010)

Page 3 of 3 FirstFirst 123

Similar Threads

  1. [Help]Nextgens Captcha tut[Solved]
    By mrAWSOME in forum Visual Basic Programming
    Replies: 5
    Last Post: 06-16-2010, 11:48 PM
  2. Tut. for k. gunz or J. gunz?
    By i eat trees in forum Hack Requests
    Replies: 0
    Last Post: 01-19-2006, 02:56 PM
  3. yahoo pool aimer!!!
    By terence in forum Hack Requests
    Replies: 2
    Last Post: 01-19-2006, 06:43 AM
  4. In-Depth Tut. to hacking in War Rock (Conc. to Dave)
    By fl0 in forum WarRock - International Hacks
    Replies: 15
    Last Post: 01-18-2006, 02:49 PM
  5. Tuts
    By Mukuro in forum Hack Requests
    Replies: 0
    Last Post: 01-09-2006, 04:54 PM