Detection rules › Elastic

RunDLL32 with Unusual Arguments

Source
github.com/elastic/protections-artifacts

Identifies unusual instances of RunDLL32 with suspicious keywords or paths in the process command line value. Adversaries may abuse rundll32.exe to proxy execution of malicious code.

MITRE ATT&CK coverage

Rule body

[rule]
description = """
Identifies unusual instances of RunDLL32 with suspicious keywords or paths in the process command line value.
Adversaries may abuse rundll32.exe to proxy execution of malicious code.
"""
id = "cfaf983e-1129-464c-b0aa-270f42e20d3d"
license = "Elastic License v2"
name = "RunDLL32 with Unusual Arguments"
os_list = ["windows"]
reference = [
    "https://www.elastic.co/security-labs/dipping-into-danger",
    "https://www.elastic.co/security-labs/unmasking-financial-services-intrusion-ref0657",
    "https://www.elastic.co/security-labs/thawing-the-permafrost-of-icedid-summary",
]
version = "1.0.47"

query = '''
process where event.action == "start" and process.name : "rundll32.exe" and
  (
   /* suspicious extensions and paths */

   (process.command_line : "*\\AppData\\Local\\Temp\\*,*" and not process.command_line : "*.dll*") or
    process.command_line :
          ("*.jpg*,*",
           "*.png*,*",
           "*.gif*,*",
           "*.bmp*,*",
           "*.jpeg*,*",
           "*.TIFF*,*",
           "*.tmp*,*",
           "*.dat*,*",
           "*.txt*,*",
           "* ?:/*/*",
           "* ..\\*",
           "*:\\Users\\Public\\*,*",
           "*:\\Users\\*\\Documents\\*,*",
           "*:\\Users\\*\\Pictures\\*,*",
           "*:\\Users\\*\\Music\\*,*",
           "*:\\Windows\\Tasks\\*,*",
           "*:\\Windows\\System32\\tasks\\*,*",
           "*:\\Documents and Settings\\*,*",
           "*\\@SSL\\DavWWWRoot\\*",

           /* Issue #371 */
           "*.bin,*",
           "*.log,*",
           "*.nki,*",
           "*\\M?-*.dll,_run@*",
           "*%TEMP%\\*.cpl*",
           "*\\Users\\*\\Downloads\\*.cpl*",
           "*\\appdata\\roaming\\microsoft\\templates\\*,*",
           
           /* DLL exec by ordinal */
           "* #*", "*,#*") or
    process.command_line like "*rUNdlL32.eXe*" or

    /* fake Control_RunDLL export */
    (process.command_line : "*Control_RunDLL*" and not process.command_line : "*shell32.dll*Control_RunDLL*") or

    /* delayed execution */
    (process.parent.name : "cmd.exe" and process.parent.args : ("timeout", "ping", "choice") and process.parent.args : ("/nobreak", "/n", "/t")) or

    /* execution from temp with suspicious parent process tree */
    (process.command_line : "*\\AppData\\Local\\Temp\\*" and process.parent.name : ("wscript.exe", "cscript.exe", "wmiprvse.exe")) or

    /* suspicious parent powershell args */
    (process.parent.name : "powershell.exe" and
     process.parent.args : ("-enc", "IEX", "*wp-content*", "*wp-admin*", "*wp-includes*", "*$*$*$*$*$*", "*^*^*^*^*^*^*^*^*^*", "*.replace*") and
     not (process.args : "UpdatePerUserSystemParameters" and process.args : "USER32.DLL"))
    )

   /* False Positives */
   and not

  process.command_line :
           ("*JOBID=*",
            "*davclnt.dll,DavSetCookie*",
            "*PhotoViewer*ImageView_Fu*",
            "*url.dll,FileProtocolHandler*",
            "*zzzzInvokeManagedCustomActionOutOfProc*",
            "*,DeferredDelete*",
            "*:\\WINDOWS\\system32\\spool\\*",
            "*:\\Program Files (x86)\\*",
            "*:\\Program Files\\*",
            /* Issue #282 - FP */
            "*cryptext*CryptExt*",
            "*dfshim.dll*ShOpenVerbShortcut*",
            "*\\Documents\\DocuShare\\*",

            /* Issue #371 */
            "*ndfapi.dll,NdfRunDllDiagnoseWithAnswerFile*",
            "*FirewallControlPanel.dll,ShowNotificationDialog*",
            "*--type=renderer*--log-file=*",
            "*--lang=*--log-file=*",
            "*--type=gpu-process*--user-data-dir=*",
            "*--type=gpu-process*--enable-chrome-runtime*",
            "*--type=gpu-process*--use-gl=*",
            
            "*shell32*OpenAs_RunDLL*",
            "*dfshim*ShOpenVerbExtension*",
            "*printui*PrintUIEntry*",
            "*mshtml*PrintHTML*",
            "*shell32*#44*",
            "*shell32.dll*ShellExec_RunDLL*#*",
            "*EDGEHTML*#*"
            ) and not
            
   (process.command_line : "*.tmp*" and
    process.parent.executable : ("?:\\Windows\\System32\\msiexec.exe", "?:\\Windows\\SysWOW64\\msiexec.exe") and
    process.parent.args : "-Embedding") and
  not process.args : "?:\\ProgramData\\Parallels\\RASLogs\\tmp*.tmp,StopMemshell" and
  not (process.args : "?:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_*\\acsnative.dll*" and
       process.parent.executable : "?:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_*\\acslaunch_*.exe") and
  not process.parent.executable :
              ("?:\\Program Files\\Common Files\\BullGuardInstall\\BullGuard*.exe",
               "?:\\Program Files (x86)\\Intuit\\QuickBooks 20??\\QBW??.EXE",
               "?:\\Program Files\\Intuit\\QuickBooks 2022\\QBW.EXE", 
               "C:\\Users\\Public (x86)\\Spectra\\temp\\smsx.exe") and
  not (user.name : "user" and process.args : "file.dll,#*") and
  not (process.name : "rundll32.exe" and process.args : "uxtheme.dll,#64" and process.args : "?:\\WINDOWS\\Resources\\Themes\\*") and 
  not process.parent.executable :
                         ("?:\\Program Files\\NVIDIA Corporation\\*.exe",
                          "?:\\Program Files (x86)\\Windows Media Components\\Encoder\\wmstypelib.exe",
                          "?:\\Program Files\\Adobe\\Acrobat DC\\Acrobat\\AdobeCollabSync.exe") and
  not (process.name : "rundll32.exe" and
       process.args : ("dfshim.dll,ShArpMaintain",
                       "?:\\WINDOWS\\SYSTEM32\\MSHTML.dll,#125",
                       "dfshim.dll,ShOpenVerbApplication",
                       "?:\\WINDOWS\\System32\\shimgvw.dll,ImageView_PrintTo",
                       "?:\\Windows\\System32\\DriverStore\\FileRepository\\*",
                       "?:\\Windows\\system32\\hotplug.dll,HotPlugSafeRemovalDriveNotification",
                       "c:\\EWDK??\\Program Files\\Microsoft Visual Studio\\*,#1",
                       "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper32.dll,#1", 
                       "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper64.dll,#1", 
                       "C:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_x86-64\\acsnative.dll,", 
                       "C:\\Windows\\TEMP\\*.tmp\\uninshlp.dll,DeleteExeAndDeleteSelf",
                       "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp\\BgInstallAssist.dll,RunDll_*",
                       "?:\\WINDOWS\\Installer\\MSI*.tmp*")) and
  not (process.name : "rundll32.exe" and
       process.args : "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp\\*" and
       process.parent.executable : "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp") and
  not (process.parent.executable : "?:\\Program Files*\\Splashtop\\Splashtop Remote\\Client for STB\\strwinclt.exe" and
       process.args : "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper64.dll,#1") and
  not (process.name : "rundll32.exe" and process.command_line :  "\"C:\\Windows\\System32\\rundll32.exe\" \"C:\\Users\\*\\AppData\\Local\\Temp\\GLF*.tmp\",RunDll32_KillDTG" and
       process.parent.name : "BelMonitor.exe") and
  not process.command_line : "rundll32.exe \"C:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper??.dll\",#1" and
  not (process.parent.code_signature.subject_name == "IDS Imaging Development Systems GmbH" and process.parent.code_signature.trusted == true) and
  not (process.parent.code_signature.subject_name == "Feitian Technologies Co., Ltd." and process.parent.code_signature.trusted == true)
'''

min_endpoint_version = "8.10.0"
[[actions]]
action = "kill_process"
field = "process.entity_id"
state = 0
tree = true

[[optional_actions]]
action = "rollback"
field = "process.entity_id"
state = 0

[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1218"
name = "System Binary Proxy Execution"
reference = "https://attack.mitre.org/techniques/T1218/"
[[threat.technique.subtechnique]]
id = "T1218.011"
name = "Rundll32"
reference = "https://attack.mitre.org/techniques/T1218/011/"



[threat.tactic]
id = "TA0005"
name = "Defense Evasion"
reference = "https://attack.mitre.org/tactics/TA0005/"

[internal]
min_endpoint_version = "8.10.0"

Stages and Predicates

Stage 1: process

process where event.action == "start" and process.name : "rundll32.exe" and
  (
   (process.command_line : "*\\AppData\\Local\\Temp\\*,*" and not process.command_line : "*.dll*") or
    process.command_line :
          ("*.jpg*,*",
           "*.png*,*",
           "*.gif*,*",
           "*.bmp*,*",
           "*.jpeg*,*",
           "*.TIFF*,*",
           "*.tmp*,*",
           "*.dat*,*",
           "*.txt*,*",
           "* ?:/*/*",
           "* ..\\*",
           "*:\\Users\\Public\\*,*",
           "*:\\Users\\*\\Documents\\*,*",
           "*:\\Users\\*\\Pictures\\*,*",
           "*:\\Users\\*\\Music\\*,*",
           "*:\\Windows\\Tasks\\*,*",
           "*:\\Windows\\System32\\tasks\\*,*",
           "*:\\Documents and Settings\\*,*",
           "*\\@SSL\\DavWWWRoot\\*",
           "*.bin,*",
           "*.log,*",
           "*.nki,*",
           "*\\M?-*.dll,_run@*",
           "*%TEMP%\\*.cpl*",
           "*\\Users\\*\\Downloads\\*.cpl*",
           "*\\appdata\\roaming\\microsoft\\templates\\*,*",
           "* #*", "*,#*") or
    process.command_line like "*rUNdlL32.eXe*" or
    (process.command_line : "*Control_RunDLL*" and not process.command_line : "*shell32.dll*Control_RunDLL*") or
    (process.parent.name : "cmd.exe" and process.parent.args : ("timeout", "ping", "choice") and process.parent.args : ("/nobreak", "/n", "/t")) or
    (process.command_line : "*\\AppData\\Local\\Temp\\*" and process.parent.name : ("wscript.exe", "cscript.exe", "wmiprvse.exe")) or
    (process.parent.name : "powershell.exe" and
     process.parent.args : ("-enc", "IEX", "*wp-content*", "*wp-admin*", "*wp-includes*", "*$*$*$*$*$*", "*^*^*^*^*^*^*^*^*^*", "*.replace*") and
     not (process.args : "UpdatePerUserSystemParameters" and process.args : "USER32.DLL"))
    )
   and not
  process.command_line :
           ("*JOBID=*",
            "*davclnt.dll,DavSetCookie*",
            "*PhotoViewer*ImageView_Fu*",
            "*url.dll,FileProtocolHandler*",
            "*zzzzInvokeManagedCustomActionOutOfProc*",
            "*,DeferredDelete*",
            "*:\\WINDOWS\\system32\\spool\\*",
            "*:\\Program Files (x86)\\*",
            "*:\\Program Files\\*",
            "*cryptext*CryptExt*",
            "*dfshim.dll*ShOpenVerbShortcut*",
            "*\\Documents\\DocuShare\\*",
            "*ndfapi.dll,NdfRunDllDiagnoseWithAnswerFile*",
            "*FirewallControlPanel.dll,ShowNotificationDialog*",
            "*--type=renderer*--log-file=*",
            "*--lang=*--log-file=*",
            "*--type=gpu-process*--user-data-dir=*",
            "*--type=gpu-process*--enable-chrome-runtime*",
            "*--type=gpu-process*--use-gl=*",
            "*shell32*OpenAs_RunDLL*",
            "*dfshim*ShOpenVerbExtension*",
            "*printui*PrintUIEntry*",
            "*mshtml*PrintHTML*",
            "*shell32*#44*",
            "*shell32.dll*ShellExec_RunDLL*#*",
            "*EDGEHTML*#*"
            ) and not
   (process.command_line : "*.tmp*" and
    process.parent.executable : ("?:\\Windows\\System32\\msiexec.exe", "?:\\Windows\\SysWOW64\\msiexec.exe") and
    process.parent.args : "-Embedding") and
  not process.args : "?:\\ProgramData\\Parallels\\RASLogs\\tmp*.tmp,StopMemshell" and
  not (process.args : "?:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_*\\acsnative.dll*" and
       process.parent.executable : "?:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_*\\acslaunch_*.exe") and
  not process.parent.executable :
              ("?:\\Program Files\\Common Files\\BullGuardInstall\\BullGuard*.exe",
               "?:\\Program Files (x86)\\Intuit\\QuickBooks 20??\\QBW??.EXE",
               "?:\\Program Files\\Intuit\\QuickBooks 2022\\QBW.EXE",
               "C:\\Users\\Public (x86)\\Spectra\\temp\\smsx.exe") and
  not (user.name : "user" and process.args : "file.dll,#*") and
  not (process.name : "rundll32.exe" and process.args : "uxtheme.dll,#64" and process.args : "?:\\WINDOWS\\Resources\\Themes\\*") and
  not process.parent.executable :
                         ("?:\\Program Files\\NVIDIA Corporation\\*.exe",
                          "?:\\Program Files (x86)\\Windows Media Components\\Encoder\\wmstypelib.exe",
                          "?:\\Program Files\\Adobe\\Acrobat DC\\Acrobat\\AdobeCollabSync.exe") and
  not (process.name : "rundll32.exe" and
       process.args : ("dfshim.dll,ShArpMaintain",
                       "?:\\WINDOWS\\SYSTEM32\\MSHTML.dll,#125",
                       "dfshim.dll,ShOpenVerbApplication",
                       "?:\\WINDOWS\\System32\\shimgvw.dll,ImageView_PrintTo",
                       "?:\\Windows\\System32\\DriverStore\\FileRepository\\*",
                       "?:\\Windows\\system32\\hotplug.dll,HotPlugSafeRemovalDriveNotification",
                       "c:\\EWDK??\\Program Files\\Microsoft Visual Studio\\*,#1",
                       "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper32.dll,#1",
                       "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper64.dll,#1",
                       "C:\\Users\\Public\\IBM\\ClientSolutions\\Start_Programs\\Windows_x86-64\\acsnative.dll,",
                       "C:\\Windows\\TEMP\\*.tmp\\uninshlp.dll,DeleteExeAndDeleteSelf",
                       "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp\\BgInstallAssist.dll,RunDll_*",
                       "?:\\WINDOWS\\Installer\\MSI*.tmp*")) and
  not (process.name : "rundll32.exe" and
       process.args : "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp\\*" and
       process.parent.executable : "?:\\Users\\*\\AppData\\Local\\Temp\\ns*.tmp") and
  not (process.parent.executable : "?:\\Program Files*\\Splashtop\\Splashtop Remote\\Client for STB\\strwinclt.exe" and
       process.args : "?:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper64.dll,#1") and
  not (process.name : "rundll32.exe" and process.command_line :  "\"C:\\Windows\\System32\\rundll32.exe\" \"C:\\Users\\*\\AppData\\Local\\Temp\\GLF*.tmp\",RunDll32_KillDTG" and
       process.parent.name : "BelMonitor.exe") and
  not process.command_line : "rundll32.exe \"C:\\ProgramData\\FastTrack Software\\Admin By Request\\ShellHelper??.dll\",#1" and
  not (process.parent.code_signature.subject_name == "IDS Imaging Development Systems GmbH" and process.parent.code_signature.trusted == true) and
  not (process.parent.code_signature.subject_name == "Feitian Technologies Co., Ltd." and process.parent.code_signature.trusted == true)

Exclusions

The rule actively suppresses these predicates.

FieldKindExcluded valuesSearch
process.argseq?:\ProgramData\FastTrack Software\Admin By Request\ShellHelper64.dll,#1excludes:process.args field:"process.args" value:"?:\ProgramData\FastTrack Software\Admin By Request\ShellHelper64.dll,#1"
process.parent.executablewildcard?:\Program Files*\Splashtop\Splashtop Remote\Client for STB\strwinclt.exeexcludes:process.parent.executable field:"process.parent.executable" value:"?:\Program Files*\Splashtop\Splashtop Remote\Client for STB\strwinclt.exe"
process.argsequxtheme.dll,#64excludes:process.args field:"process.args" value:"uxtheme.dll,#64"
process.argsstarts_with?:\WINDOWS\Resources\Themes\excludes:process.args field:"process.args" value:"?:\WINDOWS\Resources\Themes\"
process.nameeqrundll32.exeexcludes:process.name field:"process.name" value:"rundll32.exe"
process.argsstarts_withfile.dll,#excludes:process.args field:"process.args" value:"file.dll,#"
user.nameequserexcludes:user.name field:"user.name" value:"user"
process.argswildcard?:\Users\*\AppData\Local\Temp\ns*.tmp\*excludes:process.args field:"process.args" value:"?:\Users\*\AppData\Local\Temp\ns*.tmp\*"
process.parent.executablewildcard?:\Users\*\AppData\Local\Temp\ns*.tmpexcludes:process.parent.executable field:"process.parent.executable" value:"?:\Users\*\AppData\Local\Temp\ns*.tmp"
process.argswildcard?:\Users\Public\IBM\ClientSolutions\Start_Programs\Windows_*\acsnative.dll*excludes:process.args field:"process.args" value:"?:\Users\Public\IBM\ClientSolutions\Start_Programs\Windows_*\acsnative.dll*"
process.parent.executablewildcard?:\Users\Public\IBM\ClientSolutions\Start_Programs\Windows_*\acslaunch_*.exeexcludes:process.parent.executable field:"process.parent.executable" value:"?:\Users\Public\IBM\ClientSolutions\Start_Programs\Windows_*\acslaunch_*.exe"
process.argswildcarddfshim.dll,ShArpMaintain, ?:\WINDOWS\SYSTEM32\MSHTML.dll,#125, dfshim.dll,ShOpenVerbApplication, ?:\WINDOWS\System32\shimgvw.dll,ImageView_PrintTo, ?:\Windows\System32\DriverStore\FileRepository\*, ?:\Windows\system32\hotplug.dll,HotPlugSafeRemovalDriveNotification, c:\EWDK??\Program Files\Microsoft Visual Studio\*,#1, ?:\ProgramData\FastTrack Software\Admin By Request\ShellHelper32.dll,#1, ?:\ProgramData\FastTrack Software\Admin By Request\ShellHelper64.dll,#1, C:\Users\Public\IBM\ClientSolutions\Start_Programs\Windows_x86-64\acsnative.dll,, C:\Windows\TEMP\*.tmp\uninshlp.dll,DeleteExeAndDeleteSelf, ?:\Users\*\AppData\Local\Temp\ns*.tmp\BgInstallAssist.dll,RunDll_*, ?:\WINDOWS\Installer\MSI*.tmp*excludes:process.args
process.command_linematch.tmpexcludes:process.command_line field:"process.command_line" value:".tmp"
process.parent.argseq-Embeddingexcludes:process.parent.args field:"process.parent.args" value:"-Embedding"
process.parent.executableeq?:\Windows\System32\msiexec.exe, ?:\Windows\SysWOW64\msiexec.exeexcludes:process.parent.executable field:"process.parent.executable" value:"?:\Windows\System32\msiexec.exe" field:"process.parent.executable" value:"?:\Windows\SysWOW64\msiexec.exe"
process.command_linewildcard"C:\Windows\System32\rundll32.exe" "C:\Users\*\AppData\Local\Temp\GLF*.tmp",RunDll32_KillDTGexcludes:process.command_line
process.parent.nameeqBelMonitor.exeexcludes:process.parent.name field:"process.parent.name" value:"BelMonitor.exe"
process.parent.code_signature.subject_nameeqFeitian Technologies Co., Ltd.excludes:process.parent.code_signature.subject_name field:"process.parent.code_signature.subject_name" value:"Feitian Technologies Co., Ltd."
process.parent.code_signature.trustedeqtrueexcludes:process.parent.code_signature.trusted field:"process.parent.code_signature.trusted" value:"true"
process.parent.code_signature.subject_nameeqIDS Imaging Development Systems GmbHexcludes:process.parent.code_signature.subject_name field:"process.parent.code_signature.subject_name" value:"IDS Imaging Development Systems GmbH"
process.argswildcard?:\ProgramData\Parallels\RASLogs\tmp*.tmp,StopMemshellexcludes:process.args field:"process.args" value:"?:\ProgramData\Parallels\RASLogs\tmp*.tmp,StopMemshell"
process.command_lineeqrundll32.exe "C:\ProgramData\FastTrack Software\Admin By Request\ShellHelper??.dll",#1excludes:process.command_line
process.command_linewildcard*JOBID=*, *davclnt.dll,DavSetCookie*, *PhotoViewer*ImageView_Fu*, *url.dll,FileProtocolHandler*, *zzzzInvokeManagedCustomActionOutOfProc*, *,DeferredDelete*, *:\WINDOWS\system32\spool\*, *:\Program Files (x86)\*, *:\Program Files\*, *cryptext*CryptExt*, *dfshim.dll*ShOpenVerbShortcut*, *\Documents\DocuShare\*, *ndfapi.dll,NdfRunDllDiagnoseWithAnswerFile*, *FirewallControlPanel.dll,ShowNotificationDialog*, *--type=renderer*--log-file=*, *--lang=*--log-file=*, *--type=gpu-process*--user-data-dir=*, *--type=gpu-process*--enable-chrome-runtime*, *--type=gpu-process*--use-gl=*, *shell32*OpenAs_RunDLL*, *dfshim*ShOpenVerbExtension*, *printui*PrintUIEntry*, *mshtml*PrintHTML*, *shell32*#44*, *shell32.dll*ShellExec_RunDLL*#*, *EDGEHTML*#*excludes:process.command_line
process.parent.executablewildcard?:\Program Files\Common Files\BullGuardInstall\BullGuard*.exe, ?:\Program Files (x86)\Intuit\QuickBooks 20??\QBW??.EXE, ?:\Program Files\Intuit\QuickBooks 2022\QBW.EXE, C:\Users\Public (x86)\Spectra\temp\smsx.exeexcludes:process.parent.executable
process.parent.executablewildcard?:\Program Files\NVIDIA Corporation\*.exe, ?:\Program Files (x86)\Windows Media Components\Encoder\wmstypelib.exe, ?:\Program Files\Adobe\Acrobat DC\Acrobat\AdobeCollabSync.exeexcludes:process.parent.executable field:"process.parent.executable" value:"?:\Program Files\NVIDIA Corporation\*.exe" field:"process.parent.executable" value:"?:\Program Files (x86)\Windows Media Components\Encoder\wmstypelib.exe" field:"process.parent.executable" value:"?:\Program Files\Adobe\Acrobat DC\Acrobat\AdobeCollabSync.exe"

Indicators

These rows show field, operator, and value matches.

FieldKindValuesSearch
event.actioneq
  • start corpus 391 (elastic 391)
field:"EventType" kind:eq value:"start"
process.command_linewildcard
  • * #* corpus 2 (sigma 1, chronicle 1)
  • * ..\*
  • * ?:/*/* corpus 2 (elastic 2)
  • *%TEMP%\*.cpl*
  • *,#* corpus 3 (sigma 2, chronicle 1)
  • *.TIFF*,*
  • *.bin,*
  • *.bmp*,*
  • *.dat*,*
  • *.gif*,*
  • *.jpeg*,*
  • *.jpg*,*
  • *.log,*
  • *.nki,*
  • *.png*,*
  • *.tmp*,*
  • *.txt*,*
  • *:\Documents and Settings\*,*
  • *:\Users\*\Documents\*,*
  • *:\Users\*\Music\*,*
  • *:\Users\*\Pictures\*,*
  • *:\Users\Public\*,*
  • *:\Windows\System32\tasks\*,*
  • *:\Windows\Tasks\*,*
  • *Control_RunDLL* corpus 6 (sigma 3, splunk 2, elastic 1)
  • *\@SSL\DavWWWRoot\*
  • *\AppData\Local\Temp\* corpus 28 (sigma 26, elastic 2)
  • *\AppData\Local\Temp\*,*
  • *\M?-*.dll,_run@*
  • *\Users\*\Downloads\*.cpl*
  • *\appdata\roaming\microsoft\templates\*,*
  • *rUNdlL32.eXe*
field:"CommandLine" kind:wildcard
process.namewildcard
  • rundll32.exe corpus 126 (elastic 100, splunk 26)
field:"process_name" kind:wildcard value:"rundll32.exe"
process.parent.argswildcard
  • *$*$*$*$*$*
  • *.replace*
  • *^*^*^*^*^*^*^*^*^*
  • *wp-admin*
  • *wp-content*
  • *wp-includes*
  • -enc
  • /n
  • /nobreak
  • /t
  • IEX
  • choice
  • ping
  • timeout
field:"process.parent.args" kind:wildcard
process.parent.namewildcard
  • cmd.exe corpus 36 (elastic 31, splunk 4, kusto 1)
  • cscript.exe corpus 16 (elastic 15, splunk 1)
  • powershell.exe corpus 39 (elastic 36, kusto 2, splunk 1)
  • wmiprvse.exe corpus 25 (elastic 19, splunk 5, kusto 1)
  • wscript.exe corpus 24 (elastic 23, splunk 1)
field:"parent_process_name" kind:wildcard