JTCyberTech / Cybersecurity-Home-Labs

5 stars 1 forks source link

Mastering Bash Shell Script Lab - READ ME #76

Open JTCyberTech opened 11 months ago

JTCyberTech commented 11 months ago

Mastering Bash Shell Script

Bash scripting plays a crucial role in cybersecurity due to its versatility and automation capabilities. Cybersecurity professionals use Bash scripts to automate repetitive tasks like log analysis, vulnerability scanning, and system monitoring. These scripts enable efficient response to security incidents, streamline security checks, and help in maintaining the integrity of systems and networks. Additionally, Bash scripts are essential for creating custom security tools and performing routine security assessments, enhancing overall defense against cyber threats. Their flexibility and the ability to adapt to changing security needs make Bash scripts an integral component of a cybersecurity professional's toolkit.

Prerequisites

Solve 100 Hands-On Tasks Projects

Three Bash Commands Overview:

Grep Command

Example:

On PuTTY in order to see what files is in the /var/log directory:



Looking into file "dnf.log" with grep command with keyword "error". - Type in: ```grep "error" /var/log/dnf.log```. - Output: Display all the lines that contains the keyword "error" (coded in red) within the "dnf.log" file.



To only count the "total number of lines" that contains the "error" keyword. Use ```-c```. - Type in: ```grep -c "error" /var/log/dnf.log```. - Output: 16. Meaning in the dnf.log file, only 16 lines contains the keyword "error".



To count the "total number of lines" that does not contain the "error" keyword. Use ```-c -v``` - Type in: ```grep -c -v "error" /var/log/dnf.log```. - Output: 398. Meaning in the dnf.log file, 389 lines does not contain the keyword "error".



To ignore lowercase or uppercase within the "error" keyword. Use ```-i```. - Type in: ```grep -i "error" /var/log/dnf.log```. - Output: Display all the line that contains the keyword "error" (coded in red) within the "dnf.log" file without case sensitive. Count with ```-i```. - Type in: ```grep -c -i "error" /var/log/dnf.log```. - Output: 18. Two more lines than without "-i".



Sed Command

- Sed Command: Stands for Stream EDitor, can perform functions like searching, replacing a context and finding some files with insertions and deletions. - Useful: When doing a lot of changing within a file without doing it manually. - Uses: Substitution, find, replace the content within the files. Example: On PuTTY in order to create a new txt file named "dummy": - Type in: ```vi dummy.txt``` and Enter. - ```vi```: visual editor, can edit an existing file or create a new file from scratch. - ```dummy.txt```: using visual editor to create a txt file named "dummy".



- Type in random words inside the dummy.txt - To save press "ESC" and type in: ```:wq!``` and Enter.



To view the content of the "dummy.txt" Use ```cat```. - Type in: ```cat dummy.txt```.



To replace "bash" with "bashscripting" in dummy.txt using sed command. - Type in: ```sed 's/bash/bashscripting/g' dummy.txt```. - ```sed```: Stream EDitor command. - ```s```: substitute. - ```/bash```: the string you want it to be replace. - ```/bashscript```: the string you want to replace with. - ```/g```: global, string that match in the .txt file will be replaced. - ```'s/bash/bashscripting/g'``` must be in between ' '. - ```dummy.txt```: the file you want to modify.



- But using ```sed 's/bash/bashscripting/g' dummy.txt``` will not be saved. - Using: ```cat dummy.txt``` to check.



In order to save with sed command. Use ``` -i```. - Type in: ```sed -i 's/bash/bashscripting/g' dummy.txt```. - ```-i```: edit file in place.



To replace the first occurrence of each line. (Changing from bashscripting back to bash for the first occurrence) - Type in: ```sed -i 's/bashscripting/bash/1' dummy.txt```. - ```1```: first occurrence of each line.



Can use it with the any occurrence. - Type in: ```sed -i 's/bashscripting/jeff/2' dummy.txt```.



Awk Command

- Awk Command: Versatile text processing tool used for extracting and manipulating data from text files or streams using specified patterns and actions. - Useful: Texting scripting, help you to search, replace, sort, and validation on the basis of text that you filtered - Uses: Text processing, scan files line by line to split the file into multiple fields, format output lines. Apply conditions and loops onto basis of output text or input files. Example: On PuTTY in order to create a new txt file named "dummy2": - Type in: ```vi dummy2.txt``` and Enter. - ```vi```: visual editor, can edit an existing file or create a new file from scratch. - ```dummy.txt```: using visual editor to create a txt file named "dummy".



- Type in random columns inside the dummy2.txt - To save press "ESC" and type in: ```:wq!``` and Enter.



To view the contents of dummy2.txt. Use ```cat```. - Type in: ```cat dummy2.txt```.



To only print the "Name" column (first column) from dummy2.txt: - Type in: ```awk '{print $1}' dummy2.txt``` - ```awk```: command used to process and manipulate data and produce formatted reports. - ```{print $1"}```: print the first column. - ```'{print $1}'``` must be in between ' '. - ```dummy.txt```: the file you want to modify.



To print the "Name" and "Email" columns (first and third columns) from dummy2.txt: - Type in: ```awk '{print $1,$3}' dummy2.txt```



Changing dummy2.txt content into column with ":" instead of spaces. - Type in: ```vi dummy2.txt```.



View the new dummy2.txt, Use ```cat```. - Type in: ```cat dummy2.txt```.



To print "Name" and "Email" columns (first and third columns) from dummy2.txt in this case. Use ```-F:``` - Type in: ```awk -F: '{print $1,$3}' dummy2.txt```. - ```-F```: define for the eliminators. - ```:```: the column is define by ":".



- Using ```awk '{print $1,$3}' dummy2.txt``` after modifying dummy2.txt will not work.