Skip to content

Commit

Permalink
I am an idiot... Fixed aboul3la#88 from about3la
Browse files Browse the repository at this point in the history
ref: aboul3la#88
Also slight cleanup
  • Loading branch information
Plazmaz committed Jun 11, 2017
1 parent 5def13d commit 4b0d5cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
Empty file added engines/__init__.py
Empty file.
21 changes: 5 additions & 16 deletions subscann3r.py
Original file line number Diff line number Diff line change
@@ -1,32 +1,21 @@
import multiprocessing
import os
import re
import sys
import os
import argparse
import time
import hashlib
import random
import multiprocessing
import threading
import socket
from collections import Counter

from engines.engine import Engines
from util.util import Util

# external modules
from subbrute import subbrute
import dns.resolver

# Python 2.x and 3.x compatibility
from util.port_scanner import PortScanner
from util.logger import Logger
from util.util import Util

if sys.version > '3':
# Python 2.x and 3.x compatibility
if sys.version >= '3':
import urllib.parse as urlparse
import urllib.parse as urllib
else:
import urlparse
import urllib

# Check if we are running this on windows platform
is_windows = sys.platform.startswith('win')
Expand Down
Empty file added util/__init__.py
Empty file.

0 comments on commit 4b0d5cd

Please sign in to comment.