diff options
Diffstat (limited to 'usr/bin/autowifi')
| -rwxr-xr-x | usr/bin/autowifi | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/usr/bin/autowifi b/usr/bin/autowifi index 0eaf72c0..1e5a5a6b 100755 --- a/usr/bin/autowifi +++ b/usr/bin/autowifi @@ -73,14 +73,14 @@ iwlist_scan(){      done; print_iwlist_env ;echo WIFI_COUNT=$count)  }  crack_wifi(){ -    if [ $4 == off ];then +    if [ "$4" == off ];then          encr=open -    elif [ -n "$5" ]; then +    elif [ "$5" -eq 1 ]; then          encr=psk -    elif [ -n "$6" ]; then +    elif [ "$6" -eq 1 ]; then +        encr=wep +    elif [ "$4" == on ]; then          encr=wep -    elif [ $4 == on ]; then -        encr=open      fi      for hack in $(find /usr/lib/autowifi/ -type f); do          key=$($hack $@); | 
