By · Last updated 2026-03-29

חזרה לבלוגאבטחת AI

39 מיליון דליפות מ-GitHub: סיכון כלי AI לקידוד

67% מהמפתחים חשפו בטעות סודות בקוד (GitGuardian 2025). 39 מיליון סודות דלפו מ-GitHub ב-2024, עלייה של 25% משנה לשנה.

March 29, 20268 דקות קריאה
GitHub secret leaksdeveloper AI securitycredential exposureMCP Server protectionGitGuardian 2025

39 מיליון אישורים שדלפו בשנה אחת

דוח Octoverse 2024 של GitHub מצא 39 מיליון סודות שדלפו מ-GitHub ב-2024. זוהי עלייה של 25% משנה לשנה מ-2023. הסודות כוללים מפתחות API, מחרוזות מסד נתונים, אסימוני אימות ואישורי ענן.

הסיבה ידועה. מפתחים מבצעים commit לקוד עם סודות בתוכו. הסודות מגיעים מסשנים של ניפוי שגיאות. או שהם מקודדים קשיח במקום לשמירה במשתני סביבה. ב-39 מיליון דליפות, זה אינו נדיר. זה שגרתי.

כלי AI מוסיפים ערוץ דליפה שני

מחקר GitGuardian 2025 מצא ש67% מהמפתחים חשפו בטעות סודות בקוד. אותן הרגלים שיוצרים דליפות GitHub יוצרים גם דליפות כלי AI.

מפתח מדביק קוד ל-Claude, ChatGPT או עוזר AI אחר לקבלת עזרה. אותו קוד לרוב מכיל אישורים פעילים. מודל ה-AI מקבל את הסוד. ייתכן שהוא מאחסן אותו בהיסטוריית השיחה. הוא שולח אותו לשרתי הספק. המפתח מאבד שליטה — ללא אזהרה.

שלוש דוגמאות:

ניפוי שגיאות מסד נתונים. מפתח מדביק stack trace. ה-trace כולל את מחרוזת החיבור. ה-AI קורא גם את הסיסמה.

סקירת pipeline. מפתח משתף סקריפט pipeline נתונים. הסקריפט מכיל מפתח גישה AWS ומפתח סודי. ה-AI מקבל את שניהם.

סקירת שילוב API. מפתח מבקש משוב על שילוב. הקוד כולל מפתח API פעיל של שותף. המפתח עוזב את הרשת של המפתח.

בכל מקרה, המטרה היא עזרה לגיטימית. דליפת האישורים היא תופעת לוואי של מתן הקשר מספיק ל-AI. זה אותו דפוס כמו דליפות GitHub — לא זדוני, פשוט שגרתי.

צינורות CI/CD עומדים בפני אותו סיכון

דליפות סודות בצינורות CI/CD גדלו ב-34% ב-2024. סקריפטים של build, תצורות פריסה וקבצי infrastructure-as-code עוברים כעת סקירת AI. קבצים אלו לרוב מכילים אישורי ענן ואסימוני חשבון שירות.

עם התפשטות כלי AI לכיסוי יותר ממחזור הפיתוח — סקירה, תיעוד, ניפוי שגיאות, אופטימיזציה — משטח החשיפה גדל איתם.

כיצד ארכיטקטורת MCP חוסמת דליפות

עבור צוותים המשתמשים ב-Claude Desktop או ב-Cursor IDE, ארכיטקטורת שרת Model Context Protocol (MCP) מציבה מסנן אישורים בנתיב שבין המפתח למודל ה-AI.

שרת MCP מטפל בכל טקסט שעובר דרך הסשן. קוד שהודבק, stack traces, קבצי תצורה, הקשר ניפוי שגיאות — הכל עובר שלב אנונימיזציה לפני שהמודל רואה אותו.

המנוע מוצא תבניות אישורים: פורמטי מפתח API, מחרוזות מסד נתונים, אסימוני OAuth, כותרות מפתח פרטי, ופורמטים מותאמים שצוות האבטחה שלכם מגדיר. כל התאמה מוחלפת באסימון לפני השידור.

כך זה נראה בפועל:

