Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rules
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
rules
Commits
cf7bc5e0
Unverified
Commit
cf7bc5e0
authored
5 years ago
by
Jaume Martin
Committed by
GitHub
5 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #376 from milannshrestha/patch-2
Create extortion_email.yar
parents
eec22d25
a079d8ba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
extortion_email.yar
email/extortion_email.yar
+38
-0
No files found.
email/extortion_email.yar
0 → 100644
View file @
cf7bc5e0
rule extortion_email
{
meta:
author = "milann shrestha <Twitter - @x0verhaul>"
description = "Detects the possible extortion scam on the basis of subjects and keywords"
data = "12th May 2020"
strings:
$eml1="From:"
$eml2="To:"
$eml3="Subject:"
// Common Subjects scammer keep for luring the targets
$sub1 = "Hackers know password from your account."
$sub2 = "Security Alert. Your accounts were hacked by a criminal group."
$sub3 = "Your account was under attack! Change your credentials!"
$sub4 = "The decision to suspend your account. Waiting for payment"
$sub5 = "Fraudsters know your old passwords. Access data must be changed."
$sub6 = "Your account has been hacked! You need to unlock it."
$sub7 = "Be sure to read this message! Your personal data is threatened!"
$sub8 = "Password must be changed now."
// Keywords used for extortion
$key1 = "BTC" nocase
$key2 = "Wallet" nocase
$key3 = "Bitcoin" nocase
$key4 = "hours" nocase
$key5 = "payment" nocase
$key6 = "malware" nocase
$key = "bitcoin address" nocase
$key7 = "access" nocase
$key8 = "virus" nocase
condition:
all of ($eml*) and
any of ($sub*) and
any of ($key*)
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment