├── .github └── workflows │ └── build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── React.py ├── React.spec ├── Sound ├── connected.mp3 ├── failure.mp3 ├── information.mp3 ├── notification.mp3 ├── selfbot.mp3 └── success.mp3 ├── features.txt ├── notify.py ├── react.ico ├── requirements-linux.txt ├── requirements.txt ├── result.py ├── sites.py └── tokengrabber.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/README.md -------------------------------------------------------------------------------- /React.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/React.py -------------------------------------------------------------------------------- /React.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/React.spec -------------------------------------------------------------------------------- /Sound/connected.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/connected.mp3 -------------------------------------------------------------------------------- /Sound/failure.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/failure.mp3 -------------------------------------------------------------------------------- /Sound/information.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/information.mp3 -------------------------------------------------------------------------------- /Sound/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/notification.mp3 -------------------------------------------------------------------------------- /Sound/selfbot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/selfbot.mp3 -------------------------------------------------------------------------------- /Sound/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/Sound/success.mp3 -------------------------------------------------------------------------------- /features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/features.txt -------------------------------------------------------------------------------- /notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/notify.py -------------------------------------------------------------------------------- /react.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/react.ico -------------------------------------------------------------------------------- /requirements-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/requirements-linux.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/result.py -------------------------------------------------------------------------------- /sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/sites.py -------------------------------------------------------------------------------- /tokengrabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlawCra/ReactSelfbot/HEAD/tokengrabber.py --------------------------------------------------------------------------------