Skip to content

Commit

Permalink
Merge pull request #316 from phantinuss/master
Browse files Browse the repository at this point in the history
fix: more generic FPs
  • Loading branch information
Neo23x0 committed Apr 3, 2024
2 parents 8b3bfe2 + 432c7f6 commit 98465ec
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion yara/gen_powershell_susp.yar
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ rule Suspicious_PowerShell_WebDownload_1 : HIGHVOL FILE {
score = 60
reference = "Internal Research"
date = "2017-02-22"
modified = "2022-07-27"
modified = "2024-04-03"
nodeepdive = 1
id = "a763fb82-c840-531b-b631-f282bf035020"
strings:
Expand All @@ -77,6 +77,15 @@ rule Suspicious_PowerShell_WebDownload_1 : HIGHVOL FILE {
$fp8 = "<helpItems" ascii fullword
$fp9 = "DownloadFile(\"https://codecov.io/bash" ascii
$fp10 = "DownloadFile('https://get.golang.org/installer.exe" ascii
$fpg1 = "All Rights"
$fpg2 = "<html"
$fpg3 = "<HTML"
$fpg4 = "Copyright"
$fpg5 = "License"
$fpg6 = "<?xml"
$fpg7 = "Help" fullword
$fpg8 = "COPYRIGHT" fullword
condition:
1 of ($s*) and not 1 of ($fp*)
}
Expand Down

0 comments on commit 98465ec

Please sign in to comment.