Skip to content
Broen Westberg edited this page Mar 11, 2025 · 4 revisions

This is a down and dirty quick starter page. Will expound later.

Tools currently being used:

curl -

xdotool - a tool used for simulating keyboard and mouse input on X11-based systems. However, Oracle Linux 9 (which is based on RHEL 9) does not include xdotool in its default repositories because it’s primarily a server-focused OS with minimal GUI support.

Opposed to all other servers we've seen, starting in Module 12.1 Network Security, the Network Security Lab is a Oracle Linux Server running Fedora 9.4

[sysadmin@securityonion ~]$ cat /etc/os-release
NAME="Oracle Linux Server"
VERSION="9.4"
ID="ol"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="9.4"
PLATFORM_ID="platform:el9"
PRETTY_NAME="Oracle Linux Server 9.4"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:oracle:linux:9:4:server"
HOME_URL="https://linux.oracle.com/"
BUG_REPORT_URL="https://github.com/oracle/oracle-linux"

ORACLE_BUGZILLA_PRODUCT="Oracle Linux 9"
ORACLE_BUGZILLA_PRODUCT_VERSION=9.4
ORACLE_SUPPORT_PRODUCT="Oracle Linux"
ORACLE_SUPPORT_PRODUCT_VERSION=9.4

With Redhat, we're not using apt update && apt install -y Instead, we're using dnf, as in:

sudo dnf install -y xdotool

Verify the installation with:

xdotool --version

Clone this wiki locally