Category Linux

ICMP Type 13 and Type 14 — Timestamp Request / Reply

These are two of the original ICMP message types defined in RFC 792 (1981), alongside echo (ping) and destination-unreachable. They were designed for clock synchronization across a network, back before NTP existed. What they do The reply carries three 32-bit…

Fixing CVE-1999-0524 on Red Hat Enterprise Linux

CVE-1999-0524 is an information-disclosure finding: the host responds to ICMP timestamp requests (type 13) with timestamp replies (type 14), which can leak the system clock and (historically) help an attacker with time-based attacks. The fix is simply to drop both…

Understanding the Linux Sticky Bit Permission

In a standard Linux environment, directory permissions can sometimes be counterintuitive. By default, any user with write access to a directory has the power to delete or rename any file within that directory, regardless of who owns the file or…

How to Use fapolicyd in RHEL (Step-by-Step Guide)

If you are managing a Red Hat Enterprise Linux (RHEL) server, you likely face the challenge of ensuring only trusted software runs on your system. You might find yourself in a scenario where a user accidentally downloads an untrusted script…

How To Use Pip Command in Linux

Python development relies heavily on external libraries to handle complex tasks like data analysis or web scraping. You might encounter a scenario where you try to run a script only to receive an “ImportError,” or you may need to deploy…