How To Patch and Protect OpenSSH Client Vulnerability CVE-2016-0777 and CVE-2016-0778

The vulnerabilities CVE-2016-0777 and CVE-2016-0778 in the OpenSSH client were fixed in version 7.2p2 and later. To patch and protect against these vulnerabilities, you need to upgrade your OpenSSH client to a version that includes the fix. Here are the steps to upgrade the OpenSSH client on a Linux system: Check your current version of … Read more

How to use curl command with proxy username/password on Linux/ Unix

To use the curl command with a proxy username and password on Linux/Unix, you can use the following syntax: curl –proxy [proxy-username:proxy-password@]proxy-server-URL [URL] For example, to make a request to https://www.example.com using a proxy server proxy.example.com with a username of user and password of pass, you would run the following command: curl –proxy user:pass@proxy.example.com https://www.example.com … Read more

How To Patch and Protect Linux Kernel Zero Day Vulnerability CVE-2016-0728

The Linux kernel vulnerability CVE-2016-0728 is a race condition that can allow a local attacker to escalate their privileges and gain root access to the system. The vulnerability affects Linux kernels versions 3.8 and above. To patch this vulnerability, you should update your Linux kernel to a version that includes the fix. Here’s how you … Read more

Hello World Bash Shell Script

Here’s an example of a simple “Hello World” bash shell script: #!/bin/bash echo “Hello World” To run the script, save it to a file with a .sh extension, make the file executable using the chmod command, and then run the file. For example, to save the script to a file named hello.sh, you would run … Read more

How to install KVM on Ubuntu 14.04 LTS Headless Server

To install KVM on an Ubuntu 14.04 LTS headless server, follow these steps: Install the required packages: sudo apt-get update sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils Add your user to the kvm group: sudo adduser <username> kvm Replace <username> with your actual username. Verify that KVM is installed and functioning properly: sudo virsh list … Read more