Brand impersonation: Wise

Impersonating Wise Financial, an online banking platform.

Sublime rule (View on GitHub)

  1name: "Brand impersonation: Wise"
  2description: |
  3    Impersonating Wise Financial, an online banking platform.
  4type: "rule"
  5severity: "high"
  6source: |
  7  type.inbound
  8  and (
  9    strings.ilike(sender.display_name, '*wise*')
 10    or strings.ilike(sender.email.domain.domain, '*wise*')
 11  )
 12  and (
 13    any(ml.nlu_classifier(body.current_thread.text).tags,
 14        .name in ("payment", "invoice")
 15    )
 16    or any(ml.nlu_classifier(body.current_thread.text).intents,
 17           .name in ("cred_theft", "steal_pii") and .confidence == "high"
 18    )
 19  )
 20  and (
 21    any(attachments,
 22        .file_type in $file_extensions_common_archives
 23        or .file_type in $file_extensions_executables
 24        or .file_type in $file_extensions_macros
 25        or .file_type in ("lz")
 26        or (
 27          .file_extension is null
 28          and .file_type == "unknown"
 29          and .content_type == "application/octet-stream"
 30          and .size < 100000000
 31        )
 32    )
 33    or any(body.links,
 34           regex.icontains(.display_text,
 35                           // https://github.com/sublime-security/static-files/blob/master/suspicious_subjects_regex.txt
 36                           "termination.*notice",
 37                           "38417",
 38                           ":completed",
 39                           "[il1]{2}mit.*ma[il1]{2} ?bo?x",
 40                           "[il][il][il]egai[ -]",
 41                           "[li][li][li]ega[li] attempt",
 42                           "[ng]-?[io]n .*block",
 43                           "[ng]-?[io]n .*cancel",
 44                           "[ng]-?[io]n .*deactiv",
 45                           "[ng]-?[io]n .*disabl",
 46                           "action.*required",
 47                           "abandon.*package",
 48                           "about.your.account",
 49                           "acc(ou)?n?t (is )?on ho[li]d",
 50                           "acc(ou)?n?t.*terminat",
 51                           "acc(oun)?t.*[il1]{2}mitation",
 52                           "access.*limitation",
 53                           "account (will be )?block",
 54                           "account.*de-?activat",
 55                           "account.*locked",
 56                           "account.*re-verification",
 57                           "account.*security",
 58                           "account.*suspension",
 59                           "account.has.been",
 60                           "account.has.expired",
 61                           "account.will.be.blocked",
 62                           "account v[il]o[li]at",
 63                           "activity.*acc(oun)?t",
 64                           "almost.full",
 65                           "app[li]e.[il]d",
 66                           "authenticate.*account",
 67                           "been.*suspend",
 68                           "clos.*of.*account.*processed",
 69                           "confirm.your.account",
 70                           "courier.*able",
 71                           "deactivation.*in.*progress",
 72                           "delivery.*attempt.*failed",
 73                           "document.received",
 74                           "documented.*shared.*with.*you",
 75                           "dropbox.*document",
 76                           "e-?ma[il1]+ .{010}suspen",
 77                           "e-?ma[il1]{1} user",
 78                           "e-?ma[il1]{2} acc",
 79                           "e-?ma[il1]{2}.*up.?grade",
 80                           "e.?ma[il1]{2}.*server",
 81                           "e.?ma[il1]{2}.*suspend",
 82                           "email.update",
 83                           "faxed you",
 84                           "fraud(ulent)?.*charge",
 85                           "from.helpdesk",
 86                           "fu[il1]{2}.*ma[il1]+[ -]?box",
 87                           "has.been.*suspended",
 88                           "has.been.limited",
 89                           "have.locked",
 90                           "he[li]p ?desk upgrade",
 91                           "heipdesk",
 92                           "i[il]iega[il]",
 93                           "ii[il]ega[il]",
 94                           "incoming e?mail",
 95                           "incoming.*fax",
 96                           "lock.*security",
 97                           "ma[il1]{1}[ -]?box.*quo",
 98                           "ma[il1]{2}[ -]?box.*fu[il1]",
 99                           "ma[il1]{2}box.*[il1]{2}mit",
100                           "ma[il1]{2}box stor",
101                           "mail on.?hold",
102                           "mail.*box.*migration",
103                           "mail.*de-?activat",
104                           "mail.update.required",
105                           "mails.*pending",
106                           "messages.*pending",
107                           "missed.*shipping.*notification",
108                           "missed.shipment.notification",
109                           "must.update.your.account",
110                           "new [sl][io]g?[nig][ -]?in from",
111                           "new voice ?-?mail",
112                           "notifications.*pending",
113                           "office.*3.*6.*5.*suspend",
114                           "office365",
115                           "on google docs with you",
116                           "online doc",
117                           "password.*compromised",
118                           "periodic maintenance",
119                           "potential(ly)? unauthorized",
120                           "refund not approved",
121                           "revised.*policy",
122                           "scam",
123                           "scanned.?invoice",
124                           "secured?.update",
125                           "security breach",
126                           "securlty",
127                           "signed.*delivery",
128                           "status of your .{314}? ?delivery",
129                           "susp[il1]+c[il1]+ous.*act[il1]+v[il1]+ty",
130                           "suspicious.*sign.*[io]n",
131                           "suspicious.activit",
132                           "temporar(il)?y deactivate",
133                           "temporar[il1]{2}y disab[li]ed",
134                           "temporarily.*lock",
135                           "un-?usua[li].activity",
136                           "unable.*deliver",
137                           "unauthorized.*activit",
138                           "unauthorized.device",
139                           "undelivered message",
140                           "unread.*doc",
141                           "unusual.activity",
142                           "upgrade.*account",
143                           "upgrade.notice",
144                           "urgent message",
145                           "urgent.verification",
146                           "v[il1]o[li1]at[il1]on security",
147                           "va[il1]{1}date.*ma[il1]{2}[ -]?box",
148                           "verification ?-?require",
149                           "verification( )?-?need",
150                           "verify.your?.account",
151                           "web ?-?ma[il1]{2}",
152                           "web[ -]?ma[il1]{2}",
153                           "will.be.suspended",
154                           "your (customer )?account .as",
155                           "your.office.365",
156                           "your.online.access",
157  
158                           // https://github.com/sublime-security/static-files/blob/master/suspicious_subjects.txt
159                           "account has been limited",
160                           "action required",
161                           "almost full",
162                           "apd notifi cation",
163                           "are you at your desk",
164                           "are you available",
165                           "attached file to docusign",
166                           "banking is temporarily unavailable",
167                           "bankofamerica",
168                           "closing statement invoice",
169                           "completed: docusign",
170                           "de-activation of",
171                           "delivery attempt",
172                           "delivery stopped for shipment",
173                           "detected suspicious",
174                           "detected suspicious actvity",
175                           "docu sign",
176                           "document for you",
177                           "document has been sent to you via docusign",
178                           "document is ready for signature",
179                           "docusign",
180                           "encrypted message",
181                           "failed delivery",
182                           "fedex tracking",
183                           "file was shared",
184                           "freefax",
185                           "fwd: due invoice paid",
186                           "has shared",
187                           "inbox is full",
188                           "invitation to comment",
189                           "invitation to edit",
190                           "invoice due",
191                           "left you a message",
192                           "message from",
193                           "new message",
194                           "new voicemail",
195                           "on desk",
196                           "out of space",
197                           "password reset",
198                           "payment status",
199                           "quick reply",
200                           "re: w-2",
201                           "required",
202                           "required: completed docusign",
203                           "ringcentral",
204                           "scanned image",
205                           "secured files",
206                           "secured pdf",
207                           "security alert",
208                           "new sign-in",
209                           "new sign in",
210                           "sign-in attempt",
211                           "sign in attempt",
212                           "staff review",
213                           "suspicious activity",
214                           "unrecognized login attempt",
215                           "upgrade immediately",
216                           "urgent",
217                           "wants to share",
218                           "w2",
219                           "you have notifications pending",
220                           "your account",
221                           "your amazon order",
222                           "your document settlement",
223                           "your order with amazon",
224                           "your password has been compromised",
225           )
226    )
227  )
228  and sender.email.domain.root_domain not in~ ('wise.com', 'wise.jobs')  
229attack_types:
230  - "Credential Phishing"
231tactics_and_techniques:
232  - "Impersonation: Brand"
233  - "Social engineering"
234detection_methods:
235  - "Content analysis"
236  - "Natural Language Understanding"
237  - "Sender analysis"
238id: "01480f95-dc1e-5b9a-a360-96bfee663c39"
to-top