Section 10 Secure Software Development Flashcards
- Planning and analysis
- Software/Systems Design
- Implementation
- Testing
- Integration
- Deployment
- Maintenance
SDLC Phasing
Software development is performed in time boxed or small increments to allow more adaptivity to change.
Agile
Software development and information technology operations.
Dev Ops
Applications should be deployed using code signing to ensure the program is not changed inadvertently or maliciously prior to delivery to an end user.
Authenticity and Integrity
Layering of security controls is more effective and secure than relying on a single control.
Defense in Depth
Any input that is received from a user should undergo input validation prior to allowing it to be utilized by an application.
Never Trust User Input
Users and processes should be run using the least amount of access necessary to perform a given function.
Least Privilege
Default installations should include secure configurations instead of requiring an administrator or user to add in additional security.
Secure Defaults
Applications should be coded to properly conduct error handling for exceptions in order to fail securely instead of crashing.
Fail Security
If a vulnerability is identified, then it should be quickly and correctly patched to remove the vulnerability.
Fix Security Issues
SDK’s must come from trusted sources to ensure no malicious code is being added.
Rely on Trusted SDK’s
Occurs when a tester is not provided with any information about the system or program prior to conducting the test.
Blackbox Testing
Occurs when a tester is provided full details of a system including the source code, diagrams, and user credentials in order to conduct the test.
Whitebox Testing
A mix of blackbox and whitebox testing where the tester is given some amount of information about he system, but conducts his testing as if he doesn’t have full access to it.
Graybox Testing
Provides control over what the application should do when faced with a runtime or syntax error.
Structured Exception Handling (SEH)
Application verify that information received from a user matches a specific format or range of values.
Input Validation