feat(llm-security): wire AST scanner into orchestrator and policy
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V3s6WnubSSrFjAQTLQdVbG
This commit is contained in:
parent
e497bb768c
commit
b50313e461
4 changed files with 62 additions and 1 deletions
|
|
@ -145,6 +145,7 @@ export const OWASP_MAP = Object.freeze({
|
|||
WFL: ['LLM02', 'LLM06'],
|
||||
TRG: ['LLM06'],
|
||||
SIG: ['LLM03', 'LLM02'],
|
||||
AST: ['LLM01', 'LLM02'],
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
@ -166,6 +167,7 @@ export const OWASP_AGENTIC_MAP = Object.freeze({
|
|||
WFL: ['ASI04'],
|
||||
TRG: [],
|
||||
SIG: ['ASI04'],
|
||||
AST: [],
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
@ -187,6 +189,7 @@ export const OWASP_SKILLS_MAP = Object.freeze({
|
|||
WFL: [],
|
||||
TRG: ['AST04'],
|
||||
SIG: [],
|
||||
AST: ['AST02'],
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
@ -208,6 +211,7 @@ export const OWASP_MCP_MAP = Object.freeze({
|
|||
WFL: [],
|
||||
TRG: [],
|
||||
SIG: [],
|
||||
AST: [],
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue