CYB 135 Wk 3 – Apply: Labs

0 items
CYB 135 Wk 3 - Apply: Labs
CYB 135 Wk 3 – Apply: Labs
$10.00
  • Description

CYB 135 Wk 3 – Apply: Labs

Complete zyLabs 3.12–3.14 in zyBooks. You have unlimited attempts in Develop mode. Toggle to Submit mode for a grade

Securing a network from attacks means a network administrator is watching traffic and user activity. Change detection (CD) is a method used to track changes in your network. CD can detect files accessed during off hours to more complex algorithmic detections added to software applications that manage this process.

This program is going to manage user login times and attempt to detect any change in a users typical login attempts. It will use an input file to store data and read the file using the csv.reader( ) method. The file will contain a list of login_names, followed by login_time separated by commas.

Write a program that first reads in the name of an input file, reads the information stored in that file and determines if the user login has occurred at off hour times. The company employees work from 9 am to 5 pm so any other time would be an off hour login attempt. If the login attempt is made after hours, store the user name and login time in a dictionary with the user name as the key. Display all anomaly attempts at the end of the program. If there are no questionable login attempts display No anomaly login attempts