From 9ff254d9144d511d91ed1ec1eee9c8ffc032f23a Mon Sep 17 00:00:00 2001 From: Michael Madden Date: Wed, 19 Oct 2016 11:02:03 -0500 Subject: [PATCH] Import external modules after standard modules. --- sublist3r.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sublist3r.py b/sublist3r.py index 828a48a..633fa44 100644 --- a/sublist3r.py +++ b/sublist3r.py @@ -3,24 +3,27 @@ # Sublist3r v1.0 # By Ahmed Aboul-Ela - twitter.com/aboul3la +# modules in standard library import re import sys import os import argparse import time -import requests import urlparse import urllib import hashlib import random import multiprocessing import threading -import dns.resolver import socket import functools -from subbrute import subbrute from collections import Counter +# external modules +from subbrute import subbrute +import dns.resolver +import requests + #In case you cannot install some of the required development packages, there's also an option to disable the SSL warning: try: import requests.packages.urllib3