Skip to content

Commit

Permalink
Fix appdome on Aarch64 arch
Browse files Browse the repository at this point in the history
  • Loading branch information
enovella authored Nov 27, 2023
1 parent df2c48b commit e268af8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apkid/rules/elf/protectors.yara
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ rule appdome_elf : protector
)
}

rule appdome_elf_a : protector
{
meta:
description = "Appdome"
sample = "0143ddce30b16890180cfa71c49520bde4cce706762f4da756e8c4d06283a481"
url = "https://www.appdome.com/"
author = "Eduardo Novella"

condition:
is_elf and not appdome_elf and
// Match at least 2 section names from hook,.hookname,adinit,.adi,ipcent,ipcsel
for 2 i in (0..elf.number_of_sections):
(elf.sections[i].name matches /(hook|\.hookname|adinit|\.adi|ipcent|ipcsel)/)
}

rule metafortress : protector
{
meta:
Expand Down

0 comments on commit e268af8

Please sign in to comment.