Skip to content

Dmchale92/apg_challenge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Description

Imagine that Intel Security has just acquired a new security company. Unfortunately, the company has never stored their data in a database and instead uses plain text files. We need to create a way for the new subsidiary to import their malware data into a database. Your task is to create a web interface that accepts file uploads, normalizes the data, and then stores it in a relational database - design is up to you.

Here's what this web-based application does:

  1. Accepts (via a form) a CSV file with the following columns: MD5, ClassificationName, ClassificationType, Size, FileType. You can assume the columns will always be in that order, that there will always be data in each column, that there will always be a header line, and that there will never be a duplicate MD5. An example input file named example_input.csv is included in this repo.
  2. Parses the given file, normalizes the data, and stores the information in a relational database.
  3. After each upload, displays the total amount of each different ClassificationType in the database.

Installation Instructions

  1. First, install the latest distribution of Python 2.7.
  2. Next, use easy_install or pip to install the following dependencies: flask, flask-bootstrap, and werkzeug (pip install flask flask-bootstrap werkzeug).
  3. Next, run AppParser.py (python AppParser.py) to start the application.
  4. Finally, navigate to 127.0.0.1:5000 to use the application.

About

Intel Security Programming Challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 41.1%
  • Python 31.2%
  • JavaScript 22.7%
  • CSS 5.0%