Enable MSSQL Server and Database Level Auditing

This guide describes how to enable MSSQL server and database level auditing. Database auditing basically involves capturing and  monitoring database activities. The server-level audit involves

upgrade freebsd 12 to13

Upgrade FreeBSD 12 to 13

With FreeBSD 13 having been released, it might be the right time to upgrade your FreeBSD 12 box to 13. Follow through this guide to

Install Elastic Stack 7 on Ubuntu

Installing ELK Stack on CentOS 8

Welcome to our guide on installing ELK Stack on CentOS 8. ELK is the acronym for three open source projects: Elasticsearch, Logstash, and Kibana. Elasticsearch

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