Skip to content

Commit

Permalink
Added functionality to specify a list of targets in a file.
Browse files Browse the repository at this point in the history
Closes #27
  • Loading branch information
Tib3rius committed Oct 19, 2019
2 parents 05e384f + abe9547 commit a2a4667
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions autorecon.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
# option) any later version.
#

import atexit
import argparse
import asyncio
import colorama
from colorama import Fore, Style
from concurrent.futures import ProcessPoolExecutor, as_completed, FIRST_COMPLETED
from datetime import datetime
Expand All @@ -20,6 +22,14 @@
import sys
import time
import toml
import termios

def _quit():
termios.tcsetattr(sys.stdin.fileno(), termios.TCSADRAIN, TERM_FLAGS)

atexit.register(_quit)

TERM_FLAGS = termios.tcgetattr(sys.stdin.fileno())

verbose = 0
nmap = '-vv --reason -Pn'
Expand Down

0 comments on commit a2a4667

Please sign in to comment.