<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>Hack The Sec-Leading Resource Of Linux Tutorial</title><description>Hack The Sec-Leading Resource of Linux Tutorial,Linux Tips And Tricks,Linux Server,Linux Exploit,Shell scripting,linux books,unix,bash scripting.</description><managingEditor>noreply@blogger.com (Sarkari-JOB)</managingEditor><pubDate>Sun, 23 Aug 2026 23:29:49 +0530</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">407</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>https://www.hackthesec.co.in/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>Hack The Sec-Leading Resource of Linux Tutorial,Linux Tips And Tricks,Linux Server,Linux Exploit,Shell scripting,linux books,unix,bash scripting.</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>Proxmox VE vs VMware ESXi: Complete Install Guide (Bare Metal, Step-by-Step)</title><link>https://www.hackthesec.co.in/2026/08/proxmox-ve-vs-vmware-esxi-complete.html</link><category>ESXi</category><category>Linux Tutorial</category><category>Proxmox</category><category>Virtualization</category><category>VMware</category><author>noreply@blogger.com (Raj)</author><pubDate>Sun, 23 Aug 2026 23:29:49 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-3262277622601746478</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-proxmox-vmware.png" alt="Proxmox VE and VMware ESXi installation commands on Linux terminal" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;This long-form guide covers &lt;strong&gt;two enterprise hypervisors&lt;/strong&gt; side by side: &lt;strong&gt;Proxmox VE&lt;/strong&gt; (open-source, KVM + LXC) and &lt;strong&gt;VMware ESXi&lt;/strong&gt; (commercial, vSphere hypervisor). You will install both from bare metal, verify each web interface, create your first VM, and understand when to choose which platform.&lt;/p&gt;&lt;h2&gt;Part A — Proxmox VE installation (bare metal)&lt;/h2&gt;&lt;h3&gt;A1. Requirements&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;64-bit CPU with VT-x/AMD-V enabled in BIOS&lt;/li&gt;&lt;li&gt;8 GB RAM minimum (16 GB+ for lab with multiple VMs)&lt;/li&gt;&lt;li&gt;32 GB+ boot disk (120 GB SSD recommended)&lt;/li&gt;&lt;li&gt;Static IP for management interface&lt;/li&gt;&lt;li&gt;Proxmox VE 9.x ISO from &lt;code&gt;proxmox.com/downloads&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;A2. Create bootable USB&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;# On Linux workstation — flash ISO to USB
lsblk
sudo dd if=proxmox-ve_9.0-1.iso of=/dev/sdX bs=4M status=progress conv=fsync
# Or use Ventoy / Rufus / balenaEtcher on Windows&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;A3. Boot and start graphical installer&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Insert USB, boot server, press F11/F12 for boot menu.&lt;/li&gt;&lt;li&gt;Select &lt;strong&gt;Install Proxmox VE (Graphical)&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Accept EULA → select target disk (ext4 or ZFS).&lt;/li&gt;&lt;li&gt;Set country, timezone, keyboard.&lt;/li&gt;&lt;li&gt;Set root password and email for alerts.&lt;/li&gt;&lt;li&gt;Configure management network: hostname &lt;code&gt;pve1.lab.local&lt;/code&gt;, IP &lt;code&gt;192.168.1.50/24&lt;/code&gt;, gateway, DNS.&lt;/li&gt;&lt;li&gt;Review summary → Install → reboot.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Installer console output (typical):&lt;/p&gt;&lt;pre&gt;&lt;code&gt;Starting Proxmox VE installer...
Formatting /dev/nvme0n1p2 ext4...
Installing base system packages...
Installing Proxmox VE packages (pve-manager, qemu, lxc)...
Configuring network vmbr0 on eno1...
Installation completed — rebooting.&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;A4. First login to Proxmox web UI&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;# From browser
https://192.168.1.50:8006
# Login: root / your-install-password
# Realm: Linux PAM standard authentication

# From SSH — verify version
ssh root@192.168.1.50
pveversion -v
systemctl status pveproxy pvedaemon pve-cluster&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Expected &lt;code&gt;pveversion&lt;/code&gt; output:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;pve-manager/9.0.3/bc4f547a (running kernel: 6.8.12-1-pve)
qemu-server: 9.0.3
pve-qemu-kvm: 9.0.2-1&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;A5. Post-install Proxmox configuration&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;# Update repositories and upgrade
apt update &amp;amp;&amp;amp; apt full-upgrade -y

# Disable enterprise repo if no subscription (lab only)
# Use pve-no-subscription repo per Proxmox wiki

# Download Ubuntu cloud-init template for CT/VM
pveam update
pveam available | grep ubuntu
pveam download local ubuntu-22.04-standard_22.04-1_amd64.tar.zst

# Check node status
pvesh get /nodes/pve1/status&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;A6. Create first VM in Proxmox&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Datacenter → pve1 → Create VM.&lt;/li&gt;&lt;li&gt;General: VM ID 100, name &lt;code&gt;ubuntu-web&lt;/code&gt;.&lt;/li&gt;&lt;li&gt;OS: ISO image (upload Ubuntu ISO to local storage first).&lt;/li&gt;&lt;li&gt;System: default BIOS, Q35 machine type.&lt;/li&gt;&lt;li&gt;Disks: 32 GB on local-lvm.&lt;/li&gt;&lt;li&gt;CPU: 2 cores, RAM: 2048 MB.&lt;/li&gt;&lt;li&gt;Network: vmbr0, virtio model.&lt;/li&gt;&lt;li&gt;Finish → Start VM → Open console.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# CLI create + start VM
qm create 100 --name ubuntu-web --memory 2048 --cores 2 \
  --net0 virtio,bridge=vmbr0 --scsi0 local-lvm:32
qm set 100 --cdrom local:iso/ubuntu-22.04.iso
qm start 100
qm list&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Part B — VMware ESXi installation (bare metal)&lt;/h2&gt;&lt;h3&gt;B1. Requirements and licensing&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;Server on VMware HCL (Hardware Compatibility List)&lt;/li&gt;&lt;li&gt;ESXi 8.x ISO from Broadcom/VMware portal (free tier or vSphere license)&lt;/li&gt;&lt;li&gt;8 GB RAM minimum, 32 GB boot USB/SD or local disk&lt;/li&gt;&lt;li&gt;Management IP on dedicated VLAN recommended&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;B2. Boot ESXi installer&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Flash ESXi ISO to USB, boot server.&lt;/li&gt;&lt;li&gt;Select &lt;strong&gt;ESXi-8.x Standard Installer&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Enter (Continue) through welcome → Accept EULA.&lt;/li&gt;&lt;li&gt;Select install disk (local SSD — all data will be erased).&lt;/li&gt;&lt;li&gt;Select keyboard layout.&lt;/li&gt;&lt;li&gt;Set root password (complexity required).&lt;/li&gt;&lt;li&gt;Confirm install → Reboot.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;ESXi installer log on screen (DCUI):&lt;/p&gt;&lt;pre&gt;&lt;code&gt;VMware ESXi 8.0.2 Installation
Reading installation image...
Creating VMFS datastore 'datastore1' on Local NVMe...
Installing hypervisor binaries...
Installation successful. Please reboot.&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;B3. Configure ESXi management network (DCUI)&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;After reboot, press F2 on Direct Console UI.&lt;/li&gt;&lt;li&gt;Login as root.&lt;/li&gt;&lt;li&gt;Configure Management Network → IPv4 → Static.&lt;/li&gt;&lt;li&gt;IP: &lt;code&gt;192.168.1.60&lt;/code&gt;, Mask: &lt;code&gt;255.255.255.0&lt;/code&gt;, Gateway: &lt;code&gt;192.168.1.1&lt;/code&gt;&lt;/li&gt;&lt;li&gt;DNS: &lt;code&gt;8.8.8.8&lt;/code&gt;, Hostname: &lt;code&gt;esxi1.lab.local&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Test management network → working.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# From SSH (after enabling SSH in DCUI → Troubleshooting)
ssh root@192.168.1.60
vmware -v
esxcli system version get
esxcli network ip interface ipv4 get&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Expected output:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;VMware ESXi 8.0.2 build-22380479
   Product: VMware ESXi
   Version: 8.0.2
   Build: Releasebuild-22380479
   Update: 2&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;B4. Access ESXi Host Client (web UI)&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;# Browser
