Portsentry is a tool to detect port scans and log it. Once a host is targeted by an attacker, a port scan is almost always performed. PortSentry detects such scans by monitoring the unused ports on the host. Upon a connection attempt to one of the unused ports, PortSentry is alerted and has the ability to issue a number of commands in response to the scan. Installation # cd /usr/src/ # wget http://sourceforge.net/projects/sentrytools/files/latest/download
General Topics
The Redirect feature allows you to send all of the users that access a domain or a particular page to a different URL. This can be done by using cPanel’s “Redirects” feature or by using .htaccess file if the cPanel redirection does not work properly. In here we shall discuss few helpful .htaccess codes Non-www to www Redirection RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
When we own a website, we may want to analyze on how many people visits our website. cPanel has several in-built statistical analysis programs and one of the most important ones is Awstats. Awstats produces visual statistics about visitors of your site. Awstats gives details about the count of people visiting your website, and other information like: > Monthly history > Countries visiting your website (Top 25) > Visits duration > Operating Systems that accesses your website (Top 10) > Browsers (Top 10) etc.,
ZPanel is a free and complete web hosting control panel for Microsoft Windows and POSIX (Linux, UNIX and MacOSX) based servers. It is written in PHP and uses several open-source (or freely available) software packages to provide a secure, web hosting system. ZPanel flawlessly integrates with MySQL, hMailServer (on Windows), Posfix (on Linux etc.) and Filezilla (on Windows) or ProFTPd (on Linux etc.). Installation can be completed with following steps : # wget https://raw.github.com/zpanel/installers/master/install/CentOS-6_4/10_1_1.sh# chmod +x 10_1_1.sh# ./10_1_1.sh You can then follow the configurations needed from the terminal for completing …
In this article we will be discussing a few basic commands we could use in our daily server terminal interaction. Generally Linux commands have the following syntax. command [options] [arguments] Each item is separated by space. >> Options modify a commands behavior. Single letter options usually preceded by “ – ” Full word options usually preceded by “ — ” >> Arguments are file names or other data needed by the command. >> Multiple commands can be separated by “;” Lets have a check with few of the most commonly …
Modern IT environments demand efficient server administration, remote access, strong security, and real-time control. Today, system administrators rely on powerful tools that simplify remote management, troubleshooting, and infrastructure monitoring. In this article, we explore 10 of the best server administration tools used by Linux and cross-platform administrators to manage servers efficiently from anywhere. Why Server Administration Tools Matter Effective server management helps organizations: The right tools allow administrators to manage servers without being physically present. 1. TightVNC TightVNC is a lightweight remote desktop software that enables administrators to connect to …
IP address spoofing or IP spoofing is the creation of Internet Protocol (IP) packets with a source IP address, with the purpose of concealing the identity of the sender or impersonating another computing system. Its a phenomena in which attackers changes or replicate a IP packets. In order to dig deep lets understand some basic concepts. In internet the connection between two computer takes place using TCP/IP protocol. In which data needed to send from one computer to another is broken down into pieces known as packets. These packets are …
Some scripts/applications require certain scripts be run at a certain time to function properly. On Windows servers, we can set them up to run at certain times by creating a scheduled task (which is similar to how you can run cron jobs on Linux servers). Creating a Scheduled Task in Plesk: We can set up Scheduled Tasks in Plesk by doing the following: Log into Plesk The user you are logging in with should have enough permissions to create a scheduled task. Windows Shared customers automatically have permission, and the …
Important configuration files and directories on the Linux cPanel/WHM server
cPanel/WHM keeps the location of key files in the same place across all of the various cPanel versions. Due to this consistency, we could always know where to look for logs files for all services running on a cPanel server. You may find below the location of important configuration files and directories on the Linux cPanel/WHM server. Web server ( Apache ) : Apache HTTP server configuration file : /usr/local/apache/conf/httpd.conf Apache directory Structure : (more…)
Logstalgia is a visualization tool that visualize web access logs as a game simulation (as a pong like battle game between web server and requests). Requests are appeared as colored balls and travel across the screen to reach requested location. The colored ball hits the paddle if it is a successful request otherwise it misses (for e.g. if it is an error) Requirements: > Its works with OpenGL (Open graphic Library) and need an accelerated 3D display to visualize > A web server with logs such as Apache, Lighttpd, Nginx …