Merge branch 'master' of https://github.com/fleetcaptain/Turbolist3r
fixing conflicts
This commit is contained in:
commit
a2ea42fb0e
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue