mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 23:14:58 +00:00
26 lines
281 B
Plaintext
26 lines
281 B
Plaintext
import "pe"
|
|
|
|
rule single_section
|
|
{
|
|
condition:
|
|
pe.number_of_sections == 1
|
|
}
|
|
|
|
rule control_panel_applet
|
|
{
|
|
condition:
|
|
pe.exports("CPlApplet")
|
|
}
|
|
|
|
rule is_dll
|
|
{
|
|
condition:
|
|
pe.characteristics & pe.DLL
|
|
}
|
|
|
|
rule is_pe
|
|
{
|
|
condition:
|
|
pe.is_pe
|
|
}
|