blogng/blog/2014-08-16-automatic-log-in-for-act-broadband.markdown

24 lines
707 B
Markdown
Raw Permalink Normal View History

2017-01-22 21:30:42 +00:00
---
comments: true
date: 2014-08-16 19:14
layout: post
tags: scripts, bangalore, act broadband
title: Automatic log-in for ACT Broadband
2017-01-22 21:30:42 +00:00
---
In my openion [ACT](http://portal.acttv.in) is the best ISP in [Bangalore](http://en.wikipedia.org/wiki/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.
```bash
#!/bin/bash
USERNAME=""
PASSWORD=""
curl --data 'act_username=${USERNAME}&act_password=${PASSWORD}&login=login' \
http://portal.acttv.in -o /dev/null
```