100 Days of YARA – Day 54: Golang protobufs

Protocol buffers, while not inherently malicious, is often used by malware because it makes implementing C2 protocols easy.

https://developers.google.com/protocol-buffers

rule golang_protobuf
{
	meta:
		description = "Golang binary with Google protobuf package"

	strings:
		$ = "google.golang.org/protobuf"

	condition:
		all of them
}

YARA Rules Index

One thought on “100 Days of YARA – Day 54: Golang protobufs

  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