diff options
Diffstat (limited to 'git-maintenance/internet-access/san-francisco-ca-el-capitan-hotel-wifi.sh')
-rw-r--r-- | git-maintenance/internet-access/san-francisco-ca-el-capitan-hotel-wifi.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/git-maintenance/internet-access/san-francisco-ca-el-capitan-hotel-wifi.sh b/git-maintenance/internet-access/san-francisco-ca-el-capitan-hotel-wifi.sh new file mode 100644 index 0000000..fa1d9af --- /dev/null +++ b/git-maintenance/internet-access/san-francisco-ca-el-capitan-hotel-wifi.sh @@ -0,0 +1,21 @@ +echo +echo "== Trying to log in to wifi, California, San Francisco, El Capitan Hotel. ==" +echo +echo "== Front desk clerk usually opens door for buzzer. ==" +echo +echo "== Script is work in progress ==" + +parseasciinums() { + node -e "asciinums=[$1]; for (let c of asciinums) console.log(String.fromCharCode(c);" +} +formaction="$(parseasciinums 47)" +tokvalue="$(parseasciinums 49,97,101,54,102,101,55,53)" +redirvalue="$(parseasciinums 104,116,116,112,58,47,47,103,111,111,103,108,101,46,99,111,109,47)" +vouchervalue=8479 + +# need url for login. unchecked work below. +url="$(curl -iI google.com | grep Location: | { read key val; echo "$val"; })" +url="${url%/*}" + +# this is hoped to help log in. try and repair. +curl -v "${url}/${formaction}?tok=${tokvalue}&redir=${redirvalue}&voucher=${vouchervalue}" |