# [RFC] TealTiger v1.3 — Detection & Guardrails (OWASP Gap Closure, ML Classifier, Drift) #35
nagasatish007
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
[RFC] TealTiger v1.3 — Detection & Guardrails (OWASP Gap Closure, ML Classifier, Drift)
Summary
TealTiger v1.2 catches ~50% of prompt injection attacks via regex patterns. v1.3 targets 80%+ recall by adding an optional local ML classifier, closing 12 specific OWASP gaps, and introducing behavioral drift detection. All detection remains deterministic — no LLM in the governance path.
Proposed Capabilities
OWASP LLM 2026 Gap Closure (Req 9)
Unicode & encoding attacks:
Memory attacks:
Output attacks:
Supply chain:
Behavioral:
Other:
TealClassifier — Local ML Detection (Req 10)
regex_only,ml_only,ensemble_union,ensemble_intersectionQuestions for the Community
Ensemble modes — Which mode would you default to?
ensemble_union(catch more, higher false positives) orensemble_intersection(fewer false positives, might miss some)? Is there a use case for switching modes per-environment?Unicode attacks — Are you seeing Unicode-based prompt injection in the wild? Tag-block characters, variation selectors, zero-width joiners used as attack vectors?
MCP definition-drift — How often do your tool definitions change? Would blocking on hash mismatch be too aggressive, or is that the right default for production?
Memory provenance — The 5-tier trust model (direct_user → model_inference → tool_output_internal → tool_output_external → untrusted_document) with transitive propagation — does this match how you think about trust in your agent's memory? Too many tiers? Too few?
Behavioral drift — What baseline metrics would be most useful? Refusal rates? Response length? Topic distribution? Tool-call frequency? Something else?
Performance — Is 20ms inference acceptable for your latency budget? Would you trade accuracy for speed (faster model, lower recall)?
How to Give Feedback
Full Spec Reference
See Requirements 9 and 10 in the complete specification
Beta Was this translation helpful? Give feedback.
All reactions