📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-10 16:04:20 +00:00
parent 2bb0dc8c1d
commit 92c0c3f687
594 changed files with 55224 additions and 19038 deletions
@@ -1,6 +1,6 @@
{
"name": "agentic-bundle-aas-secure-app-builder",
"version": "14.0.0",
"version": "14.1.0",
"description": "Editorial \"AAS Secure App Builder\" bundle for Claude Code from Agentic Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -1,6 +1,6 @@
{
"name": "aasb-aas-secure-app-builder",
"version": "14.0.0",
"version": "14.1.0",
"description": "Install the \"AAS Secure App Builder\" workflow plugin from Agentic Awesome Skills.",
"author": {
"name": "sickn33 and contributors",
@@ -209,10 +209,10 @@ admin' AND '1'='2
Query transformation example:
```sql
-- Original query
SELECT * FROM users WHERE username='input' AND password='input'
SELECT * FROM users WHERE username='input' AND password='input' -- security-allowlist: controlled SQL injection test example
-- Injected (username: admin'--)
SELECT * FROM users WHERE username='admin'--' AND password='anything'
SELECT * FROM users WHERE username='admin'--' AND password='anything' -- security-allowlist: controlled SQL injection bypass example
-- Password check bypassed via comment
```
@@ -404,7 +404,7 @@ id=5' AND IF(SUBSTRING(database(),1,1)='a',SLEEP(5),0)--
**Standard Login Query**:
```sql
SELECT * FROM users WHERE username='[input]' AND password='[input]'
SELECT * FROM users WHERE username='[input]' AND password='[input]' -- security-allowlist: controlled SQL injection test example
```
**Injection Payload**:
@@ -415,7 +415,7 @@ Password: anything
**Resulting Query**:
```sql
SELECT * FROM users WHERE username='administrator'--' AND password='anything'
SELECT * FROM users WHERE username='administrator'--' AND password='anything' -- security-allowlist: controlled SQL injection bypass example
```
**Result**: Password check bypassed, authenticated as administrator.