├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── subbrute ├── __init__.py ├── names.txt ├── resolvers.txt └── subbrute.py └── turbolist3r.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dnslib 2 | argparse 3 | requests 4 | -------------------------------------------------------------------------------- /subbrute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subbrute/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/subbrute/names.txt -------------------------------------------------------------------------------- /subbrute/resolvers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/subbrute/resolvers.txt -------------------------------------------------------------------------------- /subbrute/subbrute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/subbrute/subbrute.py -------------------------------------------------------------------------------- /turbolist3r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetcaptain/Turbolist3r/HEAD/turbolist3r.py --------------------------------------------------------------------------------