Git Product home page Git Product logo

account_verifier's Introduction

For educational purposes only - some components might be outdated

Account checker

Multi website account checker

AccountChecker is a simple tool to check username and email combos for different providers written in PHP.

Features

  • Account checker for the following websites:
    • Netflix (finished)
    • Hulu (in progress - mink)
    • Spotify (finished)
    • HBO, HBOGO, HBONOW (planned)
    • Minecraft (finished - todo: purchased game?)
    • Crunchyroll (in progress - mink)
    • DirectTV (planned)
    • PSN (planned)
    • XBox (planned)

Requirements

  • PHP 5.5+
    • ext/curl
    • ext/json

Installation

Installation by composer:

composer require markoftw/account_verifier

Include vendor

Include vendor in your PHP file:

    include '../vendor/autoload.php';

Usage examples

The following example will return an array of the results:

use Markoftw\AccountChecker\Netflix as Netflix;

$netflix = new Netflix();
print_r($netflix->check("email", "password")->get());

!IMPORTANT! Proxy must be specified before check() is called. Other possible usages are (proxy):

$netflix->proxy("127.0.0.1:5555")->check("email", "password")->get();

Default proxy type is SOCKS5. If you want to use other proxies specify second argument:

$netflix->proxy("127.0.0.1:5555", "HTTP")->check("email", "password")->get();

plan details:

$netflix->proxy("127.0.0.1:5555")->check("email", "password")->plan()->get();

save to file, default filename is results_SERVICE.txt, you can change it by passing an argument to save:

$netflix->proxy("127.0.0.1:5555")->check("email", "password")->save()->get();

json output:

echo $netflix->proxy("127.0.0.1:5555")->check("email", "password")->plan()->save()->json();

account_verifier's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.