Extra Terms Flashcards
What is PKI?
A framework of programs, procedures, communication protocols, and public key cryptography that enables a diverse group of individuals to communicate securely.
What does OWASP stand for?
Open Web Application Security Project, an international nonprofit that focuses on identifying software vulnerabilities and educating developers in the practice of secure coding.
What are Joint Operating Agreements?
Agreements that provide nearby relocation sites so disruption is limited to the organization’s own facility/campus and can be addressed at a different location.
What are the layers of the OSI Model?
Physical; Data Link; Network; Transport; Session; Presentation; Application.
What is the Cross-Certification Model?
A model where every participating organization has to review and approve every other organization; does not scale well.
What is FPE?
Format-Preserving Encryption, a technique used to scramble contents of data using a mathematical algorithm while keeping the structural arrangement of the data.
What are the Logging Levels?
OFF > FATAL > ERROR > WARN > INFO > DEBUG > TRACE > ALL.
What does OFF mean in Logging Levels?
Used to turn off logging.
What does FATAL mean in Logging Levels?
Indicates the application is about to stop due to a serious problem/corruption; the situation is catastrophic.
What does ERROR mean in Logging Levels?
Indicates an inability to access a service/file; a severe issue is stopping functions within the application from operating efficiently.
What does WARN mean in Logging Levels?
Indicates a detected unexpected application problem.
What does INFO mean in Logging Levels?
Indicates normal behavior of applications.
What does DEBUG mean in Logging Levels?
Provides diagnostic information in a detailed manner for diagnosing, troubleshooting, or testing an application.
What does TRACE mean in Logging Levels?
Captures all details about the behavior of the application; used to see events within the application and what happened in third-party libraries.
What does ALL mean in Logging Levels?
Shows all or custom logged definitions.