How to enter login information for a website from the linux command line

25

14

My internet connection is provided by the university. It is protected to a username/password combination. This means when I start up my computer, I have to start a web browser and open an arbitrary website. I am then redirected to a page, which (among other things) contains two forms. In these I have to input username and password. I managed to do this with firefox (which can save the password) and also with links (which loads faster and from the command line).

Is there any way to automate the login process using a bash script? This would allow doing the login when booting, so that it is already there when I start the X server.

Tim

Posted 2013-09-04T12:15:12.827

Reputation: 1 811

1You might be able to call the login script from the form's ACTION attribute with curl directly. – terdon – 2013-09-04T12:56:59.757

Many Universities also offer a network that uses "Enterprise Authentication" (i.e. using a username/password for the network connection itself, instead of waiting until you try to access a page to ask for credentials). The ability to store such network credentials is built in the OS. It's also much more secure because it means that it's harder for others to snoop on your connection. If your University supports that, you should switch to it. – Moshe Katz – 2013-09-09T19:58:08.713

It would also help us if you can give an (anonymized) example of the URL you are redirected to when you log in. (Anonymized here means that you should remove your MAC Address and/or IP address from the URL if they are there, but leave everything else, including the name of the University.) – Moshe Katz – 2013-09-09T20:03:28.783

Answers

5

I finally found a way to automatically log in using elinks. It works and it is even easy to configure!

Two options need to be set. This can done by adding the following lines in ~/.elinks/elinks.conf (if the file is not there, create one) or by changing the values at the respective positions in the options dialog within elinks:

    # Save username and password for later use
set document.browse.forms.show_formhist = 1
    # Do not ask for confirmation before a form is submitted
set document.browse.forms.confirm_submit = 0

Steps for a scriptable autologin are then:

  • Set those two options
  • Open the login page in elinks, fill the forms and submit them.
  • Choose to remember name and password for later use.
  • Close elinks
  • Run elinks -auto-submit http://somesite.com

The latter command should perform the automatic login without further user interaction.

I actually use timeout 1m elinks -auto-submit http://somesite.com &, so that I do not have an idling elinks process running in the background all the time.

Tim

Posted 2013-09-04T12:15:12.827

Reputation: 1 811

16

You can try it out with curl, you can Simply use curl like this to login to web page :

curl --user name:password http://somesite.com -v 

You can pass Data to website like this from Stackoverflow answer

    curl -b cookies.txt -c cookies.txt --data "Username=xx&Password=xx&Login=Login" [urlthatyour form submits]

you need cookies if you want to make another curl request after logging in. the session id in cookies will help next curl request authorized.

If you don't want cookies you can use

curl --data "Username=xx&Password=xx&Login=Login" [url that your form submits]

You can additionally refer here for Special Commands

BlueBerry - Vignesh4303

Posted 2013-09-04T12:15:12.827

Reputation: 7 221

1I am not able to try this right now, but I expect that this will only work when there is a dialog box asking for the password when opening the site. In my case there are just two forms. One for the name and one for the password. I will change the question to make this clearer. – Tim – 2013-09-04T12:33:32.913

@Tim added how to pass data,normally You would need to find out what page the page requests to (or the action value of the page). – BlueBerry - Vignesh4303 – 2013-09-04T14:03:14.060

This sounded as if it could work, but sadly it didn't. When looking at the output of curl suggests that the Username field is correctly filled with the correct value, but the Password field is not (this may be correct as a security measure). I am not sure if the submit button was actually triggered. Does it matter what value is passed to Login? – Tim – 2013-09-06T14:07:40.523

3

A simple way to script this is with Selenium.

You can use their Firefox "Test Recorder" plugin to record a test of yourself logging in to the network, and then play back the test.

Moshe Katz

Posted 2013-09-04T12:15:12.827

Reputation: 2 706

0

Yes, there is a very simple way to login to your university's internet.You can use the 'Lynx' web browser which is a text-based browser, designed for use on terminal. So, here is the way:

$ echo "username=myname&password=mypassword" | lynx "url of the form" -post_data

where, 'username' is the name of the field corresponding to the user name in the form and 'password' is the name of the field corresponding to the password field and 'myname' and 'mypassword' are the corresponding values to be filled in the form. You can find field name by using 'Inspect Element' from any browser. I tried with curl as directed in the answer by BlueBerry - Vignesh4303 but didn't work.

Kushagra Sharma

Posted 2013-09-04T12:15:12.827

Reputation: 1

0

You can get an add-on for your browser which will auto log-in to websites with saved passwords. I used AutoAuth with firefox. Then you login once and save your credentials, then write a script that just has

#!/bin/bash
firefox https://website address goes here

When executed, it will go and auto login. I tried with multiple sites and it worked well.

myfavoritenoisemaker

Posted 2013-09-04T12:15:12.827

Reputation: 1