From 78f9833e0fe3fe9de91e203628bcf04e8e2b6f9b Mon Sep 17 00:00:00 2001 From: Mathy Vanhoef Date: Thu, 12 Nov 2020 00:17:53 +0400 Subject: [PATCH] fragattack: minor tweaks to output --- research/fraginternals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/research/fraginternals.py b/research/fraginternals.py index 0b4af908c..40a0e8a57 100644 --- a/research/fraginternals.py +++ b/research/fraginternals.py @@ -877,7 +877,7 @@ class Daemon(metaclass=abc.ABCMeta): # Verify that hostap got recompiled on updates version = self.wpaspy_command("GET_VERSION").strip() if version != FRAGVERSION: - log(ERROR, f"Script has test tool version {FRAGVERSION} but compiled wpa_supplicant/hostapd is {version}.") + log(ERROR, f"This script has version {FRAGVERSION} but compiled wpa_supplicant/hostapd is {version}.") log(ERROR, f"Please recompile hostapd/wpa_supplicant using `build.sh`.") quit(1) @@ -948,7 +948,7 @@ class Authenticator(Daemon): log(STATUS, f"Starting PTK rekey with client {station.get_peermac()}", color="green") cmd = f"REKEY_PTK {station.get_peermac()}" if self.options.rekey_early_install: - log(STATUS, "Will install PTK during rekey after sending Msg4") + log(STATUS, "Will install PTK during rekey after sending Msg3") cmd += " early-install" self.wpaspy_command(cmd)