mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
15 lines
498 B
Plaintext
15 lines
498 B
Plaintext
rule URL_File_Local_EXE {
|
|
meta:
|
|
description = "Detects an .url file that points to a local executable"
|
|
license = "https://creativecommons.org/licenses/by-nc/4.0/"
|
|
author = "Florian Roth"
|
|
reference = "https://twitter.com/malwareforme/status/915300883012870144"
|
|
date = "2017-10-04"
|
|
score = 60
|
|
strings:
|
|
$s1 = "[InternetShortcut]" ascii wide fullword
|
|
$s2 = /URL=file:\/\/\/C:\\[^\n]{1,50}\.exe/
|
|
condition:
|
|
filesize < 400 and all of them
|
|
}
|