Toggle navigation
Home
Blog
Carnivorous Plants
Critter Camera
Publications
Projects
Project Supervision
Courses
Sonoma State University
Department of Computer Science
CS-370: Software Design and Development
Exercise 14: First Code Review
Objective:
To evaluate and provide feedback for a CS-370 team's project software.
Evaluation categories and critiera
Readability
Are variables written with descriptive names indicative of the type of data the variable stores?
If applicable, are objected-oriented class names descriptive of the functionality the class performs?
If applicable, are procedure names or function names descriptive of the functionality they perform?
To what extent are comments present throughout the software? If applicable, are comments relevant and informative?
Modular design
Is the software written in a modular style with minimal repeated code?
If applicable, is there redundancy or data-duplication occuring in the database? Where?
Dependencies
Except for MySQL, does the software rely on any external software dependencies (i.e. libraries or applications)? Which applications?
Security
Is the data (e.g. usernames) sanitized (escaped) before being displayed within an HTML document? Specifically is there a possibility for an HTML injection attack?
Is the data (e.g. usernames) sanitized (escaped) before being inserted, selected, updated in the database management system? Specifically, is their a possibly for an SQL injection attack?
Is sensitive data encrypted before being stored in the database management system?
If applicable, what sort of encryption scheme is used to encrypt/decrypt data stored in the database?
Are there any other security vulnerabilities not mentioned previously?
Maintainability
If you inherited this project as-is, how easily could you refactor the code and maintain it? Explain your answer. Provide examples.
Standards compliance
Does all dynamically-generated HTML output conform to HTML 5 standard? Explain your answer.
Does the software utilize ANSI SQL standard structured queries? Explain your answer.
Overall project assessment
What is your overall assessment of the project?
What (if any) feedback should the developers of this software know that hasn't been mentioned previously?
Uploading your solution:
This is a team exercise.
Please write the names of all team members who contributed to this exercise. Only one team member needs to submit the exercise to Canvas. All team members whose name is on the exercise will receive credit.