zeek

Analyze Network Traffic using Zeek

In this tutorial, you will learn how to analyze network traffic using Zeek. Zeek is a world’s leading passive network security monitoring tool that sits

auditd

Find out who Edited Files in Linux

In this tutorial, you will learn how to find out who edited files in Linux. Linux provides user space tools for security auditing called auditd

lamp

Install LAMP Stack on Debian 11

Follow through this guide to learn how to install LAMP Stack on Debian 11. If you are looking at building some web application, LAMP stack

Install DBeaver on Debian/Ubuntu

Install DBeaver on Debian 10/Debian 11

Follow through this tutorial to learn how to install DBeaver on Debian 10/Debian 11. DBeaver is free and open source universal database tool for developers

Install and Setup HAProxy on CentOS 8

This guide will walk you through how to install and setup HAProxy on CentOS 8. HAProxy is the current de-facto standard opensource load balancer. It

nagios rocky

Install Nagios Plugins on Rocky Linux 8

This guide will walk you through how to install Nagios Plugins on Rocky Linux 8. Nagios plugins are standalone extensions to Nagios Core that enables Nagios to

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { box.style.position = "relative"; // Needed for absolute positioning of button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; box.appendChild(button); button.addEventListener("click", function() { var text = box.innerText; navigator.clipboard.writeText(text).then(function() { button.querySelector("svg").setAttribute("fill", "#4CAF50"); setTimeout(function() { button.querySelector("svg").setAttribute("fill", "white"); }, 1500); }).catch(function(err) { console.error("Copy failed: ", err); }); }); }); });