From: twesterhever <40121680+twesterhever@users.noreply.github.com> Date: Sun, 6 Nov 2022 14:31:23 +0000 (+0000) Subject: [Minor] Clarify that IPFS *gateway* URLs are likely considered malicious X-Git-Tag: 3.5~42^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ac1a7513254f3ef4491c4199526cbece74e7934;p=thirdparty%2Frspamd.git [Minor] Clarify that IPFS *gateway* URLs are likely considered malicious --- diff --git a/rules/regexp/misc.lua b/rules/regexp/misc.lua index c7876567f1..47b8f74a9c 100644 --- a/rules/regexp/misc.lua +++ b/rules/regexp/misc.lua @@ -108,8 +108,8 @@ rspamd_config:register_dependency('LEAKED_PASSWORD_SCAM', 'BITCOIN_ADDR') -- depending on the hash algorithm used. local ipfs_cid = '/(qm[a-z0-9]{44}|[a-z0-9]{45,256})/{url}i' local ipfs_string = '/ipfs(\\.|-|_|\\/|\\?)/{url}i' -reconf['HAS_IPFS_URL'] = { - description = 'Message contains InterPlanetary File System (IPFS) URL, likely malicious', +reconf['HAS_IPFS_GATEWAY_URL'] = { + description = 'Message contains InterPlanetary File System (IPFS) gateway URL, likely malicious', re = string.format('(%s & %s)', ipfs_cid, ipfs_string), score = 6.0, one_shot = true,