Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/cve-tool-vulnogram/bot-credits-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ A handle or email is *obvious bot/AI* when **any** of these match:
these case-insensitive regex patterns:
* `*-bot`, `*bot` (e.g. `securitybot`, `release-bot`)
* `*-ai`, `*ai` (e.g. `scan-ai`, `securityai`)
* `*.ai` — domain-style AI-service handles (e.g. `bugbunny.ai`,
`xbow.ai`); an AI bug-hunting service credited by its `.ai`
product handle is a tool, not a human finder
* `*-agent`, `*agent` (e.g. `triage-agent`)
* `*-gpt`, `*gpt` (e.g. `secaudit-gpt`)
* `*scanner*`, `*-scan` (e.g. `securityscanner-7`, `audit-scan`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ def _populate_constants() -> None:
re.compile(r"\b[\w]*-bot\b", re.IGNORECASE),
re.compile(r"\b[\w]+bot\b", re.IGNORECASE),
re.compile(r"\b[\w]*-ai\b", re.IGNORECASE),
re.compile(r"\b[\w-]+\.ai\b", re.IGNORECASE),
re.compile(r"\b[\w]*-agent\b", re.IGNORECASE),
re.compile(r"\b[\w]*-gpt\b", re.IGNORECASE),
re.compile(r"\b[\w]*scanner[\w]*\b", re.IGNORECASE),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ def test_known_name_matches_inside_free_form_string(self, name: str):
"release-bot",
"securitybot",
"scan-ai",
"bugbunny.ai", # domain-style AI-service handle
"xbow.ai",
"triage-agent",
"secaudit-gpt",
"securityscanner-7",
Expand Down