Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
88aab89
feat: Implement OWASP A2AS Framework for AI Security
Libres-coder Oct 23, 2025
29df9c2
modify Makefile
Libres-coder Oct 23, 2025
7daa07e
modify
Libres-coder Oct 23, 2025
01052d6
modify
Libres-coder Oct 23, 2025
be8c13c
feat(ai-a2as): make request body size limit configurable
Libres-coder Oct 23, 2025
ab9e05d
modify
Libres-coder Oct 25, 2025
94893ea
modify
Libres-coder Oct 25, 2025
c13d1ee
fix(ai-a2as): remove BOM from test files and standardize project stru…
Libres-coder Oct 25, 2025
b2077d0
modify
Libres-coder Oct 26, 2025
bde9383
Merge remote-tracking branch 'upstream/main' into try_1
Libres-coder Oct 26, 2025
08f6570
refactor(ai-a2as): simplify severity validation logic
Libres-coder Oct 26, 2025
bb17eaa
fix(ai-a2as): return error when ReplaceHttpRequestBody fails
Libres-coder Oct 26, 2025
d388f39
modify
Libres-coder Oct 26, 2025
f177121
Merge branch 'alibaba:main' into try_1
Libres-coder Oct 27, 2025
af1e72a
modify
Libres-coder Oct 27, 2025
6538918
Merge branch 'try_1' of https://github.com/Libres-coder/higress into …
Libres-coder Oct 27, 2025
7914650
feat(ai-a2as): 防止标签注入攻击
Libres-coder Oct 27, 2025
bbea480
modify
Libres-coder Oct 27, 2025
5018cf6
modify
Libres-coder Oct 27, 2025
a84cea7
modify
Libres-coder Oct 28, 2025
044eb1c
Merge remote-tracking branch 'upstream/main' into feature/tag-injecti…
Libres-coder Oct 28, 2025
575353f
modify
Libres-coder Oct 28, 2025
a54ed39
Merge branch 'main' into try_1
johnlanni Oct 31, 2025
59102ff
Merge remote-tracking branch 'upstream/main' into try_1
Libres-coder Oct 31, 2025
29c4741
Merge remote-tracking branch 'origin/try_1' into try_1
Libres-coder Oct 31, 2025
3eb4506
feat(ai-a2as): v1.2.0 Security Enhancement Release
Libres-coder Oct 31, 2025
fe495b4
docs(ai-a2as): 澄清 includeContentDigest 与 Authenticated Prompts 的区别
Libres-coder Nov 1, 2025
8360411
simplify
Libres-coder Nov 1, 2025
732295c
modify
Libres-coder Nov 1, 2025
bb9d02d
Merge remote-tracking branch 'upstream/main' into try_1
Libres-coder Nov 3, 2025
310d40c
modify
Libres-coder Nov 3, 2025
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 plugins/wasm-go/extensions/ai-a2as/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DEFAULT:
build:
tinygo build -o ai-a2as.wasm -scheduler=none -target=wasi -gc=custom -tags='custommalloc nottinygc_finalizer' .
Loading