https://192.168.1.60/ui
# Login: root / password
# Create datastore, upload ISO, create VM from GUI&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;B5. Create first VM on ESXi&lt;/h3&gt;&lt;ol&gt;&lt;li&gt;Host Client → Virtual Machines → Create VM.&lt;/li&gt;&lt;li&gt;Name: &lt;code&gt;ubuntu-web-esxi&lt;/code&gt;, Compatibility: ESXi 8.x.&lt;/li&gt;&lt;li&gt;Guest OS: Linux → Ubuntu 64-bit.&lt;/li&gt;&lt;li&gt;Datastore: datastore1, 32 GB thin disk.&lt;/li&gt;&lt;li&gt;2 vCPU, 2 GB RAM, VMXNET3 network.&lt;/li&gt;&lt;li&gt;Mount Ubuntu ISO from datastore browser.&lt;/li&gt;&lt;li&gt;Power on → Open console → install OS.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Useful ESXi CLI commands
esxcli vm process list
vim-cmd vmsvc/getallvms
esxcli storage filesystem list
esxcli system maintenanceMode set --enable true   # before major changes
esxcli system maintenanceMode set --enable false&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Part C — Proxmox vs VMware: comparison&lt;/h2&gt;&lt;table border='1' cellpadding='8' cellspacing='0'&gt;&lt;tr&gt;&lt;th&gt;Feature&lt;/th&gt;&lt;th&gt;Proxmox VE&lt;/th&gt;&lt;th&gt;VMware ESXi&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;License&lt;/td&gt;&lt;td&gt;Open source + optional subscription&lt;/td&gt;&lt;td&gt;Commercial (free tier limited since Broadcom acquisition)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Web UI port&lt;/td&gt;&lt;td&gt;8006 (HTTPS)&lt;/td&gt;&lt;td&gt;443 / Host Client at /ui&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Containers&lt;/td&gt;&lt;td&gt;Native LXC&lt;/td&gt;&lt;td&gt;Not native (VMs only)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Clustering&lt;/td&gt;&lt;td&gt;Built-in corosync cluster&lt;/td&gt;&lt;td&gt;Requires vCenter for multi-host&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Backup&lt;/td&gt;&lt;td&gt;vzdump + Proxmox Backup Server&lt;/td&gt;&lt;td&gt;vSphere APIs / Veeam / image-level&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Storage&lt;/td&gt;&lt;td&gt;ZFS, LVM, Ceph, NFS, iSCSI&lt;/td&gt;&lt;td&gt;VMFS, NFS, vSAN (with vSphere)&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Best for&lt;/td&gt;&lt;td&gt;Homelab, MSPs, cost-sensitive hosting&lt;/td&gt;&lt;td&gt;Enterprise DC, existing VMware stack&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;h2&gt;Part D — When to choose which&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Choose Proxmox VE&lt;/strong&gt; when you want open-source KVM, LXC containers, integrated backups, ZFS/Ceph, and no per-socket licensing. Ideal for homelab, hosting providers, and Linux-first teams.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Choose VMware ESXi&lt;/strong&gt; when your organization already runs vSphere, needs official enterprise support, vMotion with vCenter, or compliance mandates for VMware-only stacks.&lt;/p&gt;&lt;h2&gt;Part E — Side-by-side verification checklist&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# === Proxmox (192.168.1.50) ===
pveversion
pvesm status
qm list
pct list
journalctl -u pveproxy --since today | tail -20

# === ESXi (192.168.1.60) ===
vmware -v
esxcli hardware platform get
esxcli vm process list
grep -i error /var/log/vmkernel.log | tail -10
grep -i error /var/log/hostd.log | tail -10&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Part F — Common issues&lt;/h2&gt;&lt;h3&gt;Proxmox&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Cannot access :8006&lt;/strong&gt; — check &lt;code&gt;systemctl status pveproxy&lt;/code&gt;, firewall, and certificate.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;No subscription nag&lt;/strong&gt; — expected without license; use no-subscription repo for lab.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;VM won't start&lt;/strong&gt; — enable VT-x in BIOS; check &lt;code&gt;journalctl -u qmeventd&lt;/code&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;VMware ESXi&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Installer doesn't see NIC&lt;/strong&gt; — inject VIB driver or use supported HCL hardware.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;License warning&lt;/strong&gt; — assign license in Host Client → Manage → Licensing.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Datastore full&lt;/strong&gt; — &lt;code&gt;esxcli storage vmfs extent list&lt;/code&gt; and expand or add disk.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;You now know how to install and verify both &lt;strong&gt;Proxmox VE&lt;/strong&gt; and &lt;strong&gt;VMware ESXi&lt;/strong&gt; from scratch. For production, add backup (PBS or vzdump / Veeam), monitoring, and cluster planning before migrating workloads.&lt;/p&gt;</description></item><item><title>How To Install cPanel / WHM on AlmaLinux 9 (Complete Step-by-Step Guide)</title><link>https://www.hackthesec.co.in/2026/08/how-to-install-cpanel-whm-on-almalinux.html</link><category>AlmaLinux</category><category>cPanel</category><category>Linux Tutorial</category><category>Web Hosting</category><category>WHM</category><author>noreply@blogger.com (Raj)</author><pubDate>Sun, 23 Aug 2026 23:29:36 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-1645377596617212725</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-cpanel-install.png" alt="cPanel WHM installation command on AlmaLinux Linux terminal" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;This is a complete, production-style guide to install &lt;strong&gt;cPanel &amp;amp; WHM&lt;/strong&gt; on a fresh &lt;strong&gt;AlmaLinux 9&lt;/strong&gt; VPS or dedicated server. You will prepare the OS, run the official installer, read the real install logs, finish the WHM setup wizard, and verify Apache, MySQL, and the first cPanel account.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Time required:&lt;/strong&gt; 45–90 minutes (installer download + compile). &lt;strong&gt;License:&lt;/strong&gt; cPanel requires a paid license — trial available for new IPs.&lt;/p&gt;&lt;h2&gt;Table of contents&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Server requirements&lt;/li&gt;&lt;li&gt;Pre-install checklist (hostname, DNS, firewall)&lt;/li&gt;&lt;li&gt;Prepare AlmaLinux 9&lt;/li&gt;&lt;li&gt;Download and run the cPanel installer&lt;/li&gt;&lt;li&gt;Monitor cPanel install logs (what each stage means)&lt;/li&gt;&lt;li&gt;First WHM login and initial setup wizard&lt;/li&gt;&lt;li&gt;Create your first cPanel account&lt;/li&gt;&lt;li&gt;Post-install hardening and verification&lt;/li&gt;&lt;li&gt;Common install errors and log fixes&lt;/li&gt;&lt;/ol&gt;&lt;h2&gt;1. Server requirements&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;OS:&lt;/strong&gt; AlmaLinux 9 / Rocky Linux 9 / CloudLinux 9 (64-bit)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;RAM:&lt;/strong&gt; Minimum 2 GB (4 GB+ recommended for production)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Disk:&lt;/strong&gt; 20 GB minimum (40 GB+ for mail and backups)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;CPU:&lt;/strong&gt; 1 core minimum (2+ for shared hosting)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Network:&lt;/strong&gt; Static IPv4, resolvable hostname (FQDN)&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Ports:&lt;/strong&gt; 22, 53, 80, 443, 2083, 2087, 2089, 3306 (see full list in WHM docs)&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;2. Pre-install checklist&lt;/h2&gt;&lt;p&gt;cPanel is picky about hostname and DNS. Fix these &lt;em&gt;before&lt;/em&gt; running the installer.&lt;/p&gt;&lt;pre&gt;&lt;code&gt;# Set FQDN hostname (replace with your domain)
hostnamectl set-hostname server1.example.com
hostname -f

# /etc/hosts must resolve the FQDN to your server IP
cat &amp;lt;&amp;lt;'EOF' | sudo tee -a /etc/hosts
203.0.113.10   server1.example.com server1
EOF

# Verify forward + reverse DNS (PTR) with your provider
dig +short server1.example.com
dig +short -x 203.0.113.10&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Do &lt;strong&gt;not&lt;/strong&gt; install Apache, Nginx, MySQL, or PHP before cPanel — the installer manages the full stack and will conflict with pre-installed packages.&lt;/p&gt;&lt;h2&gt;3. Prepare AlmaLinux 9&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# Update base OS
sudo dnf update -y
sudo dnf install -y curl wget perl

# Disable AlmaLinux firewall during install (re-enable after WHM config)
sudo systemctl stop firewalld
sudo systemctl disable firewalld

# Disable SELinux enforcement (cPanel sets this; required on fresh install)
sudo setenforce 0
sudo sed -i 's/^SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

# Optional: disable NetworkManager if your provider requires static config
# cPanel documents both NM and sysconfig — keep NM if unsure
sudo timedatectl set-timezone Asia/Kolkata&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;4. Download and run the cPanel installer&lt;/h2&gt;&lt;p&gt;Run as &lt;strong&gt;root&lt;/strong&gt; from &lt;code&gt;/home&lt;/code&gt; using the official cPanel bootstrap script:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;cd /home
curl -o latest -L https://securedownloads.cpanel.net/latest
ls -lh latest
sh latest&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Expected first output from the installer:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;Verifying archive integrity... OK
Uncompressing cPanel &amp;amp; WHM Installer..................
Beginning main installation.
Started installation process. Log file: /var/cpanel/logs/install_log&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The installer runs in the foreground for 45–90 minutes. Keep your SSH session open. Use a second terminal to watch logs (next section).&lt;/p&gt;&lt;h2&gt;5. Monitor cPanel install logs&lt;/h2&gt;&lt;p&gt;Primary log file during installation:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;tail -f /var/cpanel/logs/install_log&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sample &lt;strong&gt;realistic install_log&lt;/strong&gt; output (stages you should recognize):&lt;/p&gt;&lt;pre&gt;&lt;code&gt;[2026-08-23 18:04:12 +0530] Preparing system for cPanel &amp;amp; WHM installation...
[2026-08-23 18:04:15 +0530] Ensuring required Perl modules are installed...
[2026-08-23 18:04:22 +0530] Checking for existing web/mail/sql services... OK
[2026-08-23 18:05:01 +0530] Disabling conflicting services (httpd, mysqld if present)...
[2026-08-23 18:12:44 +0530] Installing cPanel layer 1...
[2026-08-23 18:28:33 +0530] Installing MySQL/MariaDB server...
[2026-08-23 18:45:02 +0530] Installing Apache (EasyApache build starting)...
[2026-08-23 19:02:18 +0530] Installing PHP handlers and extensions...
[2026-08-23 19:31:55 +0530] Installing Exim mail server...
[2026-08-23 19:48:07 +0530] Installing Dovecot (IMAP/POP3)...
[2026-08-23 20:05:44 +0530] Installing BIND/named (DNS)...
[2026-08-23 20:15:33 +0530] Installing WHM interface...
[2026-08-23 20:22:11 +0530] cPanel &amp;amp; WHM installation complete.
[2026-08-23 20:22:12 +0530] Access WHM: https://203.0.113.10:2087
[2026-08-23 20:22:12 +0530] Access cPanel: https://203.0.113.10:2083&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Other useful log files during and after install:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;# Main install progress
less /var/cpanel/logs/install_log

