(3) Analysis Of User Behavior And Data Formats Flashcards
What is User Behavior Analysis
User Behavior Analysis involves an understanding of good behavior and bad behavior
What is abnormal account activity?
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
Describe PowerShell
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 is shell scripting useful in terms of resources
Shell scripting is a good way to leverage resources that can be expected to be available on most systems.
Describe the restricted, allsigned, and remotesigned execution policies in PowerShell
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
Describe the Unrestricted and Bypass execution policies
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
What is the syntax to set an execution policy to remote signed in PowerShell
Set-ExecutionPolicy RemoteSigned