├── .gitignore ├── .version ├── LICENSE ├── README.md ├── TBomb.sh ├── anonmail.py ├── bomber.py ├── bombmail.py ├── requirements.txt └── xploits.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/.gitignore -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | v1.7b1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/README.md -------------------------------------------------------------------------------- /TBomb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/TBomb.sh -------------------------------------------------------------------------------- /anonmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/anonmail.py -------------------------------------------------------------------------------- /bomber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/bomber.py -------------------------------------------------------------------------------- /bombmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/bombmail.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.21.0 2 | urllib3 >=1, <2 3 | 4 | -------------------------------------------------------------------------------- /xploits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonymousmani/bomber/HEAD/xploits.py --------------------------------------------------------------------------------