From 68278c74737a844025a973e847f3da78062c2edb Mon Sep 17 00:00:00 2001 From: fleetcaptain <17651144+fleetcaptain@users.noreply.github.com> Date: Mon, 19 Aug 2019 20:42:58 -0700 Subject: [PATCH 1/2] Update README.md Add clarification about subbrute --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b4502c..1b4d50a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Short Form | Long Form | Description Note that turbolist3r has not been tested on Windows. -Turbolist3r depends on the `dnslib`, `requests`, `dnspython`, 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. #### dnslib Module From 1b29bf92461c7c070d466463d718d894a72a70b0 Mon Sep 17 00:00:00 2001 From: gavin-anders Date: Thu, 12 Sep 2019 15:59:10 +0100 Subject: [PATCH 2/2] Support for Python3 --- turbolist3r.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbolist3r.py b/turbolist3r.py index 5887c6c..ebaa0fd 100644 --- a/turbolist3r.py +++ b/turbolist3r.py @@ -26,7 +26,7 @@ from collections import Counter try: from subbrute import subbrute except: - print "Failed to import subbrute, you will not be able to bruteforce" + print("Failed to import subbrute, you will not be able to bruteforce") import dns.resolver import requests # import dnslib, which provides better features compared to dns.resolver for finding subdomains