diff --git a/README.md b/README.md index 8444c64..e5d8a48 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,11 @@ Short Form | Long Form | Description Note that turbolist3r has not been tested on Windows. +<<<<<<< HEAD Turbolist3r depends on the `dnslib`, `requests`, and `argparse` python modules. +======= +Turbolist3r depends on the `dnslib`, `requests`, `dnspython`, and `argparse` python modules. The `subbrute` module is required for bruteforce capability, but Turbolist3r should run without it as long as you don't invoke bruteforce. Submit a PR or contact me if you have issues. +>>>>>>> 84d82d9019bc65d836e14ce8d8959fd1deafd1de #### dnslib Module diff --git a/turbolist3r.py b/turbolist3r.py index 20424ad..dd4da6d 100644 --- a/turbolist3r.py +++ b/turbolist3r.py @@ -24,9 +24,14 @@ from collections import Counter try: from subbrute import subbrute except: +<<<<<<< HEAD print("Failed to import subbrute, you will not be able to bruteforce") #import dns.resolver +======= + print("Failed to import subbrute, you will not be able to bruteforce") +import dns.resolver +>>>>>>> 84d82d9019bc65d836e14ce8d8959fd1deafd1de import requests # import dnslib, which provides better features compared to dns.resolver for finding subdomains