From the category archives:

Security

What is Ksplice Uptrack? Ksplice Uptrack is a subscription service that lets you apply 100% of the important kernel security updates released by your Linux vendor without rebooting.

{ 0 comments }

CentOS / RedHat Linux server and by default firewall blocked out everything including telnet access. How do I allow telnet – port 23 thought Linux iptables firewall ?

{ 0 comments }

How To Install OpenSSH on Centos / RedHat

by lifeLinux on May 10, 2011

What is OpenSSH ? OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, […]

{ 1 comment }

How to disable ICMP echo responses in Linux

by lifeLinux on May 2, 2011

Many malicious attacks begin with a ping scan. Disabling ICMP echo requests prevents your system’s discovery with a ping. Disable ICMP echo responses temporarily You can temporarily disable the ICMP using the following method but this setting will be erased after the reboot. root@lifelinux:~# echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all

{ 0 comments }

How to install IPTables on RedHat / Centos Linux

by lifeLinux on April 24, 2011

iptables is a user space application program that allows a system administrator to configure the tables provided by the Linux kernel firewall (implemented as different Netfilter modules) and the chains and rules it stores. Different kernel modules and programs are currently used for different protocols; iptables applies to IPv4, ip6tables to IPv6, arptables to ARP, […]

{ 1 comment }

Anti SYN Flood with IPTables

by lifeLinux on April 21, 2011

#!/bin/sh # A simple shell to build a Firewall anti SYN Flood # Under CentOS, Fedora and RHEL / Redhat Enterprise Linux # servers. # —————————————————————————- # Written by LongVNIT # (c) 2009 lifeLinux under GNU GPL v2.0+ IPT=”iptables” MODPROBE=”modprobe” IF=”eth0″ IP=”192.168.1.112″ PORT=”22 80 443″ CHECK_TIME=60 BAN_TIME=120 HITCOUNT=10 MOD=”ip_tables ip_conntrack iptable_filter ipt_state” # Load Module […]

{ 1 comment }

SUID, SGID and Sticky Bits

by lifeLinux on March 27, 2011

What are the SUID, SGID and the Sticky Bits? Sticky Bit Lets start with Sticky bit first. Since this is the most simplest to explain. Setting the sticky bit tells Unix that once the concerned application is executed, it should remain in memory. Remember that Unix is a multi-user OS and was mainly designed so […]

{ 0 comments }