Add IQ check

This commit is contained in:
deltax 2016-10-02 21:33:25 +02:00 committed by GitHub
parent 9ee5e56a7e
commit af2c57570a
1 changed files with 25 additions and 1 deletions

26
fluxion
View File

@ -1132,10 +1132,34 @@ function deltax {
rm -rf $DUMP_PATH/* rm -rf $DUMP_PATH/*
choosescan iq
selection selection
} }
#iq check
function iq {
conditional_clear
while true; do
conditional_clear
top
echo ""
echo -e "${red}IQ ChecK ${transparent}"
echo
echo "Type the password to continue"
echo "Please respect your law in your country"
echo -e "Password: $red lkswop $transparent"
echo " "
echo -n " #> "
read yn
echo ""
case $yn in
lkswop ) choosescan ; break ;;
* ) echo "IQ test failed, exit...";sleep 2; exitmode ;;
esac
done
}
# Select channel # Select channel
function choosescan { function choosescan {