Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

**ANSWER NEEDED IN PYTHON** **STARTER CODE** **PASSWORDS** CS 2302 Data Structures Fall 2018 Lab 1- Option C (Password Cracking) Overview A cyber-security company called UltraHackz

**ANSWER NEEDED IN PYTHON**

image text in transcribed

image text in transcribed

**STARTER CODE**

image text in transcribed

**PASSWORDS**

image text in transcribedimage text in transcribed

CS 2302 Data Structures Fall 2018 Lab 1- Option C (Password Cracking) Overview A cyber-security company called UltraHackz is interested in finding talented computer science students. To do so, they post a challenge you find very interesting. They upload a txt file that contains 100 records containing information about 100 system accounts. Each record has a username, a salt value, and a hashed password. OTEF 6D4503 9018 786 2 9A129A 045 4C34 78F0 Source https://www.cio.com/article 3019670/securitycybersecurity-needs-transformational-leadership-fr Each record is stored as follows: username>, That is, there is one line per record in the file, where the three values are separated by commas. Your job is to find the real password associated with each of the accounts. They tell you that all passwords contain only numbers (0-9), and that each password is at least 3 characters long and at most 7 characters long. Your task is to implement a recursive method to generate all possible passwords (brute force). To make it interesting, UltraHackz posted the following rules: The method MUST be recursive Numbers 3 and 7 are not be hard-coded inside the method that generates the passwords; they should be parameters of the method You can have at most two nested loops inside this method (less than two is perfectly fine as well). . CS 2302 Data Structures Fall 2018 Lab 1- Option C (Password Cracking) Overview A cyber-security company called UltraHackz is interested in finding talented computer science students. To do so, they post a challenge you find very interesting. They upload a txt file that contains 100 records containing information about 100 system accounts. Each record has a username, a salt value, and a hashed password. OTEF 6D4503 9018 786 2 9A129A 045 4C34 78F0 Source https://www.cio.com/article 3019670/securitycybersecurity-needs-transformational-leadership-fr Each record is stored as follows: username>, That is, there is one line per record in the file, where the three values are separated by commas. Your job is to find the real password associated with each of the accounts. They tell you that all passwords contain only numbers (0-9), and that each password is at least 3 characters long and at most 7 characters long. Your task is to implement a recursive method to generate all possible passwords (brute force). To make it interesting, UltraHackz posted the following rules: The method MUST be recursive Numbers 3 and 7 are not be hard-coded inside the method that generates the passwords; they should be parameters of the method You can have at most two nested loops inside this method (less than two is perfectly fine as well)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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_2

Step: 3

blur-text-image_3

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

Spatial Database Systems Design Implementation And Project Management

Authors: Albert K.W. Yeung, G. Brent Hall

1st Edition

1402053932, 978-1402053931

More Books

Students also viewed these Databases questions

Question

How to solve maths problems with examples

Answered: 1 week ago