← Back to SOC feed Coverage →

detect-prifou-pua

kql MEDIUM Azure-Sentinel
DeviceFileEventsDeviceProcessEvents
huntingmicrosoftofficialpersistence
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-05-23T23:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may leverage IronSource’s PUA (Potentially Unwanted Application) distribution mechanism to deploy malicious payloads under the guise of legitimate apps. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate potential supply chain attacks and unauthorized app installations.

KQL Query

union DeviceFileEvents, DeviceProcessEvents 
| where Timestamp > ago(7d)
// Prifou launched by ironSource bundler
| where ProcessCommandLine has "/mhp " and ProcessCommandLine has "/mnt " 
and ProcessCommandLine has "/mds "
// InstallCore launch commands
or (ProcessCommandLine has "/mnl" and ProcessCommandLine has "rsf")
// Chromium installation
or ProcessCommandLine has "bundlename=chromium"
or FileName == "prefjsonfn.txt"
| project SHA1, ProcessCommandLine, FileName, InitiatingProcessFileName,
InitiatingProcessCommandLine, InitiatingProcessSHA1

Analytic Rule Definition

id: 62bc4944-46dd-4c2f-ba04-72837bbfec3f
name: detect-prifou-pua
description: |
  This query was originally published in the threat analytics report, ironSource PUA & unwanted apps impact millions.
  IronSource provides software bundling tools for many popular legitimate apps, such as FileZilla. However, some of ironSource's bundling tools are considered PUA, because they exhibit potentially unwanted behavior. One component of these tools, detected by Microsoft as Prifou, silently transmits system information from the user. It also installs an outdated version of Chromium browser with various browser extensions, resets the user's home page, changes their search engine settings, and forces Chromium and itself to launch at startup.
  The following query can be used to locate unique command-line strings used by ironSource bundlers to launch Prifou, as well as commands used by Prifou to install Chromium.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - DeviceFileEvents
  - DeviceProcessEvents
tactics:
- Persistence
- Malware, component
query: |
  union DeviceFileEvents, DeviceProcessEvents 
  | where Timestamp > ago(7d)
  // Prifou launched by ironSource bundler
  | where ProcessCommandLine has "/mhp " and ProcessCommandLine has "/mnt " 
  and ProcessCommandLine has "/mds "
  // InstallCore launch commands
  or (ProcessCommandLine has "/mnl" and ProcessCommandLine has "rsf")
  // Chromium installation
  or ProcessCommandLine has "bundlename=chromium"
  or FileName == "prefjsonfn.txt"
  | project SHA1, ProcessCommandLine, FileName, InitiatingProcessFileName,
  InitiatingProcessCommandLine, InitiatingProcessSHA1

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
DeviceProcessEventsEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Persistence/detect-prifou-pua.yaml