install php on ubuntu

How to Install PHP 7.3.3 on Ubuntu 18.04

This guides simply describes how to install PHP 7.3.3 on Ubuntu 18.04. PHP is aserver-side, HTML-embedded scripting language. PHP 7.3.3 along with other releases such

How to Integrate TheHive with MISP

How to Integrate TheHive with MISP

Follow through this tutorial to learn how to integrate TheHive with MISP. TheHive, a Security Incident Response Platform (SIRP) can be integrated with MISP, (Malware

Install Nagios Plugins From Source RHEL/CentOS/Oracle Linux

Install Nagios Plugins on CentOS 8

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

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