Install WPScan on Ubuntu 20.04

This tutorial will take you through how to install WPScan on Ubuntu 20.04. WPScan is a WordPress security scanner which enables security professionals and wordpress

Install OPNsense on VirtualBox

How to Install OPNsense on VirtualBox

In this tutorial, we are going to learn how to install OPNsense on VirtualBox. OPNsense is a FreeBSD-based open-source software that provides firewall and routing

VPNs are your Must Have Privacy Tool

VPNs are your Must Have Privacy Tool

Introduction Virtual Private Networks, better known as VPNs, have a variety of good reasons for consumers to adopt them. Often the number one reason is

Install Passbolt on Debian 12

Install Passbolt on Debian 12

In this tutorial, you will learn how to install Passbolt on Debian 12. Passbolt is is a free, open source, self-hosted, extensible, OpenPGP based password

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

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