We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69436fd commit f866dc0Copy full SHA for f866dc0
convex/lib/moderation.ts
@@ -3,7 +3,10 @@ import type { Doc } from '../_generated/dataModel'
3
const FLAG_RULES: Array<{ flag: string; pattern: RegExp }> = [
4
// Known-bad / known-suspicious identifiers.
5
// NOTE: keep these narrowly scoped; use staff review to confirm removals.
6
- { flag: 'blocked.malware', pattern: /(keepcold131\/ClawdAuthenticatorTool|ClawdAuthenticatorTool)/i },
+ {
7
+ flag: 'blocked.malware',
8
+ pattern: /(keepcold131\/ClawdAuthenticatorTool|ClawdAuthenticatorTool)/i,
9
+ },
10
11
{ flag: 'suspicious.keyword', pattern: /(malware|stealer|phish|phishing|keylogger)/i },
12
{ flag: 'suspicious.secrets', pattern: /(api[-_ ]?key|token|password|private key|secret)/i },
0 commit comments