Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Mili-NT authored Jan 20, 2020
1 parent faecb64 commit 866976a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
15 changes: 15 additions & 0 deletions yara_rules/blacklist.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
rule blacklist
{
strings:
$b1 = "#EXTINF:" nocase
$b2 = "#EXTM3U" nocase
$b3 = "chegg" nocase
$b4 = "bukkit" nocase
$b5 = "Minecraft" nocase
$b6 = "serfish" nocase
$b7 = "Technic Launcher is starting"
$b8 = "[Server Thread/WARN]"
condition:
any of them
}
10 changes: 10 additions & 0 deletions yara_rules/keywords.yar
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
rule keywords
{
strings:
$google_drive = "drive.google.com" wide ascii nocase
$mega_nz = "mega.nz" wide ascii nocase
$dropbox = "dropbox.com" wide ascii nocase
condition:
any of them
}

0 comments on commit 866976a

Please sign in to comment.