eth0izzle / eth0izzle/shhgit

Implement YARA rules

Open
#17 9 comments 2 reactions 1 assignee Claimed by @eth0izzle View on GitHub
enhancement help wanted
Dominant language
JavaScript
Stars
4k
Forks
480
PR merge metrics
No merged PRs in 30d

Description

To replace the current yaml signatures. This will allow us to create mroe powerful rules. For example to find GitHub API keys we would regex on `([a-f\d]{40})`, but currently that would produce a lot of false positives (it's a SHA1 hash). With a YARA rule we could do:

```
rule GitHubApikey
{
strings:
$re1 = /[a-f\d]{40}/
$re2 = /Authorization: token/
$re3 = /https://api.github.com/

condition:
$re1 and ($re2 or $re3)
}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.