MAL_BACKORDER_LOADER_WIN_Go_Jan23
Description
Detects the BACKORDER loader compiled in GO which download and executes a second stage payload from a remote server.
Query · yara
strings:
$GoBuildId = "Go build" ascii
// Debug symbols commonly seen in BACKORDER loader
$x_DebugSymbol_1 = "C:/updatescheck/main.go"
$x_DebugSymbol_2 = "C:/Users/IEUser/Desktop/Majestic/"
// Function name patterns observed in BACKORDER loader
$s_FunctionName_1 = "main.getUpdates.func"
$s_FunctionName_2 = "main.obt_zip"
$s_FunctionName_3 = "main.obtener_zip"
$s_FunctionName_4 = "main.get_zip"
$s_FunctionName_5 = "main.show_pr0gressbar"
$s_FunctionName_6 = "main.pr0cess"
condition:
uint16(0) == 0x5a4d
and filesize < 10MB
and $GoBuildId
and (
1 of ($x*)
or 3 of them
)