Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

an active password checker in PHP. The purpose of an active password checker is to prevent the user from selecting a password or password phrase

an "active password checker" in PHP. The purpose of an active password checker is to prevent the user from selecting a password or password phrase that is easily guessed. This may be done by comparing potential passwords with a dictionary, examining the mix of characters selected, checking user information, and so on. Your active password checker must:

1. Make sure that the selected password is at least 8 characters in length.

 

2. Use a dictionary of bad passwords and a rule base, so that you exclude passwords that match known "bad" words. For the words in the bad password dictionary, you may construct your own dictionary as long as it contains at least ten entries which

are bad passwords. Bad words are passwords that are easily guessed. For example, "test," "1234567," "help," " (blank)," and "password."

 

3. You may use any implementation technique that you want. Feel free to experiment with PHP features and programming techniques. You will need to find or install a web server and PHP to run and test your program.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

Heres an example implementation of an active password checker in PHP T... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database System Concepts

Authors: Abraham Silberschatz, Henry F. Korth, S. Sudarshan

7th Edition

0078022150, 978-0078022159

More Books

Students also viewed these Programming questions

Question

In Exercises 1558, find each product. (9 - 5x) 2

Answered: 1 week ago