Coder Social home page Coder Social logo

thisapp-massaccountcreator's Introduction


Unpatched @ 10/21/2022


Logo

this. - Mass Username Claimer

A simple username claimer and checker for "this." ( created by me + checker by https://github.com/xtekky )

🌌 Telegram · 📜 ChangeLog · ⚠️ Report Bug · 💡 Request Feature


⚙️ Setup

Run Checker To Get List Of Usernames Then Run Main To Claim Them.

  • python3 checker.py
  • python3 main.py

🔥 Features

  • User friendly interface
  • Decent Speeds
  • Super Simple

🚀 Milestones

  • 5 Stars - Quicker Claiming Speeds
  • 10 Stars -
  • 20 Stars -

❗ Disclaimers

  • I am not responsible for anything that may happen, such as, API Blocking, Account Termination, etc.
  • This may slow down your wifi and/or host computer
  • This was a quick project that was made for fun, so if you want to see further updates, star the repo & create an "issue" here

📜 ChangeLog

v0.1.0 ⋮ 10/21/2022
+ Unpatched both checker and creator
+ Huge Improvement To UI


v0.0.1 ⋮ 6/10/2022
+ Uploaded First Version


* README CREDITS *

This README was inspired by @dropout1337 <3

thisapp-massaccountcreator's People

Contributors

imvast avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

thisapp-massaccountcreator's Issues

add username checker

import threading, random, requests


def check():
    _username = ''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=3))
    _check = requests.post(
        "https://api.ws.thisapp.so/graphql",
        json = {
               "operationName": "CheckUsername",
               "variables": {
                 "input": {
                   "username": _username
                 }
               },
               "query": "query CheckUsername($input: CheckUsernameInput!) {\n  checkUsername(input: $input) {\n    isAvailable\n    __typename\n  }\n}\n"
            },
        headers = {
                "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36",
                "origin": "https://thisapp.com"
            }
    )
    if '"isAvailable":true' in _check.text:
        print(_username, file=open('available.txt'))


while True:
    if threading.active_count() < 500:
        threading.Thread(target=check).start()

I was bored ; )

Captchas

post req require an captcha now

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.