├── .github └── workflows │ └── updates.yml ├── .gitignore ├── LICENSE ├── ids.txt ├── img ├── Capture d'écran 2024-08-18 115929.png ├── Capture d'écran 2024-08-18 115941.png ├── XHELL PAGE 1.png ├── XHELL PAGE 2.png ├── XHELL PAGE 3.png └── XHELL START.png ├── install.bat ├── readME.md ├── start.bat ├── tokens.txt ├── utilities └── Program │ ├── accnuker.py │ ├── accountcleaner.py │ ├── credits.py │ ├── dmall.py │ ├── dmdeleter.py │ ├── domainlookup.py │ ├── doxtool.py │ ├── frienddeleter.py │ ├── friendsidscrapper.py │ ├── groupleaver.py │ ├── hypesquadchanger.py │ ├── idtotoken.py │ ├── iplookup.py │ ├── obf.py │ ├── phonelookup.py │ ├── py2exe.py │ ├── ratelimit.py │ ├── seizuremode.py │ ├── srcdumper.py │ ├── statuschanger.py │ ├── subdomainfinder.py │ ├── tokenchecker.py │ ├── tokenleaver.py │ ├── toolinfo.py │ ├── usernamesearcher.py │ ├── utils │ ├── __pycache__ │ │ └── utils.cpython-310.pyc │ └── utils.py │ ├── webhooksdeleter.py │ └── webhookspammer.py ├── words.txt └── xhell.py /.github/workflows/updates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/.github/workflows/updates.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/LICENSE -------------------------------------------------------------------------------- /ids.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/Capture d'écran 2024-08-18 115929.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/Capture d'écran 2024-08-18 115929.png -------------------------------------------------------------------------------- /img/Capture d'écran 2024-08-18 115941.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/Capture d'écran 2024-08-18 115941.png -------------------------------------------------------------------------------- /img/XHELL PAGE 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/XHELL PAGE 1.png -------------------------------------------------------------------------------- /img/XHELL PAGE 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/XHELL PAGE 2.png -------------------------------------------------------------------------------- /img/XHELL PAGE 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/XHELL PAGE 3.png -------------------------------------------------------------------------------- /img/XHELL START.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/img/XHELL START.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/install.bat -------------------------------------------------------------------------------- /readME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/readME.md -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | python xhell.py -------------------------------------------------------------------------------- /tokens.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/Program/accnuker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/accnuker.py -------------------------------------------------------------------------------- /utilities/Program/accountcleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/accountcleaner.py -------------------------------------------------------------------------------- /utilities/Program/credits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/credits.py -------------------------------------------------------------------------------- /utilities/Program/dmall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/dmall.py -------------------------------------------------------------------------------- /utilities/Program/dmdeleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/dmdeleter.py -------------------------------------------------------------------------------- /utilities/Program/domainlookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/domainlookup.py -------------------------------------------------------------------------------- /utilities/Program/doxtool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/doxtool.py -------------------------------------------------------------------------------- /utilities/Program/frienddeleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/frienddeleter.py -------------------------------------------------------------------------------- /utilities/Program/friendsidscrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/friendsidscrapper.py -------------------------------------------------------------------------------- /utilities/Program/groupleaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/groupleaver.py -------------------------------------------------------------------------------- /utilities/Program/hypesquadchanger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/hypesquadchanger.py -------------------------------------------------------------------------------- /utilities/Program/idtotoken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/idtotoken.py -------------------------------------------------------------------------------- /utilities/Program/iplookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/iplookup.py -------------------------------------------------------------------------------- /utilities/Program/obf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/obf.py -------------------------------------------------------------------------------- /utilities/Program/phonelookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/phonelookup.py -------------------------------------------------------------------------------- /utilities/Program/py2exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/py2exe.py -------------------------------------------------------------------------------- /utilities/Program/ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/ratelimit.py -------------------------------------------------------------------------------- /utilities/Program/seizuremode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/seizuremode.py -------------------------------------------------------------------------------- /utilities/Program/srcdumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/srcdumper.py -------------------------------------------------------------------------------- /utilities/Program/statuschanger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/statuschanger.py -------------------------------------------------------------------------------- /utilities/Program/subdomainfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/subdomainfinder.py -------------------------------------------------------------------------------- /utilities/Program/tokenchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/tokenchecker.py -------------------------------------------------------------------------------- /utilities/Program/tokenleaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/tokenleaver.py -------------------------------------------------------------------------------- /utilities/Program/toolinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/toolinfo.py -------------------------------------------------------------------------------- /utilities/Program/usernamesearcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/usernamesearcher.py -------------------------------------------------------------------------------- /utilities/Program/utils/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/utils/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /utilities/Program/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/utils/utils.py -------------------------------------------------------------------------------- /utilities/Program/webhooksdeleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/webhooksdeleter.py -------------------------------------------------------------------------------- /utilities/Program/webhookspammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/utilities/Program/webhookspammer.py -------------------------------------------------------------------------------- /words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/words.txt -------------------------------------------------------------------------------- /xhell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seized0/xhell/HEAD/xhell.py --------------------------------------------------------------------------------