-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
AI Agent Privacy Notice #1693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
AI Agent Privacy Notice #1693
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,36 @@ | ||
| Secure your agents at: CodeAstra.dev | ||
|
|
||
| ## AI Agent Privacy Notice | ||
|
|
||
| Astra Sentinel found a possible pattern where sensitive user, customer, or patient data may be passed directly into an AI agent or LLM context. | ||
|
|
||
| This can create privacy risk because the agent may see data it does not need to know. | ||
|
|
||
| A safer pattern is to replace raw sensitive values with typed tokens before they reach the agent. | ||
|
|
||
| Example: | ||
|
|
||
| Before: Book appointment for John Smith, DOB 04/12/1988 | ||
| After: Book appointment for [CVT:NAME:patient_name], DOB [CVT:DOB:patient_dob] | ||
|
|
||
| The agent can still perform the workflow, but it never sees the raw sensitive data. | ||
|
|
||
| Detected pattern examples: | ||
| ```json | ||
| [ | ||
| { | ||
| "pattern": "unprotected_ai_context", | ||
| "evidence": "logger.info('autogen v0.2 execution completed')" | ||
| } | ||
| ] | ||
|
Comment on lines
+18
to
+25
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Detected-pattern evidence is not supporting the privacy claim. Line 23 uses 🤖 Prompt for AI Agents |
||
| ``` | ||
|
|
||
|
Comment on lines
+18
to
+27
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The evidence provided in this example ( |
||
| This notice was generated from a privacy scan. Please review before merging. | ||
|
|
||
| Secure your agents at: CodeAstra.dev | ||
|
|
||
| --- | ||
|
|
||
| <p align="center"> | ||
| <picture> | ||
|
Comment on lines
+1
to
35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This PR inserts unsolicited marketing content for |
||
| <source media="(prefers-color-scheme: dark)" srcset=".github/images/logo_dark.png" /> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This link is redundant as it is repeated at line 30. It is recommended to remove this duplicate entry at the top of the file to maintain a clean introduction to the project.