A GNU C Library (glibc) vulnerability - termed as "GHOST Vulnerability" was announced to general public on 27 January 2015 - after a Cloud research company Qualys discovered this major security vulnerability. This vulnerability enables hackers to remotely take control of systems without even knowing any system IDs or passwords. How to Quickly Identify if your…
Continue readingTag: ubuntu
How to block IP address in Linux – Using IPTables Rule
Using IPTables rules we can block a Single IP address or a block of IP Addresses. The following command (via ssh) will drop any packet coming from the IP address 1.2.3.4 : # iptables -I INPUT -s 1.2.3.4 -j DROP or you can use append # iptables -A INPUT -s 1.2.3.4 -j DROP How To Block Subnet…
Continue reading