Skip to content

Commit

Permalink
Import external modules after standard modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemadden42 committed Oct 19, 2016
1 parent 77a1f43 commit 9ff254d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sublist3r.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ff254d

Please sign in to comment.