Skip to content
This repository has been archived by the owner on Jul 27, 2021. It is now read-only.

Library to create and verify OSRS accounts, along with solving captcha problems via 2captcha.com

Notifications You must be signed in to change notification settings

austin-millan/osrs-account-creator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[DEPRECATED, UNMAINTAINED] This repository is unmaintained and no longer works due to Jagex integrating Incapsula.

osrs-account-creator

About

A library for creating OSRS accounts behind a proxy and verifying accounts using GMail API.

Setup

go get -u gitlab.com/dracarys-botter/osrs-account-creator

Requirements

Only works behind a SOCKS5 proxy. This is intended to avoid tainting your home IP address.

Example Usage

package main

import (
    "fmt"

    "gitlab.com/dracarys-botter/osrs-account-creator/pkg"
    account "gitlab.com/dracarys-botter/osrs-account-creator/pkg/account"
)

func main() {
    accConfig := pkg.AccountConfig{
        Email: "[email protected]",
        ProxyConfig: pkg.ProxyConfig{
            IP:   "127.0.0.1",
            User: "someid",
            Pass: "somepass",
            Port: "1080",
        },
    }

    if acc, err := account.RegisterAccount(accConfig, pkg.RequestMode, "your 2captcha.com API key"); err != nil {
        fmt.Printf("Error: %v", err)
    } else {
        if acc != nil {
            pkg.ShowAccountOutput(*acc)
        }
    }
    // your Gmail credentials file, see more here:
    //      https://developers.google.com/gmail/api/quickstart/go
    account.DoAccountVerificationGmail("credentials.json", accConfig)
}

Issues

  • Only works behind SOCKS5 proxy, but ideally will allow multiple protocols (HTTP/HTTPS) and the ability to wave the proxy altogether

Repository Views

HitCount

About

Library to create and verify OSRS accounts, along with solving captcha problems via 2captcha.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages