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).