CO Account Creation.

02/21/2012 16:07 appledrink#1
Are there any documents / Threads on how the account creation works
using the web method of course. decaptcha? basically i want to create each account over a new proxy this would be to bypass the 10 minute delay between creations. i do have programming experience im just new to this scene. any help would be appreciated.
02/21/2012 21:47 Kiyono#2
Guess I'll move this to the programming section then.
02/21/2012 22:42 donn#3
Well, if you can crack the captcha (never tried to do it) sending the parameters to a web form from c# it's pretty easy, doable in like 20 lines max.

A simple search on Google returned that :

Code:
private String readHtmlPage(string url)
   {

    //setup some variables

    String username  = "demo";
    String password  = "password";
    String firstname = "John";
    String lastname  = "Smith";

    //setup some variables end

      String result = "";
      String strPost = "username="+username+"&password="+password+"&firstname="+firstname+"&lastname="+lastname;
      StreamWriter myWriter = null;

      HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(url);
      objRequest.Method = "POST";
      objRequest.ContentLength = strPost.Length;
      objRequest.ContentType = "application/x-www-form-urlencoded";

      try
      {
         myWriter = new StreamWriter(objRequest.GetRequestStream());
         myWriter.Write(strPost);
      }
      catch (Exception e) 
      {
         return e.Message;
      }
      finally {
         myWriter.Close();
      }

      HttpWebResponse objResponse = (HttpWebResponse)objRequest.GetResponse();
      using (StreamReader sr = 
         new StreamReader(objResponse.GetResponseStream()) )
      {
         result = sr.ReadToEnd();

         // Close and clean up the StreamReader
         sr.Close();
      }
      return result;
   }
And with a few tweaks it works (I know it does, I used it before TQ added CAPTCHA).

Now all you need more is adding the CAPTCHA response. If you can't crack it, there are some paid services available, one of them being [Only registered and activated users can see links. Click Here To Register...] , offering an easy C# API for that.
02/23/2012 14:58 appledrink#4
Although my question was Extreamly vague i would like to thank you
for answering it.. :handsdown: