You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.3 KiB

  1. #!/bin/sh
  2. # captive portal auto-login script for vodafone hotspots (DE)
  3. # Copyright (c) 2021-2022 Dirk Brenken (dev@brenken.org)
  4. # This is free software, licensed under the GNU General Public License v3.
  5. # set (s)hellcheck exceptions
  6. # shellcheck disable=1091,3040
  7. . "/lib/functions.sh"
  8. export LC_ALL=C
  9. export PATH="/usr/sbin:/usr/bin:/sbin:/bin"
  10. username="${1}"
  11. password="${2}"
  12. trm_domain="hotspot.vodafone.de"
  13. trm_useragent="$(uci_get travelmate global trm_useragent "Mozilla/5.0 (Linux x86_64; rv:90.0) Gecko/20100101 Firefox/90.0")"
  14. trm_captiveurl="$(uci_get travelmate global trm_captiveurl "http://detectportal.firefox.com")"
  15. trm_maxwait="$(uci_get travelmate global trm_maxwait "30")"
  16. trm_fetch="$(command -v curl)"
  17. # get sid
  18. #
  19. redirect_url="$(${trm_fetch} --user-agent "${trm_useragent}" --referer "http://www.example.com" --connect-timeout $((trm_maxwait / 6)) --write-out "%{redirect_url}" --silent --show-error --output /dev/null "${trm_captiveurl}")"
  20. sid="$(printf "%s" "${redirect_url}" 2>/dev/null | awk 'BEGIN{FS="[=&]"}{printf "%s",$2}')"
  21. [ -z "${sid}" ] && exit 1
  22. # get session
  23. #
  24. raw_html="$("${trm_fetch}" --user-agent "${trm_useragent}" --referer "http://${trm_domain}/portal/?sid=${sid}" --silent --connect-timeout $((trm_maxwait / 6)) "https://${trm_domain}/api/v4/session?sid=${sid}")"
  25. session="$(printf "%s" "${raw_html}" 2>/dev/null | jsonfilter -q -l1 -e '@.session')"
  26. [ -z "${session}" ] && exit 2
  27. ids="$(printf "%s" "${raw_html}" 2>/dev/null | jsonfilter -q -e '@.loginProfiles[*].id' | sort -n | awk '{ORS=" ";print $0}')"
  28. for id in ${ids}; do
  29. if [ "${id}" = "4" ]; then
  30. login_id="4"
  31. access_type="csc-community"
  32. account_type="csc"
  33. break
  34. fi
  35. done
  36. [ -z "${login_id}" ] && exit 3
  37. # final login request
  38. #
  39. if [ "${login_id}" = "4" ] && [ -n "${username}" ] && [ -n "${password}" ]; then
  40. raw_html="$("${trm_fetch}" --user-agent "${trm_useragent}" --referer "http://${trm_domain}/portal/?sid=${sid}" --silent --connect-timeout $((trm_maxwait / 6)) --data "loginProfile=${login_id}&accessType=${access_type}&accountType=${account_type}&password=${password}&session=${session}&username=${username}" "https://${trm_domain}/api/v4/login?sid=${sid}")"
  41. fi
  42. success="$(printf "%s" "${raw_html}" 2>/dev/null | jsonfilter -q -l1 -e '@.success')"
  43. [ "${success}" = "true" ] && exit 0 || exit 255