parent
bb5dc2786e
commit
b615cf7d09
|
@ -370,7 +370,7 @@ if [ ! "$HandshakeSnooperCLIArguments" ]; then
|
||||||
getopt --options="v:i:j:a" \
|
getopt --options="v:i:j:a" \
|
||||||
--longoptions="verifier:,interval:,jammer:,asynchronous" \
|
--longoptions="verifier:,interval:,jammer:,asynchronous" \
|
||||||
--name="Handshake Snooper V$FLUXIONVersion.$FLUXIONRevision" -- "$@"
|
--name="Handshake Snooper V$FLUXIONVersion.$FLUXIONRevision" -- "$@"
|
||||||
);n then
|
);then
|
||||||
echo -e "${CRed}Aborted$CClr, parameter error detected..."
|
echo -e "${CRed}Aborted$CClr, parameter error detected..."
|
||||||
sleep 5
|
sleep 5
|
||||||
fluxion_handle_exit
|
fluxion_handle_exit
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# ================== < FLUXION Parameters > ================== #
|
# ================== < FLUXION Parameters > ================== #
|
||||||
# ============================================================ #
|
# ============================================================ #
|
||||||
# Path to directory containing the FLUXION executable script.
|
# Path to directory containing the FLUXION executable script.
|
||||||
readonly FLUXIONPath=$(dirname "$(readlink -f "$0")")
|
readonly FLUXIONPath=$(dirname $(readlink -f "$0"))
|
||||||
|
|
||||||
# Path to directory containing the FLUXION library (scripts).
|
# Path to directory containing the FLUXION library (scripts).
|
||||||
readonly FLUXIONLibPath="$FLUXIONPath/lib"
|
readonly FLUXIONLibPath="$FLUXIONPath/lib"
|
||||||
|
@ -693,7 +693,7 @@ fluxion_set_language() {
|
||||||
if [ ! "$FluxionLanguage" ]; then
|
if [ ! "$FluxionLanguage" ]; then
|
||||||
# Get all languages available.
|
# Get all languages available.
|
||||||
local languageCodes
|
local languageCodes
|
||||||
readarray -t languageCodes < <(ls 1 language | sed -E 's/\.sh//')
|
readarray -t languageCodes < <(ls -1 language | sed -E 's/\.sh//')
|
||||||
|
|
||||||
local languages
|
local languages
|
||||||
readarray -t languages < <(
|
readarray -t languages < <(
|
||||||
|
@ -1693,7 +1693,7 @@ fluxion_set_attack() {
|
||||||
fluxion_target_show
|
fluxion_target_show
|
||||||
|
|
||||||
local attacks
|
local attacks
|
||||||
readarray -t attacks < <(ls 1 "$FLUXIONPath/attacks")
|
readarray -t attacks < <(ls -1 "$FLUXIONPath/attacks")
|
||||||
|
|
||||||
local descriptions
|
local descriptions
|
||||||
readarray -t descriptions < <(
|
readarray -t descriptions < <(
|
||||||
|
|
Loading…
Reference in New Issue