Install ELK Stack 8.x

Install ELK Stack 8 on Debian 12

In this tutorial, you will learn how to install ELK stack 8 on Debian 12 systems. Elastic/ELK stack 8.x has been released making it another

Install Filebeat on FreeBSD

Install Filebeat on FreeBSD

Follow through this guide to learn how to install Filebeat on FreeBSD. Installing Filebeat on FreeBSD Filebeat is not available on the default FreeBSD repositories

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

Process ModSecurity Logs using Wazuh

Process ModSecurity Logs using Wazuh

This guide will take you through how to process ModSecurity logs using Wazuh. ModSecurity WAF can be integrated with Wazuh in order to process the

Install Grafana on Debian 12

How to Install Grafana on Ubuntu 24.04

In this guide, we will provide step-by-step instructions on how to install Grafana on Ubuntu 24.04. Grafana is a powerful open-source analytics and visualization platform

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); }); }); }); });