מפתח מדביק stack trace עם מחרוזת חיבור למסד נתונים. שרת MCP מחליף את המחרוזת ב-[DB_CONNECTION_1]. ה-AI רואה את ה-trace עם האסימון במקומו. הוא מספק עזרה בניפוי שגיאות בהתבסס על הגרסה האנונימית. האישור האמיתי מעולם לא יצא מהרשת הפנימית.

זה עוצר את אותו וקטור דליפה שממלא את GitHub בסודות. הערוץ שונה — כלי AI, לא git commits — אבל הפתרון פועל באותה דרך: לחסום לפני שידור.

ראו את סקירת האבטחה שלנו לאופן שבו anonym.legal מטפלת בכך בכלי AI ובזרימות עבודה של מסמכים, ומרכז הציות לבקרות ביקורת.

זיהוי לאחר הדבר מאוחר מדי

חלק מהצוותים משתמשים בסריקה לאחר commit לתפיסת סודות שדלפו. GitGuardian ו-truffleHog עובדים היטב עבור ערוץ GitHub. הם אינם מכסים סשני כלי AI.

כאשר סוד מגיע לשרתי ספק AI, החשיפה נעשתה. סריקה מוצאת אותה לאחר מכן. אנונימיזציה בשכבת MCP מונעת ממנה להגיע למודל בכלל.

39 מיליון דליפות GitHub מתעדות ערוץ אחד. חשיפת כלי AI היא אותה בעיה בערוץ עם פחות ניטור וללא מסלול ביקורת. מניעה לפני שידור מכסה את שניהם.

מקורות

מוכן להגן על הנתונים שלך?

התחל לאנונימיזציה של PII עם 285+ סוגי ישויות ב-48 שפות.

About this page

We update this page when our platform or the law changes.

Read our founder note for how we work.

Each change shows up in the timestamp at the top.

Related reading

We follow these rules

  • GDPR (EU 2016/679).
  • ISO/IEC 27001:2022.
  • NIS2 (EU 2022/2555).
  • HIPAA safe harbor under 45 CFR § 164.514(b)(2).

Our promise

We do not sell your data.

We do not train models on your text.

We store your files in Germany.

You can delete your account at any time.

You own your work.

Where we run

Our servers live in Falkenstein, Germany.

We use Hetzner. They hold ISO 27001 certification.

All data stays in the EU.

Backups run every day.

Need help?

Email support@anonym.legal.

We reply within one business day.

How we test

We run a full check suite on every release.

Each surface gets its own sweep script and report.

Human reviewers spot-check the output each week.

We track recall and precision on a labelled set.

Bad runs block the deploy.

What we never do

  • We never sell your information to third parties.
  • We never train models on what you upload.
  • We never keep your work after you delete it.
  • We never share keys with any outside firm.
  • We never run ads inside the product.

Plans in plain words

We sell credits, not seats.

One credit covers one short job.

Long jobs use a few credits each.

You can top up at any time.

Unused credits roll over each month.

Read the plans page for current rates.

Who built this

A small team of engineers and lawyers built this.

We ship from Europe and work in the open.

Our founder note spells out why we started.

Where to start

How the parts fit

A browser add-on cleans text inside Chrome.

A Word plug-in handles drafts in Office.

A small desktop tool works on whole folders.

An agent protocol link feeds large models safely.

All four share one core engine and one rule set.

Words from our team

We started this work after a lunch about cookies.

One friend kept getting odd ads on her phone.

We asked why a court file leaked through a draft.

We sketched the first build on a napkin that week.

By month three we had a tiny demo for a friend.

She used it on her first case the next day.

Common questions we hear

Can the tool read scanned PDFs? Yes, with OCR.

Does it work on long files? Yes, in small chunks.

Can I roll my own rule set? Yes, save it as a preset.

Does it run offline? The desktop build runs offline.

Do you keep my files? No, the cloud build wipes after each run.

Will it learn from my work? No, we never train on inputs.

A short tour of the workflow

Upload a file or paste a snippet of prose.

Pick the entities you want gone from the draft.

Choose a method: replace, mask, hash, encrypt, or redact.

Press run and watch the side panel show each hit.

Skim the result and tweak any rule that misfired.

Save the cleaned file or send it to a teammate.