사회 가이드

AI 보안

AI 보안은 모델, 데이터, 도구 및 주변 서비스를 무단 접근이나 조작으로부터 보호합니다.

2분 읽기마지막 업데이트 Part of the AI Policy & Society learning path

개요

It includes ordinary software security and threats that target learning or model behavior. A secure design begins with the assets, adversaries, and trust boundaries of the actual application.

주요 시사점

  • Threat-model the full application.
  • Enforce permissions outside the model.
  • Retest controls across system changes.

심층 분석

Identify what needs protection: private inputs, training data, model artifacts, credentials, connected accounts, and external actions. Record who can influence each input and what an attacker could gain from a failure. A public chatbot and an internal agent with write access have different threat models. Threats can affect different stages. Poisoned training material can alter learned behavior; adversarial inputs can manipulate predictions; untrusted retrieved content can redirect a tool-using application. Model output can also become dangerous when inserted into a database query, webpage, or command without appropriate handling. Apply controls at the software boundary. Enforce authorization in code, keep secrets out of model-visible context where possible, restrict tool scope, and validate outputs before use. A prompt asking a model to behave safely cannot replace account isolation or permission checks. Test representative failure paths in an authorized environment and maintain an incident process. Log enough information to investigate without collecting unnecessary sensitive content. Evaluate controls after changes to the model, retrieval sources, tools, and dependencies. Describe residual risk honestly; no single filter establishes complete protection.

기술적 통찰력

A model refusing one malicious prompt does not prove that a system is secure. Different inputs, tools, modalities, and component boundaries can create distinct failure paths.

Locate the security boundary

  1. Imagine an assistant searching a private document store for a signed-in user.
  2. Apply the user’s access filter in the retrieval service before documents enter the model context.
  3. Test with a document belonging to a different account and verify that neither its contents nor identifying metadata appear in the result.

This defensive, hypothetical test checks authorization independently of the model’s willingness to follow instructions.

전략적 영향

위험과 안전

치명적인 AI 피해와 일상적인 AI 피해는 누가 위험을 이해하고 누가 조치를 취할 수 있는지에 따라 달라집니다.

더 명확한 결정들

공공 및 전문 지식은 강력한 안전 정책이 정치적으로 가능한지 여부를 결정합니다.

과장된 과장을 뚫고 나가기

명확한 설명은 과대광고, 연구실 홍보, 모호한 윤리 연극에 의한 포착을 줄입니다.

실제 구현

Check that one account cannot retrieve another account’s documents.

Validate generated fields before using them in a database operation.

위험 및 가드레일

실존적 위험을 공상과학처럼 다루면서 능력을 합성합니다.

높은 자율성 하에서 정렬과 표면 제품 안전성을 혼동합니다.

영어가 아니거나 전문가가 아닌 청중에게는 품질이 낮은 소스만 남겨 둡니다.

구현 로드맵

1

제품 손상, 오용, 통제력 상실/잘못 정렬 위험을 분리합니다.

2

일정과 심각도에 대한 귀하의 견해를 바꿀 수 있는 증거가 무엇인지 물어보십시오.

3

마케팅 주장보다 기본 소스와 구체적인 평가를 선호하세요.

4

인식뿐만 아니라 경력, 정책, 자금 조달 또는 기술 등 하나의 행동 경로를 식별하십시오.

출처 및 추가 자료

계속 탐색하세요

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the AI Security quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

퀴즈 시작

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

Next in AI Policy & Society

AI 안전

자주 묻는 질문

Is a strong system prompt enough to secure an assistant?

No. Authentication, authorization, input and output handling, tool limits, and incident response remain necessary parts of the application.