100 Days of YARA – Day 53: AutoIt 3

Lots of malware abuses AutoIt 3 because of its unique and easy-to-use scripting language.

rule autoit3
{
	meta:
		description = "AutoIt 3"
		reference = "https://www.autoitscript.com/site/"
		decompiler = "http://domoticx.com/autoit3-decompiler-exe2aut/"

	strings:
		$ = "AutoIt v3" wide

	condition:
		uint16(0) == 0x5a4d and all of them
}

YARA Rules Index

One thought on “100 Days of YARA – Day 53: AutoIt 3

  1. Pingback: Week 07 – 2022 – This Week In 4n6

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s