From 6b18ed2c1d21463fed16f64955cdfbba3995a42d Mon Sep 17 00:00:00 2001 From: mzfr Date: Tue, 11 Jun 2019 13:24:22 +0530 Subject: [PATCH] Fix wrong file name authlog.py to accesslog.py --- core/{authlog.py => accesslog.py} | 0 liffy.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename core/{authlog.py => accesslog.py} (100%) diff --git a/core/authlog.py b/core/accesslog.py similarity index 100% rename from core/authlog.py rename to core/accesslog.py diff --git a/liffy.py b/liffy.py index 053ffbf..8afe3e7 100644 --- a/liffy.py +++ b/liffy.py @@ -8,7 +8,7 @@ from pyfiglet import figlet_format -from core import Expect, Filter, Input, authlog, data, proc, sshlog +from core import Expect, Filter, Input, accesslog, data, proc, sshlog from core.utils import colors @@ -98,7 +98,7 @@ def main(): l = '/var/log/apache2/access.log' else: l = args.location - a = authlog(url, l, nostager, relative, cookies) + a = accesslog(url, l, nostager, relative, cookies) a.execute_logs() elif args.ssh: print(colors("[~] Testing for SSH log poisoning ", 93))