Fixes issue 24

pull/26/merge
trashbo4t 2018-05-13 17:05:07 -04:00 committed by Sebastian Kinne
parent df16e3399b
commit 6ea3677542
3 changed files with 3 additions and 3 deletions

View File

@ -6,5 +6,5 @@
"tetra"
],
"title": "Online Hash Crack",
"version": "1.2"
"version": "1.3"
}

View File

@ -22,7 +22,7 @@ if [ -n "$EMAIL" ]; then
echo -e "" >> ${LOG}
curl -s -v -d emailHashes="${EMAIL}" -d textareaHashes="${HASH}" http://www.onlinehashcrack.com/hash-cracking.php > /dev/null 2>> ${LOG}
curl -s -v -d emailHashes="${EMAIL}" -d textareaHashes="${HASH}" https://www.onlinehashcrack.com/hash-cracking.php > /dev/null 2>> ${LOG}
else
echo -e "Notification email not set in settings." > ${LOG}
fi

View File

@ -25,7 +25,7 @@ if [ -n "$EMAIL" ]; then
echo -e "" >> ${LOG}
curl -s -v -F submit="Submit" -F emailWpa="${EMAIL}" -F wpaFile=@${FILE} http://www.onlinehashcrack.com/wifi-wpa-rsna-psk-crack.php > /dev/null 2>> ${LOG}
curl -s -v -F submit="Submit" -F emailWpa="${EMAIL}" -F wpaFile=@${FILE} https://www.onlinehashcrack.com/wifi-wpa-rsna-psk-crack.php > /dev/null 2>> ${LOG}
fi
else