Fading Coder

One Final Commit for the Last Sprint

Essential Cybersecurity Concepts and Open-Source Tools for 2024

Firewall Architectures and iptables Configuration Modern firewall systems implement multiple structural models to secure network perimeters: Dual-homed Host Model: A host equipped with two network interfaces, each connected to separate internal and external networks, preventing direct communication...

Kubernetes Service Implementation: A Deep Dive into iptables Mode

Overview This article continues our exploration of Kubernetes networking by examining how Service objects are implemented using iptables. Building on our previous discussion of CNI plugins and overlay networks, we'll trace how kube-proxy configures iptables rules to enable Service-to-Pod traffic rou...

Linux System Configuration: Firewalls, SELinux, and Locale Management

Network Security: Managing Firewall Services In certain deployment scenarios, local firewall services are intentionally deactivated to rely on external perimeter defenses or specific network architectures. The procedures to manipulate these services differ between legacy and modern CentOS releases....

Linux Firewall Administration: firewalld, iptables, and Network Routing

Daemon Control and State Monitoring Manage the background daemon using standard systemd utilities. systemctl enable --now firewalld # Start service and activate on boot systemctl status firewalld # Display runtime state systemctl stop firewalld # Terminate active sessions systemctl restart firewalld...

Understanding iptables: NAT and Filter Tables Configuration

NAT Table Overview The NAT (Network Address Translation) table handles IP address and port translation for network packets. Chain Purpose PREROUTTING Modifies destination address/port for incoming packets - used for port forwarding and IP mappping POSTROUTING Modifies source address/port for outgoin...

Automated IP Blocking Pipeline with Dynamic Whitelist and Threshold Filtering

This solution implements a hybrid shell-Python architecture for automatically blocking malicious IP addresses based on connection frequency thresholds while respecting CIDR-based whitelists and preventing duplicate firewall rules. Architecture Oevrview The pipeline separates system-level operations...