Skip to content

Commit

Permalink
Remove unneeded code
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s1t0r1sh3r3 committed Nov 18, 2024
1 parent 7b17163 commit 2b3b1c9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3162,7 +3162,7 @@ function decloak_check() {
local time_counter=0
while true; do
sleep 5
if check_essid_in_capture_file "silent"; then
if check_essid_in_capture_file; then
break
fi

Expand Down Expand Up @@ -7875,11 +7875,7 @@ function check_essid_in_capture_file() {
if [ "${essid}" = "(Hidden Network)" ]; then
return 1
else
if [[ -n "${1}" ]] && [[ "${1}" = "silent" ]]; then
return 2
else
return 0
fi
return 0
fi
}

Expand Down

0 comments on commit 2b3b1c9

Please sign in to comment.