-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from fkie-cad/software_signatures
Software signatures added
- Loading branch information
Showing
6 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/plugins/analysis/software_components/signatures/lib.yara
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
rule libFLAC | ||
{ | ||
meta: | ||
software_name = "libFLAC" | ||
open_source = true | ||
website = "https://xiph.org/flac/" | ||
description = "Free Lossless Audio Codec multimedia library." | ||
strings: | ||
$a = /libFLAC \d+\.\d+\.\d+/ nocase ascii wide | ||
condition: | ||
$a and no_text_file | ||
} | ||
|
||
rule libogg | ||
{ | ||
meta: | ||
software_name = "libogg" | ||
open_source = true | ||
website = "https://xiph.org/ogg/" | ||
description = "ogg multimedia file parsing library." | ||
strings: | ||
$a = /libogg-\d+\.\d+\.\d+/ nocase ascii wide | ||
condition: | ||
$a and no_text_file | ||
} | ||
|
||
rule libVorbis | ||
{ | ||
meta: | ||
software_name = "libVorbis" | ||
open_source = true | ||
website = "https://xiph.org/vorbis/" | ||
description = "ogg vorbis compressed audio format library." | ||
strings: | ||
$a = /libVorbis \d+\.\d+\.\d+/ nocase ascii wide | ||
condition: | ||
$a and no_text_file | ||
} | ||
|
||
rule PH7 | ||
{ | ||
meta: | ||
software_name = "PH7" | ||
open_source = true | ||
website = "http://ph7.symisc.net/" | ||
description = "Byte code compiler and virtual machine for PHP" | ||
strings: | ||
$a = /PH7\/\d+\.\d+\.\d+/ nocase ascii wide | ||
condition: | ||
$a and no_text_file | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
src/plugins/analysis/software_components/signatures/vendor_specific_netgear.yara
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
rule smart_wizzard | ||
{ | ||
meta: | ||
software_name = "Netgear Smart Wizzard" | ||
open_source = false | ||
website = "https://www.netgear.com/" | ||
description = "Setup assistent" | ||
strings: | ||
$a = /Netgear Smart Wizard \d+\.\d+/ nocase ascii wide | ||
condition: | ||
$a and no_text_file | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters