From 94e0c3c6b16cd075078169b38c147f51573ee845 Mon Sep 17 00:00:00 2001 From: Matias Barcenas Date: Wed, 30 May 2018 12:55:07 -0500 Subject: [PATCH] Corrected outdated lib paths. --- attacks/Handshake Snooper/attack.sh | 4 ++-- fluxion.sh | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/attacks/Handshake Snooper/attack.sh b/attacks/Handshake Snooper/attack.sh index d93dc56..61c26de 100755 --- a/attacks/Handshake Snooper/attack.sh +++ b/attacks/Handshake Snooper/attack.sh @@ -45,8 +45,8 @@ handshake_snooper_arbiter_daemon() { trap handshake_snooper_arbiter_daemon_abort SIGABRT - source lib/HashUtils.sh - source lib/ColorUtils.sh + source "$FLUXIONLibPath/HashUtils.sh" + source "$FLUXIONLibPath/ColorUtils.sh" # Cleanup files we've previously created to avoid conflicts. sandbox_remove_workfile "$FLUXIONWorkspacePath/capture/dump-*" diff --git a/fluxion.sh b/fluxion.sh index 3634f0f..3dc4099 100755 --- a/fluxion.sh +++ b/fluxion.sh @@ -67,14 +67,14 @@ fi # ============================================================ # # =================== < Library Includes > =================== # # ============================================================ # -source "$FLUXIONPath/lib/installer/InstallerUtils.sh" -source "$FLUXIONPath/lib/InterfaceUtils.sh" -source "$FLUXIONPath/lib/SandboxUtils.sh" -source "$FLUXIONPath/lib/FormatUtils.sh" -source "$FLUXIONPath/lib/ColorUtils.sh" -source "$FLUXIONPath/lib/IOUtils.sh" -source "$FLUXIONPath/lib/HashUtils.sh" -source "$FLUXIONPath/lib/Help.sh" +source "$FLUXIONLibPath/installer/InstallerUtils.sh" +source "$FLUXIONLibPath/InterfaceUtils.sh" +source "$FLUXIONLibPath/SandboxUtils.sh" +source "$FLUXIONLibPath/FormatUtils.sh" +source "$FLUXIONLibPath/ColorUtils.sh" +source "$FLUXIONLibPath/IOUtils.sh" +source "$FLUXIONLibPath/HashUtils.sh" +source "$FLUXIONLibPath/Help.sh" # NOTE: These are configured after arguments are loaded (later).