(3) Analysis Of User Behavior And Data Formats Flashcards

1
Q

What is User Behavior Analysis

A

User Behavior Analysis involves an understanding of good behavior and bad behavior

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

What is abnormal account activity?

A

Abnormal account activity depends on the user account. A good user is probably not going to try to get admin rights, log in way after hours, from another country, etc.

Baselines and behavioral analysis are normally used to ID users who may in fact be doing something incorrect

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

Describe PowerShell

A

PowerShell is a native scripting environment for Windows. Originally it was made for Windows system admins and is now open sourced for Windows, Linux, and Mac

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

How is shell scripting useful in terms of resources

A

Shell scripting is a good way to leverage resources that can be expected to be available on most systems.

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

Describe the restricted, allsigned, and remotesigned execution policies in PowerShell

A

Restricted is the default PowerShell execution policy, and it blocks all PowerShell scripts

AllSigned requires all PowerShell scripts that you run are signed by a trusted publisher

RemoteSigned allows the execution of PowerShell scripts that you use on a local machine but it requires scripts downloaded from the Internet be signed by a trusted publisher

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

Describe the Unrestricted and Bypass execution policies

A

Unrestricted allows the execution of any PowerShell script but prompts a confirmation of the request allowing you to run a script downloaded from the Internet

Bypass lets a PowerShell script run and does not produce any warnings for scripts downloaded from the internet

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

What is the syntax to set an execution policy to remote signed in PowerShell

A

Set-ExecutionPolicy RemoteSigned

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