# EasyApache / web stack build
tail -f /var/cpanel/logs/easyapache/build_log

# General cPanel errors after install
tail -f /usr/local/cpanel/logs/error_log

# Apache error log (post-install debugging)
tail -f /usr/local/apache/logs/error_log

# MySQL/MariaDB
tail -f /var/lib/mysql/*.err 2&gt;/dev/null || journalctl -u mariadb -f&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;6. First WHM login and initial setup wizard&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Open &lt;code&gt;https://YOUR_SERVER_IP:2087&lt;/code&gt; in a browser.&lt;/li&gt;&lt;li&gt;Log in as &lt;strong&gt;root&lt;/strong&gt; with your server root password.&lt;/li&gt;&lt;li&gt;Accept the End User License Agreement (EULA).&lt;/li&gt;&lt;li&gt;Enter contact email for server alerts.&lt;/li&gt;&lt;li&gt;Configure nameservers (e.g. &lt;code&gt;ns1.example.com&lt;/code&gt;, &lt;code&gt;ns2.example.com&lt;/code&gt;).&lt;/li&gt;&lt;li&gt;Set hosting plan defaults (disk, bandwidth, mail limits).&lt;/li&gt;&lt;li&gt;Enable/disable optional services (FTP, cPHulk brute-force protection).&lt;/li&gt;&lt;li&gt;Finish wizard — WHM dashboard loads at port 2087.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Verify WHM/cPanel services after wizard
/usr/local/cpanel/scripts/check_cpanel_rpms --all
whmapi1 system_info
systemctl status cpanel
systemctl status httpd
systemctl status mariadb&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Expected healthy service check:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;[root@server1 ~]# systemctl status cpanel --no-pager
● cpanel.service - cPanel services
   Active: active (running)

[root@server1 ~]# /usr/local/cpanel/bin/whmapi1 version
  version: 126.0.1
  build: 126.0.1_12345&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;7. Create your first cPanel account&lt;/h2&gt;&lt;p&gt;In WHM: &lt;strong&gt;Home → Account Functions → Create a New Account&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Domain: &lt;code&gt;clientdomain.com&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Username: &lt;code&gt;client1&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Password: strong password&lt;/li&gt;&lt;li&gt;Package: default or custom hosting plan&lt;/li&gt;&lt;li&gt;Mail routing: Local Mail Exchanger&lt;/li&gt;&lt;/ul&gt;&lt;pre&gt;&lt;code&gt;# CLI alternative — create account from WHM API
whmapi1 createacct username=client1 domain=clientdomain.com password='StrongPass123!' plan=default&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;User logs in at &lt;code&gt;https://203.0.113.10:2083&lt;/code&gt; or &lt;code&gt;https://clientdomain.com:2083&lt;/code&gt; after DNS points to the server.&lt;/p&gt;&lt;h2&gt;8. Post-install hardening and verification&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# Enable CSF firewall (if installed via WHM) or configure firewalld rules
# WHM → Plugins → ConfigServer Security &amp;amp; Firewall

# Force SSL for WHM/cPanel
whmapi1 set_tweaksetting key=requiressl value=1

# Verify open ports
ss -tlnp | grep -E '2083|2087|80|443|53|25|587'

# Test Apache vhost
curl -Ik https://clientdomain.com

# AutoSSL (Let's Encrypt) — WHM → SSL/TLS → Manage AutoSSL&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;9. Common install errors and log fixes&lt;/h2&gt;&lt;table border='1' cellpadding='8' cellspacing='0'&gt;&lt;tr&gt;&lt;th&gt;Log message / symptom&lt;/th&gt;&lt;th&gt;Fix&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;code&gt;hostname: Name or service not known&lt;/code&gt;&lt;/td&gt;&lt;td&gt;Fix FQDN in &lt;code&gt;/etc/hosts&lt;/code&gt; and provider PTR record&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;code&gt;Port 53 already in use&lt;/code&gt;&lt;/td&gt;&lt;td&gt;Stop systemd-resolved or bind conflict: &lt;code&gt;systemctl stop systemd-resolved&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;code&gt;Insufficient memory&lt;/code&gt; in install_log&lt;/td&gt;&lt;td&gt;Upgrade to 4 GB RAM or add swap: &lt;code&gt;fallocate -l 4G /swapfile &amp;amp;&amp;amp; mkswap /swapfile&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Install hangs at MySQL stage&lt;/td&gt;&lt;td&gt;Check &lt;code&gt;/var/lib/mysql/*.err&lt;/code&gt;; remove partial install: &lt;code&gt;rm -rf /var/lib/mysql/*&lt;/code&gt; and re-run installer only if cPanel support advises&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;code&gt;License expired&lt;/code&gt; on WHM login&lt;/td&gt;&lt;td&gt;Activate trial/paid license at manage2.cpanel.net; run &lt;code&gt;/usr/local/cpanel/cpkeyclt&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;pre&gt;&lt;code&gt;# Refresh cPanel license if WHM shows license error
/usr/local/cpanel/cpkeyclt

# Re-run check after any failed stage
grep -i error /var/cpanel/logs/install_log | tail -20
grep -i fail /usr/local/cpanel/logs/error_log | tail -20&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Quick reference — important paths&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Install log: &lt;code&gt;/var/cpanel/logs/install_log&lt;/code&gt;&lt;/li&gt;&lt;li&gt;WHM error log: &lt;code&gt;/usr/local/cpanel/logs/error_log&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Apache config: &lt;code&gt;/usr/local/apache/conf/httpd.conf&lt;/code&gt;&lt;/li&gt;&lt;li&gt;User web roots: &lt;code&gt;/home/USERNAME/public_html&lt;/code&gt;&lt;/li&gt;&lt;li&gt;WHM URL: &lt;code&gt;https://IP:2087&lt;/code&gt;&lt;/li&gt;&lt;li&gt;cPanel URL: &lt;code&gt;https://IP:2083&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;You now have a fully working &lt;strong&gt;cPanel / WHM&lt;/strong&gt; server on AlmaLinux 9. Next steps: configure backups in WHM, set up AutoSSL, and create hosting packages before onboarding client accounts.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] Ray Project Code Injection RCE (CVE-2025-62593)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-ray-project-code.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Sat, 22 Aug 2026 18:21:07 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-3273392190252028315</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-ray-62593.png" alt="Ray Project patch for CVE-2025-62593 code injection" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV (Aug 2026).&lt;/strong&gt; &lt;strong&gt;CVE-2025-62593&lt;/strong&gt; is a code-injection flaw in Ray-Project Ray (Python distributed computing framework). Attackers exploit browser-based DNS-rebinding against developer Ray dashboards to run arbitrary code on Linux ML training hosts — linked to ShadowRay 2.0 campaigns.&lt;/p&gt;&lt;h2&gt;Affected Ray&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Ray versions before &lt;strong&gt;2.52.0&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Ray clusters with dashboard bound to &lt;code&gt;0.0.0.0&lt;/code&gt; on port 8265&lt;/li&gt;&lt;li&gt;GPU/ML dev servers on Linux (Ubuntu, RHEL) running Ray for training jobs&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;pip show ray | grep Version
ray --version
ss -tlnp | grep 8265
curl -s http://127.0.0.1:8265/ | head -5&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Upgrade Ray: &lt;code&gt;pip install 'ray&amp;gt;=2.52.0'&lt;/code&gt; in every virtualenv and container image.&lt;/li&gt;&lt;li&gt;Rebuild Docker images pinning &lt;code&gt;ray==2.52.0&lt;/code&gt; or later in requirements.&lt;/li&gt;&lt;li&gt;Restart Ray head and worker nodes after upgrade.&lt;/li&gt;&lt;li&gt;Bind dashboard to localhost only: &lt;code&gt;ray start --dashboard-host=127.0.0.1&lt;/code&gt;.&lt;/li&gt;&lt;li&gt;Firewall port 8265 — never expose Ray dashboard to internet.&lt;/li&gt;&lt;li&gt;Audit &lt;code&gt;~/.ray&lt;/code&gt; and job logs for unauthorized job submissions.&lt;/li&gt;&lt;li&gt;Rotate cloud API keys stored in Ray job environment variables.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;pip install 'ray&gt;=2.52.0' --upgrade
ray stop &amp;amp;&amp;amp; ray start --head --dashboard-host=127.0.0.1&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Stop Ray cluster if dashboard is internet-accessible&lt;/li&gt;&lt;li&gt;Use SSH tunnel for dashboard access instead of public binding&lt;/li&gt;&lt;li&gt;Segment ML dev VLAN from production networks&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;CVSS:&lt;/strong&gt; Critical. CISA deadline: 20 Aug 2026 for federal agencies.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] macOS Screen Sharing Auth Bypass (CVE-2026-65400)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-macos-screen-sharing-auth.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Sat, 22 Aug 2026 18:20:54 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-3000646546020858025</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-macos-65400.png" alt="macOS Screen Sharing patch for CVE-2026-65400" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV (Aug 2026).&lt;/strong&gt; &lt;strong&gt;CVE-2026-65400&lt;/strong&gt; is an improper-authentication flaw in macOS built-in &lt;strong&gt;Screen Sharing&lt;/strong&gt;. Attackers on the local network log in without valid credentials — Dutch NCSC confirmed active exploitation including root access and cryptominer deployment.&lt;/p&gt;&lt;h2&gt;Affected macOS&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;macOS versions before Apple's August 2026 security update&lt;/li&gt;&lt;li&gt;Macs with Screen Sharing or Remote Management enabled in System Settings&lt;/li&gt;&lt;li&gt;Developer workstations and design Macs on office LAN or home Wi-Fi&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;sudo systemsetup -getremotelogin
sudo launchctl list | grep -i screensharing
defaults read /Library/Preferences/com.apple.RemoteManagement 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Install macOS security update via &lt;strong&gt;System Settings → General → Software Update&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Reboot Mac after update completes.&lt;/li&gt;&lt;li&gt;Confirm macOS build matches Apple security advisory fixed versions.&lt;/li&gt;&lt;li&gt;Disable Screen Sharing if not required: System Settings → General → Sharing.&lt;/li&gt;&lt;li&gt;Review &lt;code&gt;/var/log/system.log&lt;/code&gt; for Screen Sharing login events from unknown IPs.&lt;/li&gt;&lt;li&gt;Rotate local admin and FileVault recovery keys if Mac was on untrusted network.&lt;/li&gt;&lt;li&gt;Run EDR/AV scan for Monero miners or persistence agents.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;sw_vers
log show --predicate 'process == "screensharingd"' --last 7d | tail -30&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Turn off Screen Sharing and Remote Management immediately&lt;/li&gt;&lt;li&gt;Enable macOS firewall — block all incoming connections&lt;/li&gt;&lt;li&gt;Do not connect Mac to public Wi-Fi with sharing enabled&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;CVSS:&lt;/strong&gt; up to 9.8 Critical. Exploitation confirmed within days of disclosure.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] Microsoft SharePoint Authentication Bypass (CVE-2026-55040)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-microsoft-sharepoint.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Sat, 22 Aug 2026 18:20:41 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-3246428166003040754</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-sharepoint-55040.png" alt="SharePoint patch for CVE-2026-55040 authentication bypass" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV (Aug 2026).&lt;/strong&gt; &lt;strong&gt;CVE-2026-55040&lt;/strong&gt; is a weak-authentication flaw in Microsoft SharePoint Server. Remote attackers bypass security features and authentication over the network — enabling unauthorized access to sites, document libraries, and potentially code execution via malicious web parts.&lt;/p&gt;&lt;h2&gt;Affected SharePoint&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;SharePoint Server subscription editions listed in Microsoft security guide&lt;/li&gt;&lt;li&gt;On-premises SharePoint exposed on ports 443/80&lt;/li&gt;&lt;li&gt;Hybrid deployments with on-prem SharePoint still serving content&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify build&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Get-SPFarm | Select BuildVersion
(Get-SPServer).Version
curl -sk https://sharepoint.corp/_layouts/15/viewlsts.aspx | head -5&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download SharePoint security update from Microsoft Update Catalog.&lt;/li&gt;&lt;li&gt;Run Microsoft SharePoint Products Configuration Wizard after patch install.&lt;/li&gt;&lt;li&gt;Apply patch to all WFE and app servers in the farm — same maintenance window.&lt;/li&gt;&lt;li&gt;Verify farm version in Central Administration → Upgrade Status.&lt;/li&gt;&lt;li&gt;Review IIS and ULS logs for anomalous authentication from external IPs.&lt;/li&gt;&lt;li&gt;Reset farm service account passwords if exploitation suspected.&lt;/li&gt;&lt;li&gt;Enable SharePoint audit logging for site collection admin changes.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;Get-SPProduct -All | Where-Object {$_.Patchable -eq $true}
Merge-SPLogFile -Path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\LOGS&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Restrict SharePoint to VPN or internal network only&lt;/li&gt;&lt;li&gt;Enable WAF rules blocking known SharePoint exploit paths&lt;/li&gt;&lt;li&gt;Disable anonymous access and unused site collections&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;CVSS:&lt;/strong&gt; 9.1 Critical. Federal remediation deadline: 21 Aug 2026.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] Windows IKE Service Double-Free RCE (CVE-2026-33824)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-windows-ike-service.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Sat, 22 Aug 2026 18:20:27 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-2216946608319003749</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-ike-33824.png" alt="Windows IKE service patch for CVE-2026-33824" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV (Aug 2026).&lt;/strong&gt; &lt;strong&gt;CVE-2026-33824&lt;/strong&gt; is a double-free memory corruption bug in Microsoft Windows Internet Key Exchange (IKE) Service Extensions. Unauthenticated remote attackers send crafted UDP packets to achieve &lt;strong&gt;remote code execution&lt;/strong&gt; — no user interaction required.&lt;/p&gt;&lt;h2&gt;Affected systems&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Windows Server and Windows client builds listed in Microsoft MSRC advisory&lt;/li&gt;&lt;li&gt;Systems with IKE and AuthIP IPsec Keying Modules service running&lt;/li&gt;&lt;li&gt;VPN gateways, domain controllers, and edge Windows servers on UDP 500/4500&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Get-Service IKEEXT | Select Name, Status, StartType
Get-WindowsFeature RemoteAccess | Select InstallState
netstat -an | findstr ":500 :4500"&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Install August 2026 (or later) cumulative Windows security update from WSUS/Intune.&lt;/li&gt;&lt;li&gt;Reboot server after patch — IKEEXT service restart alone is insufficient.&lt;/li&gt;&lt;li&gt;Confirm KB number matches Microsoft advisory for CVE-2026-33824.&lt;/li&gt;&lt;li&gt;On Linux-managed fleets: patch Windows VMs via WSUS or SCCM maintenance window.&lt;/li&gt;&lt;li&gt;Review Windows Event Log (System) for IKEEXT crashes before patch date.&lt;/li&gt;&lt;li&gt;Block UDP 500/4500 at perimeter firewall for non-VPN hosts as defense-in-depth.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;systeminfo | findstr KB
Get-HotFix | Sort-Object InstalledOn -Descending | Select -First 5&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Workaround (temporary)&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Disable IKEEXT service only if IPsec/VPN is not required on that host&lt;/li&gt;&lt;li&gt;Restrict UDP 500/4500 to known VPN peer IPs at firewall&lt;/li&gt;&lt;li&gt;Prioritize internet-facing and domain-joined servers first&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;CVSS:&lt;/strong&gt; 9.8 Critical. Confirmed exploited in the wild.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] VMware vCenter Syslog Path Traversal RCE (CVE-2026-59310)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-vmware-vcenter-syslog.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Sat, 22 Aug 2026 18:20:14 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-5908019560482357165</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-vcenter-59310.png" alt="VMware vCenter patch for CVE-2026-59310 Syslog path traversal" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV (Aug 2026).&lt;/strong&gt; &lt;strong&gt;CVE-2026-59310&lt;/strong&gt; is a path traversal flaw in VMware vCenter's Syslog server. Any attacker with network access to vCenter can achieve &lt;strong&gt;remote code execution&lt;/strong&gt; on the appliance — full control of your virtualization management plane.&lt;/p&gt;&lt;h2&gt;Affected vCenter&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;VMware vCenter Server builds listed in Broadcom VMSA-2026-0008&lt;/li&gt;&lt;li&gt;vCenter with Syslog forwarding enabled (default in many deployments)&lt;/li&gt;&lt;li&gt;Management VLAN reachable from compromised workstation or flat network&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ssh admin@vcenter.local
vpxd -v 2&gt;/dev/null || cat /etc/vmware-vpx/version
ss -tlnp | grep 514&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed vCenter ISO/patch from Broadcom Customer Connect.&lt;/li&gt;&lt;li&gt;Snapshot vCenter VM or take appliance backup before upgrade.&lt;/li&gt;&lt;li&gt;Apply patch via VAMI (&lt;code&gt;https://vcenter:5480&lt;/code&gt;) → Update → Install.&lt;/li&gt;&lt;li&gt;Reboot vCenter; confirm Syslog service starts cleanly.&lt;/li&gt;&lt;li&gt;Verify build matches VMSA fixed-version table.&lt;/li&gt;&lt;li&gt;Review Syslog and vpxd logs for traversal attempts in last 30 days.&lt;/li&gt;&lt;li&gt;Rotate vCenter SSO and local admin passwords post-patch.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;grep -i syslog /var/log/vmware/vpxd.log | tail -50
grep -i traversal /var/log/vmware/syslog.log 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Restrict vCenter management (443, 5480) to jump-host IP allowlist&lt;/li&gt;&lt;li&gt;Segment vCenter on dedicated management VLAN — no internet exposure&lt;/li&gt;&lt;li&gt;Assume compromise if vCenter was internet-facing and unpatched&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;CVSS:&lt;/strong&gt; 9.8 Critical. No vendor workaround — patch only.&lt;/p&gt;</description></item><item><title>[HIGH PRIORITY] VMware ESXi TOCTOU Privilege Escalation (CVE-2025-22224)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-vmware-esxi-toctou.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:57:17 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-1360436625859992356</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-esxi-22224.png" alt="VMware ESXi patch CVE-2025-22224 TOCTOU" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-22224&lt;/strong&gt; is a time-of-check time-of-use (TOCTOU) vulnerability in VMware ESXi VMX process allowing local attackers with VM access to escalate to code execution on the hypervisor host — critical for multi-tenant and cloud ESXi clusters.&lt;/p&gt;&lt;h2&gt;Affected ESXi&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;ESXi 8.0 before ESXi 8.0 U3d&lt;/li&gt;&lt;li&gt;ESXi 7.0 before ESXi 7.0 U3s&lt;/li&gt;&lt;li&gt;Hosts running untrusted or compromised VMs&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ssh root@esxi-host
esxcli system version get
vmware -v&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Snapshot VM inventory; plan rolling cluster maintenance.&lt;/li&gt;&lt;li&gt;Download fixed ESXi image (8.0 U3d / 7.0 U3s) from Broadcom portal.&lt;/li&gt;&lt;li&gt;Evacuate VMs or enter maintenance mode per host.&lt;/li&gt;&lt;li&gt;Apply update via vSphere Lifecycle Manager or esxcli software profile.&lt;/li&gt;&lt;li&gt;Reboot host; verify &lt;code&gt;esxcli system version get&lt;/code&gt; shows patched build.&lt;/li&gt;&lt;li&gt;Review VM guest tools for escape indicators on sensitive VMs.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;esxcli system maintenanceMode set --enable true
esxcli software profile update -p ESXi-8.0.0-XXXX -d https://host/update
esxcli system maintenanceMode set --enable false&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Workaround until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Do not run untrusted VMs on shared ESXi hosts&lt;/li&gt;&lt;li&gt;Enable lockdown mode and restrict host admin access&lt;/li&gt;&lt;li&gt;Segment management network from VM traffic&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] SimpleHelp Remote Support RCE (CVE-2024-55956)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-simplehelp-remote-support.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:57:04 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-7546148157387975270</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-simplehelp.png" alt="SimpleHelp patch for CVE-2024-55956" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2024-55956&lt;/strong&gt; allows unauthenticated remote code execution in SimpleHelp remote support software on Linux and Windows. MSPs and IT teams use SimpleHelp for remote desktop — exploitation grants access to all connected endpoints.&lt;/p&gt;&lt;h2&gt;Affected SimpleHelp&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;SimpleHelp before 5.5.8&lt;/li&gt;&lt;li&gt;Self-hosted SimpleHelp on port 443/8080&lt;/li&gt;&lt;li&gt;MSP remote support gateways&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;curl -sk https://support.example:443/ | grep -i simplehelp
systemctl status simplehelp 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download SimpleHelp &lt;strong&gt;5.5.8+&lt;/strong&gt; from vendor portal.&lt;/li&gt;&lt;li&gt;Notify users — brief outage during upgrade.&lt;/li&gt;&lt;li&gt;On &lt;strong&gt;Linux&lt;/strong&gt;: stop service, backup &lt;code&gt;/opt/simplehelp&lt;/code&gt;, run upgrade installer, restart.&lt;/li&gt;&lt;li&gt;Verify version in admin console About page.&lt;/li&gt;&lt;li&gt;Audit technician accounts for unknown admin users.&lt;/li&gt;&lt;li&gt;Invalidate all active remote sessions and regenerate API keys.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;systemctl restart simplehelp
grep -i version /opt/simplehelp/config/*.xml 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Disable internet access to SimpleHelp portal&lt;/li&gt;&lt;li&gt;Require VPN for all remote support sessions&lt;/li&gt;&lt;li&gt;Assume breach if exposed unpatched during active exploitation window&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Palo Alto Expedition Tool RCE (CVE-2024-8957)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-palo-alto-expedition-tool.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:56:51 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-1187095902564995912</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-panos-expedition.png" alt="Palo Alto Expedition patch CVE-2024-8957" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2024-8957&lt;/strong&gt; is an unauthenticated remote code execution flaw in Palo Alto Networks &lt;strong&gt;Expedition&lt;/strong&gt; migration tool (runs on Linux). Attackers steal PAN-OS firewall configs, credentials, and API keys from migration projects.&lt;/p&gt;&lt;h2&gt;Affected Expedition&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Expedition before 1.2.30&lt;/li&gt;&lt;li&gt;Expedition servers on Ubuntu/RHEL with port 443 exposed&lt;/li&gt;&lt;li&gt;Migration projects containing production firewall exports&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Detect exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ss -tlnp | grep 443
curl -sk https://expedition.internal/ | grep -i expedition
grep -R Expedition /opt/ 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download Expedition &lt;strong&gt;1.2.30+&lt;/strong&gt; from Palo Alto support portal.&lt;/li&gt;&lt;li&gt;Stop Expedition service on Linux host.&lt;/li&gt;&lt;li&gt;Backup &lt;code&gt;/opt/expedition&lt;/code&gt; project database and exports.&lt;/li&gt;&lt;li&gt;Run vendor upgrade script or replace container/image per KB.&lt;/li&gt;&lt;li&gt;Restart service; verify version in Expedition web UI.&lt;/li&gt;&lt;li&gt;Rotate all PAN-OS API keys and admin passwords stored in Expedition projects.&lt;/li&gt;&lt;li&gt;Re-import firewall configs from clean backups if compromise suspected.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;systemctl status expedition 2&gt;/dev/null
find /opt/expedition -mtime -7 -type f -ls 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Hardening&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Never expose Expedition to internet — internal VLAN only&lt;/li&gt;&lt;li&gt;Delete migration projects after cutover&lt;/li&gt;&lt;li&gt;Encrypt stored firewall exports at rest&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Cisco ASA and FTD WebVPN RCE (CVE-2025-20362)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-cisco-asa-and-ftd-webvpn.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:56:38 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-5846595998996339978</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-cisco-asa-20362.png" alt="Cisco ASA patch for CVE-2025-20362" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-20362&lt;/strong&gt; is a remote code execution vulnerability in Cisco ASA and FTD WebVPN / remote access VPN services. Critical for perimeter firewalls protecting Linux and Windows internal networks.&lt;/p&gt;&lt;h2&gt;Affected Cisco&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;ASA software trains listed in Cisco PSIRT advisory (2025)&lt;/li&gt;&lt;li&gt;FTD with remote access VPN / SSL VPN enabled&lt;/li&gt;&lt;li&gt;Internet-exposed VPN portals on port 443&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version | include Software
show running-config webvpn
show vpn-sessiondb summary&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed ASA/FTD image from Cisco Software Central.&lt;/li&gt;&lt;li&gt;Export running config backup before upgrade.&lt;/li&gt;&lt;li&gt;Install fixed image via ASDM or CLI &lt;code&gt;software install&lt;/code&gt; workflow.&lt;/li&gt;&lt;li&gt;Reboot appliance; verify WebVPN service after patch.&lt;/li&gt;&lt;li&gt;Temporarily disable WebVPN if emergency patch window delayed.&lt;/li&gt;&lt;li&gt;Review VPN logs for anomalous pre-auth connections.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;show version
show running-config | include webvpn
show logging | include 443&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Post-patch&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Restrict VPN portal source IPs at upstream firewall&lt;/li&gt;&lt;li&gt;Enable MFA for all VPN users&lt;/li&gt;&lt;li&gt;Audit for unknown local accounts on ASA&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Ivanti Policy Secure Stack Buffer Overflow (CVE-2025-0288)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-ivanti-policy-secure.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:56:25 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-6783748052168230287</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-ivanti-0288.png" alt="Ivanti Policy Secure patch CVE-2025-0288" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-0288&lt;/strong&gt; is a stack buffer overflow in Ivanti Policy Secure and Connect Secure gateways. Unauthenticated remote attackers achieve RCE on VPN appliances — part of the 2025 Ivanti patch wave alongside CVE-2025-22457.&lt;/p&gt;&lt;h2&gt;Affected Ivanti&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Policy Secure before 22.7R1.3&lt;/li&gt;&lt;li&gt;Connect Secure builds listed in Ivanti advisory (patch alongside 22457)&lt;/li&gt;&lt;li&gt;Internet-exposed VPN concentrators&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify build&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version
show config ssl&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Apply latest Ivanti cumulative patch from security advisory (minimum fixed builds per product line).&lt;/li&gt;&lt;li&gt;Run ICT/EAST scan before and after patching.&lt;/li&gt;&lt;li&gt;Import patch via admin console; allow full reboot cycle.&lt;/li&gt;&lt;li&gt;Disable internet VPN access until patch confirmed.&lt;/li&gt;&lt;li&gt;Rotate all VPN user credentials and SAML secrets post-patch.&lt;/li&gt;&lt;li&gt;Hunt for web shells and rogue admin accounts in appliance logs.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;last -20
grep -i admin /var/log/messages 2&gt;/dev/null | tail -30&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Workaround&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Block VPN portal at perimeter firewall immediately&lt;/li&gt;&lt;li&gt;Restrict to IP allowlist if VPN must remain partially available&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Fortinet FortiWeb SQL Injection RCE (CVE-2025-25257)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-fortinet-fortiweb-sql.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Fri, 21 Aug 2026 09:56:10 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-4106730028181481262</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-fortiweb.png" alt="Fortinet FortiWeb patch for CVE-2025-25257" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-25257&lt;/strong&gt; is an unauthenticated SQL injection in Fortinet FortiWeb WAF appliances. Attackers achieve &lt;strong&gt;remote code execution&lt;/strong&gt; on Linux-based FortiWeb devices protecting public web applications.&lt;/p&gt;&lt;h2&gt;Affected FortiWeb&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;FortiWeb before 7.6.3&lt;/li&gt;&lt;li&gt;FortiWeb before 7.4.7&lt;/li&gt;&lt;li&gt;Internet-facing WAF on ports 443/8443&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;get system status
diagnose version&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed FortiWeb firmware from Fortinet support portal.&lt;/li&gt;&lt;li&gt;Schedule maintenance — WAF will briefly stop filtering traffic during reboot.&lt;/li&gt;&lt;li&gt;Install via &lt;strong&gt;System → Firmware → Upgrade&lt;/strong&gt; in FortiWeb GUI.&lt;/li&gt;&lt;li&gt;Reboot appliance; confirm version matches PSIRT fixed build table.&lt;/li&gt;&lt;li&gt;Review WAF logs for SQLi payloads in last 30 days.&lt;/li&gt;&lt;li&gt;Rotate FortiWeb admin passwords and API tokens.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;get system status | grep Version
execute log filter category 0
execute log display&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Restrict FortiWeb management to OOB network&lt;/li&gt;&lt;li&gt;Enable FortiGuard IPS signature if emergency mitigation published&lt;/li&gt;&lt;li&gt;Assume compromise if internet-facing and unpatched&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Progress WhatsUp Gold RCE (CVE-2024-6670)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-progress-whatsup-gold-rce.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:32:48 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-573966792826645327</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-whatsup.png" alt="WhatsUp Gold patch for high priority CVE-2024-6670" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2024-6670&lt;/strong&gt; is an unauthenticated remote code execution flaw in Progress WhatsUp Gold network monitoring. Attackers run commands on Windows or Linux monitoring servers with network visibility into your entire infrastructure.&lt;/p&gt;&lt;h2&gt;Affected WhatsUp Gold&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;WhatsUp Gold before 2024.0.1&lt;/li&gt;&lt;li&gt;Monitoring servers on ports 9643/443&lt;/li&gt;&lt;li&gt;MSP NOC dashboards exposed to internet&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Detect exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;nmap -p 9643,443 --script http-title monitor-subnet/24
curl -sk https://monitor.example:9643/ | grep -i whatsUp&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download WhatsUp Gold &lt;strong&gt;2024.0.1+&lt;/strong&gt; from Progress support.&lt;/li&gt;&lt;li&gt;Stop WhatsUp Gold services on Linux: &lt;code&gt;systemctl stop whatsuptime&lt;/code&gt; (service name varies by install).&lt;/li&gt;&lt;li&gt;Run vendor upgrade installer or apply hotfix package.&lt;/li&gt;&lt;li&gt;Restart services; confirm version in web admin About page.&lt;/li&gt;&lt;li&gt;Rotate SNMP/SSH/API credentials stored in WhatsUp Gold credential library.&lt;/li&gt;&lt;li&gt;Review alert history for unauthorized script execution indicators.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Linux — verify service after patch
systemctl status whatsuptime 2&gt;/dev/null || ps aux | grep -i whatsUp
ss -tlnp | grep 9643&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Hardening&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Never expose WhatsUp Gold to public internet&lt;/li&gt;&lt;li&gt;Segment monitoring server from production VLANs&lt;/li&gt;&lt;li&gt;Use read-only SNMP community strings where possible&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Ivanti Connect Secure Auth Bypass (CVE-2023-46805)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-ivanti-connect-secure_0808490194.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:32:36 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-4671147709697450758</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-ivanti-46805.png" alt="Ivanti Connect Secure auth bypass patch CVE-2023-46805" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2023-46805&lt;/strong&gt; is an authentication bypass in Ivanti Connect Secure VPN. Chained with CVE-2024-21887 command injection for unauthenticated RCE on Linux-based ICS appliances.&lt;/p&gt;&lt;h2&gt;Affected Ivanti&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Ivanti Connect Secure 9.x before 9.1R14&lt;/li&gt;&lt;li&gt;Ivanti Policy Secure before fixed builds&lt;/li&gt;&lt;li&gt;Internet-exposed VPN gateways&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version
curl -sk https://vpn.example.com/dana-na/ | head -3&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Apply Ivanti cumulative patch to minimum &lt;strong&gt;9.1R14&lt;/strong&gt; or 22.7R2.1 per advisory.&lt;/li&gt;&lt;li&gt;Run Ivanti ICT (Integrity Checker Tool) before patching — save report.&lt;/li&gt;&lt;li&gt;Import patch via admin console; allow full reboot.&lt;/li&gt;&lt;li&gt;Re-run ICT after patch — investigate any failures.&lt;/li&gt;&lt;li&gt;Also patch CVE-2024-21887 if not on fixed build.&lt;/li&gt;&lt;li&gt;Force password reset for all VPN users and admins.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Post-patch persistence hunt
last -20
find /home -name '*.pl' -o -name 'c.cgi' 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Disable VPN portal at perimeter firewall&lt;/li&gt;&lt;li&gt;Use Ivanti external ICT if internal patching delayed&lt;/li&gt;&lt;li&gt;Assume compromise if exposed without patch for &amp;gt;72 hours&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Veeam Backup Enterprise Manager Auth Bypass (CVE-2024-5806)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-veeam-backup-enterprise.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:32:24 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-9196737885357609543</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-veeam.png" alt="Veeam Backup patch for high priority CVE-2024-5806" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2024-5806&lt;/strong&gt; is an authentication bypass in Veeam Backup Enterprise Manager on Windows and Linux backup servers. Attackers access backup consoles, steal credentials, and encrypt or exfiltrate backup repositories — catastrophic for ransomware recovery.&lt;/p&gt;&lt;h2&gt;Affected Veeam&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Veeam Backup &amp;amp; Replication before 12.2.0.334&lt;/li&gt;&lt;li&gt;Enterprise Manager exposed on port 9398/443&lt;/li&gt;&lt;li&gt;Linux Veeam backup proxies and management servers&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# Linux Veeam server
veeamconfig --version 2&gt;/dev/null || systemctl status veeamtransport
ss -tlnp | grep 9398&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download Veeam Backup &amp;amp; Replication cumulative patch from Veeam portal.&lt;/li&gt;&lt;li&gt;Pause backup jobs; notify stakeholders of maintenance window.&lt;/li&gt;&lt;li&gt;On &lt;strong&gt;Linux&lt;/strong&gt;: run vendor &lt;code&gt;veeam-update&lt;/code&gt; script or mount update ISO per KB; restart Veeam services.&lt;/li&gt;&lt;li&gt;On Windows: run Veeam update installer over existing install.&lt;/li&gt;&lt;li&gt;Verify version in Console → Help → About.&lt;/li&gt;&lt;li&gt;Rotate all stored credentials in Veeam Credential Manager.&lt;/li&gt;&lt;li&gt;Audit backup job history for unauthorized restore/export operations.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;systemctl restart veeamtransport veeambroker veeamdeploymentservice
grep -i 'login\|auth' /var/log/veeam/*.log 2&gt;/dev/null | tail -20&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Post-patch&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Never expose Veeam Enterprise Manager to internet&lt;/li&gt;&lt;li&gt;Use separate backup account with MFA and immutable storage&lt;/li&gt;&lt;li&gt;Test restore from clean backup after incident&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Palo Alto PAN-OS Authorization Bypass (CVE-2025-0108)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-palo-alto-pan-os_034067900.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:32:10 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-3004082213038816894</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-panos-0108.png" alt="PAN-OS authorization bypass patch CVE-2025-0108" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-0108&lt;/strong&gt; is an authorization bypass in Palo Alto PAN-OS management and dataplane paths. Attackers bypass security policies on unpatched firewalls — critical for perimeter Linux/Windows networks behind PAN devices.&lt;/p&gt;&lt;h2&gt;Affected PAN-OS&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;PAN-OS 11.2 before 11.2.4-h4&lt;/li&gt;&lt;li&gt;PAN-OS 11.1 before 11.1.6-h1&lt;/li&gt;&lt;li&gt;PAN-OS 10.2 before 10.2.13-h3&lt;/li&gt;&lt;li&gt;GlobalProtect and SSL decryption enabled environments&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;&amp;gt; show system info | match sw-version
&amp;gt; show system state | match cfg&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed PAN-OS content/software from Palo Alto support portal.&lt;/li&gt;&lt;li&gt;Export running config baseline before change.&lt;/li&gt;&lt;li&gt;Install via &lt;strong&gt;Device → Software&lt;/strong&gt; in HA-aware order (passive first).&lt;/li&gt;&lt;li&gt;Reboot if required; validate policy commit succeeds post-upgrade.&lt;/li&gt;&lt;li&gt;Diff running config against baseline for unauthorized rule changes.&lt;/li&gt;&lt;li&gt;Review traffic logs for policy bypass indicators after patch date.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;&amp;gt; show system info | match sw-version
&amp;gt; show config diff running-config saved-config
&amp;gt; show admins all&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Apply Palo Alto Threat Prevention temporary mitigation if published&lt;/li&gt;&lt;li&gt;Restrict management plane to OOB network&lt;/li&gt;&lt;li&gt;Increase logging on deny→allow policy anomalies&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] Atlassian Confluence Broken Access Control (CVE-2023-22515)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-atlassian-confluence.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:31:58 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-4866553000783539643</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-confluence-bac.png" alt="Confluence broken access control patch CVE-2023-22515" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2023-22515&lt;/strong&gt; is a broken access control flaw in Atlassian Confluence Data Center and Server. Unauthenticated attackers create admin accounts and take over Confluence on Linux Tomcat hosts — often chained before CVE-2023-22527 exploitation.&lt;/p&gt;&lt;h2&gt;Affected Confluence&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Confluence 8.0.0 through 8.5.1&lt;/li&gt;&lt;li&gt;Self-hosted wiki on port 8090/443&lt;/li&gt;&lt;li&gt;Instances without IP restriction on /setup path&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check for compromise&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;curl -s http://confluence:8090/status
grep -R 'confluence.version' /opt/atlassian/confluence/&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Backup Confluence home and database immediately.&lt;/li&gt;&lt;li&gt;Upgrade to Confluence &lt;strong&gt;8.5.2+&lt;/strong&gt; via Atlassian installer or download upgrade JAR from Atlassian security advisory.&lt;/li&gt;&lt;li&gt;On Linux: &lt;code&gt;/opt/atlassian/confluence/bin/stop-confluence.sh&lt;/code&gt;, apply upgrade, &lt;code&gt;start-confluence.sh&lt;/code&gt;.&lt;/li&gt;&lt;li&gt;Review &lt;strong&gt;User management&lt;/strong&gt; for unknown admin accounts.&lt;/li&gt;&lt;li&gt;Delete suspicious users; force password reset for all admins.&lt;/li&gt;&lt;li&gt;Block external access until patched and audited.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Audit admin users in Confluence DB (PostgreSQL example)
sudo -u postgres psql confluence -c "SELECT user_name, created_date FROM cwd_user ORDER BY created_date DESC LIMIT 10;"&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Workaround&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Restrict Confluence to internal VPN only&lt;/li&gt;&lt;li&gt;Block &lt;code&gt;/setup/&lt;/code&gt; paths at reverse proxy&lt;/li&gt;&lt;li&gt;Enable SAML/SSO with MFA after patch&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>[HIGH PRIORITY] SAP NetWeaver Visual Composer RCE (CVE-2025-31324)</title><link>https://www.hackthesec.co.in/2026/08/high-priority-sap-netweaver-visual.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Thu, 20 Aug 2026 11:31:44 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-8468106979931946903</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-sap.png" alt="SAP NetWeaver patch for high priority CVE-2025-31324" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;⚠ HIGH PRIORITY — CISA KEV.&lt;/strong&gt; &lt;strong&gt;CVE-2025-31324&lt;/strong&gt; is an unauthenticated remote code execution flaw in SAP NetWeaver Visual Composer / Metadata Uploader on Java-based SAP stacks. Attackers deploy JSP webshells and pivot to SAP ERP databases on Linux hosts.&lt;/p&gt;&lt;h2&gt;Affected SAP products&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;SAP NetWeaver Java Visual Composer before fixed SAP Security Note&lt;/li&gt;&lt;li&gt;Metadata Uploader component on exposed SAP Java ports (50000/50100)&lt;/li&gt;&lt;li&gt;Self-hosted SAP on SUSE/RHEL with Tomcat backend&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Detect exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;nmap -p 50000,50100,443 sap-subnet/24
curl -sk https://sap.example:443/irj/portal | head -5&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download SAP Security Note patch from SAP Support Portal (S-user required).&lt;/li&gt;&lt;li&gt;Schedule SAP maintenance window — stop SAP Java stack via SAP MMC or &lt;code&gt;sapcontrol -nr 00 -function Stop&lt;/code&gt;.&lt;/li&gt;&lt;li&gt;Apply SAP kernel/SCA component updates per note instructions.&lt;/li&gt;&lt;li&gt;Restart SAP instances; verify component version in SAP GUI or &lt;code&gt;sapcontrol -nr 00 -function GetVersionInfo&lt;/code&gt;.&lt;/li&gt;&lt;li&gt;Scan &lt;code&gt;/usr/sap/*/J*&lt;/code&gt; for unexpected JSP/webshell files.&lt;/li&gt;&lt;li&gt;Rotate SAP admin, DB, and RFC credentials after patch.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Linux SAP host — check for webshells
find /usr/sap -name '*.jsp' -mtime -14 -ls 2&gt;/dev/null
grep -R 'Visual Composer' /usr/sap/*/J*/ 2&gt;/dev/null | head&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Disable Metadata Uploader if SAP note provides workaround&lt;/li&gt;&lt;li&gt;Block SAP Java ports from internet at firewall&lt;/li&gt;&lt;li&gt;Require VPN for all SAP admin access&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>Cisco IOS XE Web UI Persistent Implant (CVE-2024-20399)</title><link>https://www.hackthesec.co.in/2026/08/cisco-ios-xe-web-ui-persistent-implant.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:35:01 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-8040398297865368579</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-cisco-20399.png" alt="Cisco IOS XE patch for CVE-2024-20399 persistent implant" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2024-20399&lt;/strong&gt; allows authenticated attackers to install persistent implants on Cisco IOS XE devices via the Web UI. Survives reboots when chained with CVE-2023-20198 — CISA KEV, critical for edge routers and switches.&lt;/p&gt;&lt;h2&gt;Affected IOS XE&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;IOS XE with Web UI enabled (same exposure as CVE-2023-20198)&lt;/li&gt;&lt;li&gt;ISR, ASR, Catalyst 9000 series on vulnerable trains&lt;/li&gt;&lt;li&gt;Devices already compromised may retain implant after partial patch&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check for implant before patching&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version
show platform software fed active install package integrity 2&gt;/dev/null
# Cisco PSIRT IOC — check for bad.lemonade / malicious Lua&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Run Cisco PSIRT compromise detection script from advisory first.&lt;/li&gt;&lt;li&gt;If compromised: factory reset or Cisco TAC recovery before patching.&lt;/li&gt;&lt;li&gt;Download IOS XE image with both 20198 and 20399 fixes from Software Central.&lt;/li&gt;&lt;li&gt;Backup config: &lt;code&gt;copy running-config flash:backup.cfg&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Install fixed image; full reload required.&lt;/li&gt;&lt;li&gt;After reboot: &lt;code&gt;no ip http server&lt;/code&gt; and &lt;code&gt;no ip http secure-server&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Rotate all credentials; rebuild AAA from clean template.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;show version | include Version
show running-config | include http
show logging | include LOGIN&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Post-patch hardening&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Disable Web UI permanently if SSH/NETCONF suffices&lt;/li&gt;&lt;li&gt;Restrict management plane to out-of-band network&lt;/li&gt;&lt;li&gt;Monitor Cisco PSIRT for updated IOCs monthly&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>pgAdmin4 Authentication Bypass via Deserialization (CVE-2024-5910)</title><link>https://www.hackthesec.co.in/2026/08/pgadmin4-authentication-bypass-via.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:34:48 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-5198224095650959172</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-vuln-pgadmin.png" alt="pgAdmin4 patch for CVE-2024-5910 auth bypass on Linux" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2024-5910&lt;/strong&gt; is an authentication bypass in pgAdmin4 when deserialization of untrusted data is triggered. Attackers gain admin access to PostgreSQL management UI on Linux servers — leading to database takeover.&lt;/p&gt;&lt;h2&gt;Affected pgAdmin4&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;pgAdmin4 before 8.11&lt;/li&gt;&lt;li&gt;Docker and pip installs on Ubuntu, Debian, RHEL&lt;/li&gt;&lt;li&gt;pgAdmin exposed on port 5050/443 without IP restriction&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;pip show pgadmin4 | grep Version
docker exec pgadmin4 cat /pgadmin4/version.json 2&gt;/dev/null
curl -s http://127.0.0.1:5050/misc/ping&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;h3&gt;pip install on Linux&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;sudo systemctl stop pgadmin4
pip install --upgrade pgadmin4==8.11
sudo systemctl start pgadmin4&lt;/code&gt;&lt;/pre&gt;&lt;h3&gt;Docker&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;docker pull dpage/pgadmin4:8.11
docker compose down
docker compose up -d&lt;/code&gt;&lt;/pre&gt;&lt;ol&gt;&lt;li&gt;After upgrade, reset pgAdmin master password and review stored server connections.&lt;/li&gt;&lt;li&gt;Rotate PostgreSQL passwords for all servers registered in pgAdmin.&lt;/li&gt;&lt;li&gt;Restrict pgAdmin to VPN or SSH tunnel — never public internet.&lt;/li&gt;&lt;/ol&gt;&lt;h2&gt;Post-patch audit&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Check pgAdmin user table for unknown admin accounts&lt;/li&gt;&lt;li&gt;Review PostgreSQL logs for new superuser grants&lt;/li&gt;&lt;li&gt;Enable 2FA if using pgAdmin 8.11+ with MFA support&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>Ivanti Sentry Server-Side Request Forgery Chain (CVE-2024-21893)</title><link>https://www.hackthesec.co.in/2026/08/ivanti-sentry-server-side-request.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:34:34 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-8480174229116180088</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-ivanti-sentry.png" alt="Ivanti Sentry patch for CVE-2024-21893 SSRF" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2024-21893&lt;/strong&gt; is a server-side request forgery (SSRF) flaw in Ivanti Sentry (formerly MobileIron). Chained with other Ivanti bugs, attackers pivot from Sentry to internal Connect Secure appliances and Linux backend services.&lt;/p&gt;&lt;h2&gt;Affected Ivanti Sentry&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Ivanti Sentry before 9.18.0.4&lt;/li&gt;&lt;li&gt;Sentry 9.17.x and earlier builds&lt;/li&gt;&lt;li&gt;Mobile device management gateways on port 443&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Verify version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version
curl -sk https://sentry.example.com/ | grep -i ivanti&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download Ivanti Sentry patch &lt;strong&gt;9.18.0.4+&lt;/strong&gt; from security advisory.&lt;/li&gt;&lt;li&gt;Schedule MDM downtime — mobile enrollments pause during reboot.&lt;/li&gt;&lt;li&gt;Apply patch via Sentry admin console or vendor CLI bundle.&lt;/li&gt;&lt;li&gt;Reboot appliance; verify build in admin UI.&lt;/li&gt;&lt;li&gt;Patch linked Connect Secure / Policy Secure if in same Ivanti stack.&lt;/li&gt;&lt;li&gt;Review Sentry logs for SSRF patterns targeting internal &lt;code&gt;127.0.0.1&lt;/code&gt; or RFC1918 hosts.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Post-patch — check for lateral movement artifacts
grep -i 'ssrf\|127.0.0.1\|internal' /var/log/sentry/*.log 2&gt;/dev/null | tail -20&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Hardening&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Do not expose Sentry admin to internet&lt;/li&gt;&lt;li&gt;Segment Sentry from internal database VLANs&lt;/li&gt;&lt;li&gt;Enable Ivanti ICT scan after every major patch&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>Atlassian Confluence Template Injection RCE (CVE-2023-22527)</title><link>https://www.hackthesec.co.in/2026/08/atlassian-confluence-template-injection.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:34:20 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-608570587788180715</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-confluence.png" alt="Atlassian Confluence patch for CVE-2023-22527 OGNL RCE" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2023-22527&lt;/strong&gt; is an unauthenticated OGNL/template injection in Atlassian Confluence Data Center and Server. Attackers achieve &lt;strong&gt;RCE&lt;/strong&gt; on Linux hosts running Confluence — CISA KEV, mass scanning within hours of disclosure.&lt;/p&gt;&lt;h2&gt;Affected Confluence&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Confluence Data Center and Server 8.5.x before 8.5.4&lt;/li&gt;&lt;li&gt;Confluence 8.4.x, 8.3.x, 8.2.x, 8.1.x, 8.0.x per advisory matrix&lt;/li&gt;&lt;li&gt;Self-hosted on Linux with Tomcat (port 8090/443)&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;curl -s http://confluence:8090/status | grep -i version
grep -R 'confluence.version' /opt/atlassian/confluence/ 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed Confluence JAR/installer from Atlassian security advisory.&lt;/li&gt;&lt;li&gt;Backup &lt;code&gt;/var/atlassian/application-data/confluence&lt;/code&gt; and database.&lt;/li&gt;&lt;li&gt;Stop Confluence: &lt;code&gt;systemctl stop confluence&lt;/code&gt; or &lt;code&gt;/opt/atlassian/confluence/bin/stop-confluence.sh&lt;/code&gt;&lt;/li&gt;&lt;li&gt;Apply upgrade via installer or replace affected JARs per Atlassian KB.&lt;/li&gt;&lt;li&gt;Start Confluence; confirm version in &lt;strong&gt;About Confluence&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Scan for rogue plugins, new admin users, and unexpected network connections.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Linux Tomcat path — hunt webshells post-patch
find /opt/atlassian/confluence -name '*.jsp' -mtime -14 -ls
grep -R 'cmd.exe\|/bin/bash' /opt/atlassian/confluence/temp/ 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Workaround until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Block external access to Confluence at firewall/WAF&lt;/li&gt;&lt;li&gt;Restrict to VPN-only if internal wiki must stay online&lt;/li&gt;&lt;li&gt;Disable anonymous access and guest spaces&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>Progress MOVEit Transfer SQL Injection RCE (CVE-2023-34362)</title><link>https://www.hackthesec.co.in/2026/08/progress-moveit-transfer-sql-injection.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:34:06 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-4443577677420353521</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-moveit.png" alt="MOVEit Transfer patch for CVE-2023-34362 SQL injection" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2023-34362&lt;/strong&gt; is an unauthenticated SQL injection in Progress MOVEit Transfer MFT servers. Attackers deploy web shells (e.g. human2.aspx) and steal data from thousands of organizations — one of the largest 2023 supply-chain breaches.&lt;/p&gt;&lt;h2&gt;Affected MOVEit&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;MOVEit Transfer before 2023.0.3 (June 2023 emergency patch)&lt;/li&gt;&lt;li&gt;Windows and Linux MOVEit Transfer instances&lt;/li&gt;&lt;li&gt;Internet-facing MFT on ports 443/8443&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Detect exposure&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;curl -sk https://mft.example.com/human.aspx | head -5
find /opt/MOVEit -name 'human2.aspx' -o -name '*.zip' 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Isolate&lt;/strong&gt; MOVEit from network if compromise suspected.&lt;/li&gt;&lt;li&gt;Download latest MOVEit Transfer cumulative patch from Progress support.&lt;/li&gt;&lt;li&gt;On &lt;strong&gt;Linux&lt;/strong&gt;: stop MOVEit service, apply vendor patch script or RPM, run database migration if prompted.&lt;/li&gt;&lt;li&gt;On Windows: run Progress installer over existing instance.&lt;/li&gt;&lt;li&gt;Restart services; verify version in MOVEit admin console.&lt;/li&gt;&lt;li&gt;Delete unauthorized ASPX/JSP files; restore DB from clean backup if webshell found.&lt;/li&gt;&lt;li&gt;Rotate SFTP keys, API tokens, and partner credentials.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# Linux — check MOVEit version after patch
systemctl status moveit-transfer
grep -R 'Version' /opt/MOVEit/config/ 2&gt;/dev/null&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Post-patch&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Engage IR firm if human2.aspx or LEMURLOOT indicators found&lt;/li&gt;&lt;li&gt;Notify data owners per breach disclosure requirements&lt;/li&gt;&lt;li&gt;Segment MFT from domain controllers and databases&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>Citrix Bleed NetScaler Session Token Leak (CVE-2023-4966)</title><link>https://www.hackthesec.co.in/2026/08/citrix-bleed-netscaler-session-token.html</link><category>Exploit</category><category>LATEST EXPLOIT</category><category>Remote_code_execution</category><category>Security</category><category>Vulnerability</category><author>noreply@blogger.com (Raj)</author><pubDate>Wed, 19 Aug 2026 18:33:51 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-6353083638681129765.post-151165689462794348</guid><description>&lt;p&gt;&lt;img src="https://blog.gnomeitsolutions.com/wp-content/uploads/2026/08/blogger-exploit-citrix-bleed.png" alt="Citrix NetScaler patch for CVE-2023-4966 Citrix Bleed" style="max-width:100%;height:auto;border-radius:6px;"/&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;CVE-2023-4966&lt;/strong&gt; (nicknamed &lt;em&gt;Citrix Bleed&lt;/em&gt;) is a buffer overread in Citrix NetScaler ADC and Gateway. Attackers leak session tokens from memory and hijack authenticated VPN/admin sessions without credentials — CISA KEV listed.&lt;/p&gt;&lt;h2&gt;Affected Citrix&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;NetScaler ADC and Gateway 14.1 before 14.1-8.50&lt;/li&gt;&lt;li&gt;NetScaler ADC and Gateway 13.1 before 13.1-49.15&lt;/li&gt;&lt;li&gt;NetScaler ADC 13.0 before 13.0-92.19 (EOL branch)&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Check version&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;show version
show ns config | grep -i ssl&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Patching Method&lt;/h2&gt;&lt;ol&gt;&lt;li&gt;Download fixed NetScaler build from Citrix downloads portal.&lt;/li&gt;&lt;li&gt;Schedule maintenance — active sessions will be terminated on reboot.&lt;/li&gt;&lt;li&gt;Install via GUI: &lt;strong&gt;Configuration → System → Upgrade&lt;/strong&gt; or CLI &lt;code&gt;install ns&lt;/code&gt; workflow per Citrix KB.&lt;/li&gt;&lt;li&gt;Reboot appliance; confirm version matches advisory fixed table.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Force global session reset&lt;/strong&gt; — invalidate all existing tokens post-patch.&lt;/li&gt;&lt;li&gt;Rotate admin passwords and MFA seeds; review AAA logs for hijacked sessions.&lt;/li&gt;&lt;/ol&gt;&lt;pre&gt;&lt;code&gt;# CLI version check after patch
show version
clear ssl session -all&lt;/code&gt;&lt;/pre&gt;&lt;h2&gt;Until patched&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Block NetScaler VPN portal from internet if possible&lt;/li&gt;&lt;li&gt;Enable MFA on all Citrix-published apps&lt;/li&gt;&lt;li&gt;Monitor for logins from unusual geographies after token leak window&lt;/li&gt;&lt;/ul&gt;</description></item></channel></rss>