• Logging in automatically?
    12 replies, posted
At my school, we use something named Lectio, a website where all your stuff is, and we check it several times each day. But everytime we visit the site, we have to write our username and password. This is fair enough, but after the first many times it just gets annoying. Is there any way to make, like, a .bat file or something, that will allow you to simply click it, and then it will open the website and log you in? And no, for some reason the browser doesn't ask if it should remember the password.
Easiest would be to load the login submit page with correct parameters POST or GET and log in that way.
[QUOTE=Codename 47;26446386]And no, for some reason the browser doesn't ask if it should remember the password.[/QUOTE] Go enable "Save website passwords" in the settings. /thread [editline]2nd December 2010[/editline] Although it could be that you don't have the privileges to do this, seeing as it's a school :P
[QUOTE=sim642;26446670]Easiest would be to load the login submit page with correct parameters POST or GET and log in that way.[/QUOTE] I'm interested in this too, how's it done?
[QUOTE=esalaka;26446729]Go enable "Save website passwords" in the settings. /thread [editline]2nd December 2010[/editline] Although it could be that you don't have the privileges to do this, seeing as it's a school :P[/QUOTE] For some reason, the browser will not save the password. [editline]2nd December 2010[/editline] [QUOTE=TerabyteS;26447770]I'm interested in this too, how's it done?[/QUOTE] Yes, please specify!
[QUOTE=TerabyteS;26447770]I'm interested in this too, how's it done?[/QUOTE] [url]http://www.example-code.com/vcpp/http_post_form.asp[/url] or whatever respective language you use? to analyze what you need to POST, just use the firefox tamper data extension or a packet sniffer or actually read the page's source to see what it posts when you submit the form
Make your own login page that uses cookies to remember the login information
[QUOTE=Matthew0505;26457492]Auto login at a school doesn't sound like a good idea[/QUOTE] It's not at school, it's just a website my school uses. And pupils use it at home too. [editline]5th December 2010[/editline] [QUOTE=foszor;26454394]Make your own login page that uses cookies to remember the login information[/QUOTE] How?
Learn a simple language, visual basic etc. [editline]5th December 2010[/editline] Then make an app to open the URL to login with all the data appended to the URL.
Download a browser addon that turns autocomplete on ([url=https://chrome.google.com/extensions/detail/ecpgkdflcnofdbbkiggklcfmgbnbabhh]like this[/url]). It's what I do. It's not programming, but it works.
If you give me a link, maybe I could make a Javascript injection that you save in your bookmarks.
[QUOTE=noctune9;26508758]Download a browser addon that turns autocomplete on ([url=https://chrome.google.com/extensions/detail/ecpgkdflcnofdbbkiggklcfmgbnbabhh]like this[/url]). It's what I do. It's not programming, but it works.[/QUOTE] Neat, it works! Thanks, and thanks to everyone else who answered. The Programming forum is really helpful.
Sorry, you need to Log In to post a reply to this thread.