├── .gitignore ├── .notify ├── .version ├── README.md ├── X_BOMB.sh ├── apidata.json ├── bomber.py ├── isdcodes.json ├── requirements.txt └── utils ├── __init__.py ├── decorators.py └── provider.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /.notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/.notify -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/README.md -------------------------------------------------------------------------------- /X_BOMB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/X_BOMB.sh -------------------------------------------------------------------------------- /apidata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/apidata.json -------------------------------------------------------------------------------- /bomber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/bomber.py -------------------------------------------------------------------------------- /isdcodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/isdcodes.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/utils/decorators.py -------------------------------------------------------------------------------- /utils/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackerxphantom/X_BOMB/HEAD/utils/provider.py --------------------------------------------------------------------------------