(3) Service and App Related Issue Investigations Flashcards

1
Q

What common monitoring areas can app and service monitoring be broken down into?

A

App and Service monitoring can be broken down into a few different areas, such as:

-Is the service up or down?

-Performance test, is it doing its job properly?

-Transactional logging, information about what actually happens on the system is recorded

-App or Service logging, logs about the workings or status of a service

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

Explain where application logs fit into investigations regarding service and app related issues

A

App logs are very important, but they require knowledge and skill to use effectively

Linux logs can be found in /var/log

Windows app logs are in Windows logging systems

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

What does a security professional need to set up in before an incident happens in regards to services and apps?

A

Security professionals need to make sure that logging tasks are already set up and confirmed working before an incident happens so that the logs can help in the event of an investigation

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

How do security professionals need to handle new account creation to help keep services and apps safe?

A

Security pros need to focus on cloud hosted and on premise apps, but specifically need to focus on privileged accounts.

Additionally, monitoring of bulk accounts, or accounts that are created now and again or from non traditional locations are very important

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

Where can accounts be created on an org system?

A

Accounts can be created within specific apps or on Operating System levels too

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

What are some non security related problems that can occur in systems?

A

Application or service specific problems, such as authentication errors, service dependency issues, and permission problems

App or services that don’t start on boot, because of an error, or if the service is turned off

Service failure, which are a lot of times caused by updates, patches, or other changes

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

What additional tools can be used to help protect apps and services?

A

Additional tools that can be used to protect apps and services include:

-Antimalware, Anti-Malware, and Endpoint Detection and Response (EDR) tools

-File Integrity checking tools

-Allow List Tools

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

What tools can be used to check Windows service status?

A

Various tools can be used to check Windows Service Status. They include:

-Services administrative tool (services.msc)

-Command line tools like sc, the Service controller application (you can use command line flags that set the start type for service, specify the error level it should set if it fails during boot, and provide details of the service

-Powershell also has a Start-Service tool to help you interact with services on local and non local Windows hosts

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

How can Linux services be checked?

A

Linux services can be checked by using the service command. service[servicename] status will give many status updates on various services.

To list the state of all services, you would type in service –status-all

services that use init.d are checked by doing /etc/init.d/servicename status

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

How can Windows logs be checked for application errors?

A

Windows apps (most of them anyway) use the Windows Application log in Windows event viewer

They can be centralized by using SCOM (System Center Operations Manager)

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

Describe the process for checking Linux Application logs

A

To check Linux application logs, you’ll need to check the /var/log directory or the app log location for the app in question.

Using the tail command, logs can be examined while an app is tested

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

What is Behavior Analysis of Applications?

A

Behavior Analysis is all about knowing what apps are supposed to do and what to look for to help figure out what is wrong when they don’t do what they should do.

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

What are some important things to consider in the subject of application behavior analysis?

A

Conducting proper behavior analysis of applications involves:

Documenting the apps normal behavior. What apps should it connect to and how should those connections be established?

Logging the app activity

Behavior analysis using antimalware tools and security systems to flag when behaviors are not what they should be

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