Your cart is currently empty!
Category: Phoenix Ignited Tech Blog
How to Install Wireshark on Ubuntu
How to Install Wireshark on Ubuntu How to Install Wireshark on Ubuntu August 18, 2024 In this micro-tutorial I go through installing Wireshark on Ubuntu like operating systems via both the default package manager and PPA (Personal Package Archive). Specifically I am using Linux Mint 21.2 Cinnamon. The official wireshark site is: https://www.wireshark.org/ Let’s Dive!…
WP_Debug
WP_Debug WP_Debug August 17, 2024 This is a really simple and quick tutorial on how to utilize WP_DEBUG for debugging and troubleshooting WordPress. It requires that you have access to your host files.ย Wp_Debug WP_DEBUG is a setting in the wp-config.php file of your WordPress install that allows you to turn on and off error…
Troubleshooting WordPress
Troubleshooting WordPress Troubleshooting WordPress August 17, 2024 I’ve been doing WordPress now for 2 years and in this post I wanted to explore some of the most common problems you will run into as a WordPress admin or developer, from minor plugin bugs that cause annoying and unsightly errors to display to the frontend for…
Using Wazuh for File Integrity Monitoring
Using Wazuh for File Integrity Monitoring Using Wazuh for File Integrity Monitoring August 16, 2024 In this tutorial I go through Wazuh’s File Integrity Monitoring (FIM) capabilities. I will explore the FIM dashboards, experiment with modifying some files, and some minor configuration changes. The aim is that by the end of the tutorial you have…
Installing Wazuh on Ubuntu
Installing Wazuh on Ubuntu Installing Wazuh on Ubuntu August 15, 2024 In this tutorial I go through installing Wazuh, an opensource SIEM on Ubuntu. It covers installing both the Wazuh Manager and the Wazuh Agent. The official Wazuh quickstart docs can be found here: https://documentation.wazuh.com/current/quickstart.html so if you are running an OS other than Ubuntu…
Using Keycloak as an IAM Provider for WordPress
Using Keycloak as an IAM for WordPress Using Keycloak as an IAM for WordPress August 9, 2024 This tutorial walks you through setting up Keycloak as an IAM for one or more WordPress sites. Before You Implement This in Production I have only done this in a development environment and this setup is likely lacking…
Vanilla Bare Metal Keycloak Install for Linux in Dev Mode
Vanilla Bare Metal Keycloak Install -Linux Vanilla Bare Metal Keycloak Install -Linux August 9, 2024 This is the the bare metal plain vanilla keycloak install on Linux. I used an Ubuntu like machine, however it should work on any distro. This tutorial follows the directions in the official docs which can be found here: https://www.keycloak.org/getting-started/getting-started-zip.…
ICMP Flood DoS Attack Explained
ICMP Flood DoS Attack Explained ICMP Flood DoS Attack Explained August 6, 2024 What is an ICMP Flood DoS Attack? ICMP stands for Internet Control Message Protocol and serves as a means to troubleshoot network issues, network diagnostics, and so forth. When one computer sends an ICMP echo-request to another computer, the receiving computer responds…
SYN Flood DoS Attack Explained
SYN Flood DoS Attack Explained SYN Flood DoS Attack Explained August 6, 2024 What is a SYN Flood DoS Attack? When two devices first create a TCP connection via the TCP three way handshake, the client machine sends what is called a SYN request to the server. The server then responds with a SYN/ACK and…
Installing VirtualBox on Debian Based Systems
Installing VirtualBox on Debian Based Systems Installing VirtualBox on Debian Based Systems August 3, 2024 Virtualbox runs as a hypervisor on top of your host operating system, enabling you to create virtual machines on top of your host machine. In this tutorial I go through installing virtualbox on Debian based systems. This tutorial assumes you…