Unverified Commit 4d372eaa by Jaume Martin Committed by GitHub

Merge pull request #410 from manfred-kaiser/master

Added Rule for tweetable-polyglot-png
parents 38722445 3ca61e7e
rule TweetablePolyglotPng {
meta:
description = "tweetable-polyglot-png: https://github.com/DavidBuchanan314/tweetable-polyglot-png"
author = "Manfred Kaiser"
strings:
$magic1 = { 50 4b 01 02 }
$magic2 = { 50 4b 03 04 }
$magic3 = { 50 4b 05 06 }
condition:
(
uint32be(0) == 0x89504E47 or
uint32be(0) == 0xFFD8FFE0
) and
$magic1 and
$magic2 and
$magic3
}
......@@ -7,3 +7,4 @@ include "./packers/Javascript_exploit_and_obfuscation.yar"
include "./packers/packer.yar"
include "./packers/packer_compiler_signatures.yar"
include "./packers/peid.yar"
include "./packers/tweetable-polyglot-png.yar"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment