Cybersecurity Rundown

July 31, 2025

Heroes, Good morning. On this Thursday, we are tracking a critical remote code execution vulnerability in a popular enterprise gateway and a new sophisticated phishing campaign targeting corporate credentials.

šŸ”“ CRITICAL ITEMS

🟠 HIGH SEVERITY ITEMS

🟢 EXECUTIVE INSIGHTS

⚫ DETECTION & RESPONSE KIT

āš ļø DISCLAIMER: All tools, commands, and queries provided below are for reference only. Validate in your environment before deployment. Test in safe environment first.

Ivanti Sentry RCE (CVE-2024-22052)

Splunk SIEM Query: Hunts for suspicious commands executed by the Ivanti Sentry service account, which could indicate exploitation.

# Name: Ivanti Sentry Suspicious Process Execution
# Sourcetype: Sysmon (EventCode=1) or Windows Security (EventCode=4688)
(source="xmlwineventlog:microsoft-windows-sysmon/operational" EventCode=1) OR (sourcetype="WinEventLog:Security" EventCode=4688)
ParentImage="*\\ivanti\\sentry\\*"
| search Image IN ("*\\powershell.exe", "*\\cmd.exe", "*\\sh.exe", "*\\bash.exe", "*\\curl.exe", "*\\wget.exe")
| stats count by _time, host, ParentImage, Image, CommandLine
| rename host as Endpoint, ParentImage as ParentProcess, Image as ChildProcess

Tycoon 2FA Phishing Kit

Suricata IDS/IPS Signature: Detects network traffic patterns associated with the Tycoon 2FA phishing kit's landing pages and reverse proxy infrastructure.

# Name: ET PHISHING Tycoon 2FA Phishing Kit Landing Page
# Description: Detects URI paths and parameters commonly used by the Tycoon 2FA kit.
alert http $HOME_NET any -> $EXTERNAL_NET any ( \
    msg:"ET PHISHING Known Tycoon 2FA Phishing Kit Activity"; \
    flow:to_server,established; \
    http.method; content:"POST"; \
    http.uri; pcre:"/\/auth\/login\?session_id=[a-f0-9]{32}/i"; \
    http.host; content:".finalstep.live"; dotprefix; \
    reference:url,thehackernews.com/2024/07/new-tycoon-2fa-phishing-kit-targets.html; \
    classtype:trojan-activity; \
    sid:2025073101; rev:1; \
)

This rundown should arm you for the day ahead. Thank you to all our cyber heroes for your continued vigilance. Have a great and secure Thursday!