From 7a5a887c487fa5e0c20179e661a6a0ffa136efd1 Mon Sep 17 00:00:00 2001 From: singe Date: Mon, 2 Dec 2019 11:23:32 +0000 Subject: [PATCH] Added output hint about a password file being interpreted as a literal password --- atomizer.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atomizer.py b/atomizer.py index 0991395..49586a9 100755 --- a/atomizer.py +++ b/atomizer.py @@ -38,6 +38,7 @@ import concurrent.futures import sys import csv +import os from functools import partial from pathlib import Path from docopt import docopt @@ -205,6 +206,8 @@ def remove_handlers(loop): elif args['']: with open(args['']) as userfile: + if os.path.isfile(args['']): + logging.info(print_info(f"This looks like a password file, but we're using it as the literal password, add --interval if you want it to be read as a file.")) loop.run_until_complete( atomizer.atomize( userfile=userfile,