All Projects → RajuKoushik → Automated-Login

RajuKoushik / Automated-Login

Licence: other
This is a bash script for automated login to a portal built using 'lynx'. The main motive behind this script is, an automated form entry and submission for any portal without actually visting the website.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Automated-Login

Bash
Collection of bash scripts I wrote to make my life easier or test myself that you may find useful.
Stars: ✭ 19 (+46.15%)
Mutual labels:  bash-script
l2cu
L²CU: LDraw Linux Command line Utility
Stars: ✭ 14 (+7.69%)
Mutual labels:  bash-script
coinbash
💰 A bash script (CLI) for displaying crypto currencies market data in a terminal 🖥
Stars: ✭ 110 (+746.15%)
Mutual labels:  bash-script
bashew
bash script micro-framework - from small stand-alone script to complex projects with CI/CD and testing
Stars: ✭ 139 (+969.23%)
Mutual labels:  bash-script
github-to-wordpress-deploy-script
Bash script to handle tagging on GitHub and deployment to WordPress SVN
Stars: ✭ 21 (+61.54%)
Mutual labels:  bash-script
tuterm
A better way to learn CLI programs.
Stars: ✭ 22 (+69.23%)
Mutual labels:  bash-script
dotfiles
my dot files with git and docker extension for windows and linux
Stars: ✭ 13 (+0%)
Mutual labels:  bash-script
pdf-scripts
📑 Scripts to repair, verify, OCR, compress, wrangle, crop (etc.) PDFs
Stars: ✭ 33 (+153.85%)
Mutual labels:  bash-script
lazyaircrack
Automated tool for WiFi hacking.
Stars: ✭ 301 (+2215.38%)
Mutual labels:  bash-script
git-commands-workflows
🚀 All the git commands and workflows you need to know
Stars: ✭ 50 (+284.62%)
Mutual labels:  bash-script
Converto
Installing Kali linux on Vps Server
Stars: ✭ 100 (+669.23%)
Mutual labels:  bash-script
pdfScale
Bash Script to Scale and Resize PDFs using Ghostscript
Stars: ✭ 131 (+907.69%)
Mutual labels:  bash-script
rwloadsim
RWP*Load Simulator - your tool for scripting, simulation and much more. Like having a bit of bash and SQL, a nip of C or Java, a dash of awk, a grain of sed plus drops of secret sauce in one single tool. See https://blogs.oracle.com/database/rwploadsim-oracle-db-performance-simluator for the announcement on the Oracle database blog.
Stars: ✭ 26 (+100%)
Mutual labels:  bash-script
CTF-Script-And-Template-Thrift-Shop
[180+ scripts] There are a few genuine gems in there. And a lot of spaghetti code. Most of these scripts were for solving CTF's. If you googles something for a CTF and landed here look at the scripts they're all fairly malleable. Sorry for the shitty naming conventions (not really). If you are a recruiter stop. I wont be able to rewrite half thi…
Stars: ✭ 38 (+192.31%)
Mutual labels:  bash-script
kindle-dict
English-Vietnamese Dictionary for Kindle
Stars: ✭ 19 (+46.15%)
Mutual labels:  bash-script
Reconky-Automated Bash Script
Reconky is an great Content Discovery bash script for bug bounty hunters which automate lot of task and organized in the well mannered form which help them to look forward.
Stars: ✭ 167 (+1184.62%)
Mutual labels:  bash-script
OSCP-Prep
Contained is all my reference material for my OSCP preparation. Designed to be a one stop shop for code, guides, command syntax, and high level strategy. One simple clone and you have access to some of the most popular tools used for pentesting.
Stars: ✭ 33 (+153.85%)
Mutual labels:  bash-script
SuperShaper-SOHO
Packet filtering / QoS setup for typical home/small office
Stars: ✭ 14 (+7.69%)
Mutual labels:  bash-script
defaults.sh
 User Defaults Plist → Shell Script converter with Regex filtering
Stars: ✭ 20 (+53.85%)
Mutual labels:  bash-script
PXESetupWizard
PXE Setup Wizard. Netboot Debian, Ubuntu, System Rescue CD, FreeDOS and more.
Stars: ✭ 96 (+638.46%)
Mutual labels:  bash-script

Automated-Login

This is a bash script for an automated login to a portal built using 'lynx'. The main motive behind this script is, an automated form entry and submission for any portal without actually visting the website. Now you need not have to visit a portal and enter the details manually.Just run the 'login' bash file(.sh file) to automate your portal entry.
This bash script uses lynx.So, you have to make sure that you have installed 'lynx' on your linux based system.

For installation of 'lynx':

->Open your command prompt.

->Then enter the following command.

  `sudo apt-get install lynx`

This is a bash code for our college(IIIT Vadodara) portal which assists the users in automatic login.

Download the bash code and change the username and password and then run it.(Whoa! You have logged in now).

**Command to run a bash code on terminal-** `chmod +x file_name.sh`

./file_name.sh

For the execution of the bash file on boot :-

You have to add the command to the rc.local file.(sudo permissions are required gor editing the rc.local file)

Command to open the rc.local file-

`sudo gedit /etc/rc.local`

The 'login' bash script should be added inbetween and now, the whole code should be added in the rc.local (before exit 0) for its automatic execution after 20 seconds after boot.

` (sleep 20
......
)& `

Automated execution of the bash file after connecting to a wifi-network-

For this to happen the Network Manager has to be installed.

Command to install Network Manager-

sudo apt-get install NetworkManager

Then place this in the following directory.

/etc/NetworkManager/dispatcher.d/

Now the script gets automatically executed when a wifi connection is established.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].