Skip to content

Commit

Permalink
Merge pull request #323 from ruppde/master
Browse files Browse the repository at this point in the history
fix fp in Suspicious_Size_firefox_exe
  • Loading branch information
Neo23x0 authored Dec 9, 2024
2 parents b1bc331 + 49009b3 commit a9cd779
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yara/generic_anomalies.yar
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,17 @@ rule Suspicious_Size_firefox_exe {
meta:
description = "Detects uncommon file size of firefox.exe"
license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
author = "Florian Roth (Nextron Systems)"
author = "Florian Roth (Nextron Systems)"
score = 60
date = "2015-12-21"
modified = "2024-06-03"
noarchivescan = 1
id = "73c4b838-9277-5756-a35d-4a644be5ad5d"
condition:
uint16(0) == 0x5a4d
and filename == "firefox.exe"
and ( filesize < 265KB or filesize > 910KB )
and not filepath contains "Malwarebytes"
}

rule Suspicious_Size_java_exe {
Expand Down

0 comments on commit a9cd779

Please sign in to comment.