These are the variours the projects I made. These projects are mostly related to System Security.
- Linux Command Shell
- Password Strenght Check and Password Generator
Open your Linux Teminal. Enter the Commands as follows:
The Code will take the User Input which are the command and will split the string into various tokens. These tokens are then used in the execute call of C Language. Which checks for the command/tools inside the "bin" directory and execute it accordingly.
Your might think it easy, but the code is a huge headache for beginners like me.
This Project is can used in two ways:
This is used to generate a Strong Password with a certain lenght the User choses. This will also show the strength of the generated password.
This is used the check how strong the user's password. The Strength will be measured based on:
- Minimum 9 Characters
- Atleast 1 Uppercase Letter
- Atleast 1 Lowercase Letter
- Atleast 1 Special Character
Based on these the program will give the result out to the user with "Very Strong" as the highest.
