Account Creators

I am going to maintain logs of coding here:

Day 1: 12 Feb 2012

Hotmail and yahoo account creator have finished today.

It took 3.5 hours to finish both. :)

I am going to do 3 to 4 sites each day...
 
can you make fully-automated softwares? for example, 500 hotmail accounts creator with a single click (also decaptcher/deathbycaptcha supported)..

or do you make only semi automated softwares like this.
 
Last edited:
can you make fully-automated softwares? for example, 500 hotmail accounts creator with a single click (also decaptcher/deathbycaptcha supported)..

or do you make only semi automated softwares http://bit.ly/xTihtC.

Fully automated with decaptcher/deathbycaptcha support.

As well as semi automated if you don't have decaptcher/deathbycaptcha account.
 
you could write a newbguide to coding a simple bot in c# or something else.. :)

I am going to write that in F#... It's extremely easy to make bots in F#.

It's more natural programming language than C#. very easy for newbies..

50% to 80%(in some cases) less code to write than C#... :D

for example... Google SERP scraper:

Code:
open System
open System.IO
open System.Net
open System.Threading
open System.Windows.Forms
open SHDocVw
open mshtml
open System.Windows.Forms
open System.Text.RegularExpressions

let (|Match|_|) (pat:string) (inp:string) =
    let m = Regex.Match(inp, pat) in
    if m.Success
    then Some (List.tail [ for g in m.Groups -> g.Value ])
    else None

let (|Matches|_|) (pat:string) (inp:string) =
    let m = Regex.Matches(inp, pat) in
    if m.Count > 0
    then Some ( [ for g in m -> g.Value ])
    else None



let getPage (url:string) = 
        let (html:HtmlDocument ref) =  ref null

        let handler (sender:obj) (e: WebBrowserDocumentCompletedEventArgs) = 
            let wb = sender :?> (WebBrowser)
            html := (wb.Document)

        use wb = new WebBrowser()
        wb.Visible<-true
        wb.DocumentCompleted.Add(handler wb)
        wb.Navigate(url)

        while wb.ReadyState <> WebBrowserReadyState.Complete do
                    Application.DoEvents()
    
        html

let googleSearch term = 
    let rec googleSearch link pass res = 
        let search = getPage link
        Thread.Sleep(TimeSpan.FromSeconds(5.0))
    
        let potentialLinks = 
            seq{ for link in search.Value.Links do
                     if not(link.OuterHtml.Contains("google")) then 
                         yield link.OuterHtml }
            |>Seq.toArray
   
        let pat = "href=\"([^>]+)\">"

        let links = 
             potentialLinks
             |> Array.filter(fun elem -> elem.Contains("<A class=\"l\" onmousedown="))
             |> Array.map( fun elem -> match elem with 
                                       |Match pat (link::t) -> link
                                       | _ -> failwith "critical parsing error")
        let next = 
             potentialLinks
             |> Array.filter(fun elem -> elem.Contains("<A class=\"fl\"")&& elem.Contains("/search?"))
             |> Array.map( fun elem -> match elem with 
                                       | Match pat (link::t) -> "http://www.google.com"+link
                                       | _ -> failwith "critical parsing error")

        let newRes = res|>Array.append(links)
        
        if (next.Length-1) <= pass then
           newRes
        else
           let newPass = pass+1
           googleSearch ((next.[newPass]).Replace(";","&")) newPass newRes

    googleSearch ("http://www.google.com/search?num=100&hl=en&q="+term+"&btnG=Search&aq=f&aqi=&aql=&oq=") -1 [||]   


googleSearch "F# love"
 
Last edited:
Great, i'm bookmarking this thread.
I nice thing for email creators, add this option after email is created:

Code:
  Move messages to Inbox if sender's address contains "@"

I saw this at another member here, who created a hotmail creator.

When I register to bookmarking websites, a lot of them are flagged somehow and email get into spam/junk folders. This means no auto email verification if you try automation stuff.

Good luck with this projects!
 
Great, i'm bookmarking this thread.
I nice thing for email creators, add this option after email is created:

Code:
  Move messages to Inbox if sender's address contains "@"

I saw this at another member here, who created a hotmail creator.

When I register to bookmarking websites, a lot of them are flagged somehow and email get into spam/junk folders. This means no auto email verification if you try automation stuff.

Good luck with this projects!

Email verifier here is little bit intelligent..
If it doesn't find email in inbox then it will search junk/spam folder.. :)
 
can you include thepiratebay account creator? and also bulkemail verifier once the accoint is done . I need many account with piratebays and hotmail accounts too for my emails..
 
Updates:

All 10 email account makers are done !! :)

Now working on social networking sites... :)
 
subscribed =)

your "generic account creator" idea is awesome btw
 
subscribed =)

your "generic account creator" idea is awesome btw

Yes all it takes is recognizing correct textboxes/divs/input elements and fill them correctly...

Going to use some AI/Database/Natural language processing techniques to do that..

First I need some experience of acc. creators
 
Back
Top