Manual WordPress Deployment on Rocky Linux 8.9 with LAMP Stack

Environment Setup Rocky Linux 8.9 is used as the depolyment environment. Install Apache, MariaDB, and PHP manually. Disable SELinux and firewalld for testing purposes: # Set SELinux to permissive mode temporarily setenforce 0 # Disable firewalld systemctl stop firewalld systemctl disable firewalld Apache Configuration Installation yum install ...

Posted on Wed, 20 May 2026 01:59:38 +0000 by fragger

DC-6 Vulnhub Machine Exploitation

Environment Setup Download the target machine from Vulnhub DC-6. Import the target into Oracle VM VirtualBox, set network to Host-Only, and ensure the network adapter matches the Kali machine. Start the target machine. Penetration Process Use nmap for host discovery: nmap -sn 192.168.56.0/24 Port scanning with nmap: nmap -sS 192.168.56.111 ...

Posted on Wed, 13 May 2026 04:19:08 +0000 by aviavi

Deploying WordPress with Caddy Server on Ubuntu

Installing Caddy Server Caddy is available in the Ubuntu repository and can be installed directly: sudo apt update sudo apt install caddy Setting Up PHP and MySQL WordPress requires PHP and MySQL to function. Install the necessary packages: sudo apt install php php-fpm php-mysql mysql-server After installation, verify that PHP-FPM is running: ...

Posted on Fri, 08 May 2026 13:30:13 +0000 by saad|_d3vil