2.3 Secure Deployments / Automation and Scripting Flashcards

1
Q

What is the best way to confirm the secure baseline of a deployed application instance?

A

Perform an integrity measurement. These should be performed often and checked against well-defined baselines. If it fails it requires immediate correction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an integrity measurement?

A

It’s a check for the secure baseline of:

Firewall settings
Patch levels
OS versions
Any other security components associated with the application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Where is the best place to test and incrementally develop code/applications?

A

Sandbox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What team verifies that features and functionality of an application are working properly?

A

The QA team

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the final area of the testing before the application goes to the production environment?

A

The Staging environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the Staging environment?

A

This is an area that acts much like the production environment. It will even use copies of production data to test the app. Performance, usability and features will be tested.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What kind of challenges arise when the new app is deployed?

A

You may have to train users on new app/features. Possible logistical challenges such as deploying new servers, new software, or interrupting service.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Because application development is a constantly changing process, what can we do to plan for those changes?

A

We can implement automation and scripting to help us react to problems that may occur when the app is executed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is continuous monitoring?

A

Maintaining ongoing awareness of information security, vulnerabilities, and threats to support organizational risk management decisions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is continuous integration?

A

A DevOps software development practice where developers regularly merge their code changes into a central repository, after which automated builds and tests are run.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is continuous delivery?

A

Continuous delivery is an extension of continuous integration since it automatically deploys all code changes to a testing and/or production environment after the build stage.

This means that on top of automated testing, you have an automated release process and you can deploy your application any time by clicking a button.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is continuous deployment?

A

Continuous deployment goes one step further than continuous delivery. With this practice, every change that passes all stages of your production pipeline is released to your customers. There’s no human intervention, and only a failed test will prevent a new change to be deployed to production.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly