List and describe the choices an organization has when setting policy about how to employ digital forensics.

What will be an ideal response?


An organization must choose one of two approaches when employing digital forensics:
1. Protect and forget. This approach, also known as patch and proceed, focuses on the defense of data and the systems that house, use, and transmit it. An investigation that takes this approach focuses on the detection and analysis of events to determine how they happened and to prevent re-occurrence. Once the current event is over, who caused it or why is almost immaterial.2. Apprehend and prosecute. This approach, also known as pursue and prosecute, focuses on the identification and apprehension of responsible parties, with additional attention to the collection and preservation of potential EM that might support administrative or criminal prosecution. This approach requires much more attention to detail to prevent contamination of evidence that might hinder prosecution.

Computer Science & Information Technology

You might also like to view...

What is the incorrect action and why does it occur?

Specification: The following program should set the dimensions of a Cube object to 3 and calculate the volume and surface area. ``` #include #include using namespace std; class Cube { private: float side; public: Cube() { side = 0.0; } void SetSide(float s) {side = s; } float Volume(){ return pow(side,2); } float SurArea() { return 8.0 * side*side; } }; int main() { Cube MyCube; float CubeVol, CubeSA; MyCube.SetSide(5); CubeVol = MyCube.Volume(); CubeSA = MyCube.SurArea(); return 0; } ```

Computer Science & Information Technology

How did the W3C get started?How did the W3C get started?

What will be an ideal response?

Computer Science & Information Technology

What is slope?

What will be an ideal response?

Computer Science & Information Technology

Your microwave oven uses a(n) __________ operating system to perform its tasks.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology