fixing conflicts
This commit is contained in:
fleetcaptain 2019-10-10 19:33:08 -07:00
commit a2ea42fb0e
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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