daily-psk: encode ssid and pass in url

Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Michael Gisbers 2019-03-06 14:43:44 +01:00 committed by Christian Hesse
parent a66713d093
commit 6a048d5681

View file

@ -1,11 +1,13 @@
#!rsc #!rsc
# RouterOS script: daily-psk # RouterOS script: daily-psk
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de> # Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
# Michael Gisbers <michael@gisbers.de>
# #
# update daily PSK (pre shared key) # update daily PSK (pre shared key)
:global Identity; :global Identity;
:global DailyPskMatchComment; :global DailyPskMatchComment;
:global UrlEncode;
:global SendNotification; :global SendNotification;
@ -67,7 +69,7 @@
:set Seen ($Seen, $Ssid); :set Seen ($Seen, $Ssid);
:local Url ("https://www.eworm.de/cgi-bin/cqrlogo-wifi.cgi" . \ :local Url ("https://www.eworm.de/cgi-bin/cqrlogo-wifi.cgi" . \
"?scale=8&level=1&ssid=" . $Ssid . "&pass=" . $NewPsk); "?scale=8&level=1&ssid=" . [ $UrlEncode $Ssid ] . "&pass=" . [ $UrlEncode $NewPsk ]);
:local Attach "qrcode-daily.png"; :local Attach "qrcode-daily.png";
:do { :do {