blogng/blog/2014-08-16-automatic-log-in-for-act-broadband.markdown
Dhananjay Balan 3a30fb8a07 Compatibility with Octopress site.
Don't break urls.
 1. New Route function which generates routes compatible with old blog.
 2. Renamed posts folder to blog.
2017-01-31 20:44:01 +01:00

723 B

layout title date comments categories
post Automatic log-in for ACT Broadband 2014-08-16 19:14 true
scripts
bangalore
ACT broadband

In my openion ACT is the best ISP in Bangalore, I found this network to be much better than any other provider in terms of reliability and the bandwidth, they seem very hacker friendly too, logging in as straightforward as a simple HTTP POST.

I have this script running in my router so that I never have to bother logging in.

#!/bin/bash

USERNAME=""
PASSWORD=""

curl --data 'act_username=${USERNAME}&act_password=${PASSWORD}&login=login' \
  http://portal.acttv.in -o /dev/null