Install Gophish on Ubuntu 22.04

Install Gophish on Ubuntu 22.04

In this guide, you will learn how to install Gophish on Ubuntu 22.04. Gophish is a powerful open-source phishing framework that enables organizations to quickly and easily

install docker ce

Install and Use Docker CE on CentOS 8

Welcome to our guide on how to install and use docker ce on CentOS 8. Docker is a platform that enables developers and system administrators to build,

install and setup ntp server

How to Configure NTP Server on pfSense

In this tutorial, you will learn how to configure NTP server on pfSense. pfSense software is a free, open source customized distribution of FreeBSD specifically

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