Skip to content

Command line program for indexing a character from a password

Notifications You must be signed in to change notification settings

SneakyShrike/password-character-indexer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

This is a simple program that allows a user to get a certain character from a string by providing the characters place with a number index. This can be useful for some services that require a user to input the 'nth character' from their password instead of the password itself.

How To Use

My intention is that this can be used in a simple command line interface.

To do this you can create a jar file from the source code or use the one I already created under: out\artifacts\password_character_indexer_jar

You can then use the following command: java -jar directory/name-of-file.jar within a Windows command line or a Linux terminal to run it.

Alternatively you can create a batch file for Windows or a shell script for Linux.

For a Windows batch file:

java -jar directory/name-of-file.jar

For a Linux shell script:

#!/bin/bash
java -jar directory/name-of-file.jar

Technologies Used

  • Java