diff --git a/Basic_Computer_Skills_for_Forensics/0_Win_command_line_tutorial.pptx b/Basic_Computer_Skills_for_Forensics/0_Win_command_line_tutorial.pptx new file mode 100644 index 0000000..53b9edf Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/0_Win_command_line_tutorial.pptx differ diff --git a/Basic_Computer_Skills_for_Forensics/1_Linux_command_line_tutorial.pptx b/Basic_Computer_Skills_for_Forensics/1_Linux_command_line_tutorial.pptx new file mode 100644 index 0000000..1040071 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/1_Linux_command_line_tutorial.pptx differ diff --git a/Basic_Computer_Skills_for_Forensics/2_Advanced_linux_command_line.pptx b/Basic_Computer_Skills_for_Forensics/2_Advanced_linux_command_line.pptx new file mode 100644 index 0000000..98ac789 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/2_Advanced_linux_command_line.pptx differ diff --git a/Basic_Computer_Skills_for_Forensics/workspace/my_batch.bat b/Basic_Computer_Skills_for_Forensics/workspace/my_batch.bat new file mode 100644 index 0000000..12e75ef --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/workspace/my_batch.bat @@ -0,0 +1,3 @@ +@ECHO OFF +ECHO Hello World! +PAUSE diff --git a/Basic_Computer_Skills_for_Forensics/workspace/my_first_file.txt b/Basic_Computer_Skills_for_Forensics/workspace/my_first_file.txt new file mode 100644 index 0000000..233789c --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/workspace/my_first_file.txt @@ -0,0 +1 @@ +"hello world" diff --git a/Basic_Computer_Skills_for_Forensics/workspace/sys_info.bat b/Basic_Computer_Skills_for_Forensics/workspace/sys_info.bat new file mode 100644 index 0000000..9ba57e4 --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/workspace/sys_info.bat @@ -0,0 +1,25 @@ +@ECHO OFF +:: This batch file details Windows 10, hardware, and networking configuration. +TITLE System Info +ECHO Please wait... Checking system information. +:: Section 1: Windows 10 information +ECHO ========================== +ECHO WINDOWS INFO +ECHO ============================ +systeminfo | find "OS Name" +systeminfo | find "OS Version" +systeminfo | find "System Type" +:: Section 2: Hardware information. +ECHO ============================ +ECHO HARDWARE INFO +ECHO ============================ +systeminfo | find "Total Physical Memory" +wmic cpu get name +wmic diskdrive get name,model,size +:: Section 3: Networking information. +ECHO ============================ +ECHO NETWORK INFO +ECHO ============================ +ipconfig | findstr IPv4 +START https://support.microsoft.com/en-us/windows/windows-10-system-requirements-6d4e9a79-66bf-7950-467c-795cf0386715 +PAUSE \ No newline at end of file diff --git a/README.md b/README.md index 8a60fcf..d9e2de9 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,10 @@ ## Table of Contents (updating) +- Basic Computer Skills for Digital Forensics + - Windows Command Line Tutorial + - Linux Command Line Tutorial + - Advanced Linux Command Line Tutorial - Case Study - [Investigating P2P Data Leakage](#Investigating-P2P-Data-Leakage) (added on June 2021) - [Investigating NIST Data Leakage](#Investigating-NIST-Data-Leakage)