> ## Documentation Index
> Fetch the complete documentation index at: https://standard.aiuc-1.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AIUC-1 × OWASP AIVSS

export const InlineClock = ({city, timeZone}) => {
  const [time, setTime] = useState('--:--:--');
  useEffect(() => {
    const update = () => setTime(new Intl.DateTimeFormat('en-US', {
      hour: '2-digit',
      minute: '2-digit',
      second: '2-digit',
      hour12: false,
      timeZone
    }).format(new Date()));
    update();
    const id = setInterval(update, 1000);
    return () => clearInterval(id);
  }, [timeZone]);
  return <div className="aiuc-footer-clock">
      <span className="aiuc-footer-clock-city">{city}</span>
      <span className="aiuc-footer-clock-time">{time}</span>
    </div>;
};

<div className="aiuc-crosswalk-framework-intro">
  <p>The OWASP AI Vulnerability Scoring System enables organizations to quantify how agentic capabilities amplify security risks, producing numerical scores (0-10) that combine technical vulnerability severity with agent-specific factors like autonomy, tool access, and memory persistence.</p>
  <p><strong>AIUC-1 integrates the OWASP AIVSS, which is a technical contributor to AIUC-1.</strong> Certification against AIUC-1:</p>

  <ul>
    <li>Covers all agent risks identified in AIVSS</li>
    <li>Enables organizations to mitigate risks quantified in OWASP AIVSS</li>
    <li>Incorporates AIVSS agent risk amplification factors in standard requirements</li>
  </ul>
</div>

## OWASP AIVSS crosswalks by risk

<div className="aiuc-crosswalk-framework-table" />

| AIVSS risk                                       | AIVSS description                                                                 | Relevant AIUC-1 requirements                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| ------------------------------------------------ | --------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Agent Access Control Violation                   | Permission escalation, credential mismanagement, or role inheritance exploitation | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/data-and-privacy/implement-contextual-data-safeguards">A003: Limit AI agent data access</a><a className="aiuc-crosswalk-requirement-link" href="/security/enforce-contextual-access-controls">B006: Prevent unauthorized AI agent actions</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| Agent Cascading Failures                         | Cross-system exploitation where one compromised agent propagates damage           | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/safety/3rd-party-testing-for-other-risk">C012: Third-party testing for customer-defined risk</a><a className="aiuc-crosswalk-requirement-link" href="/security/test-adversarial-robustness">B001: Third-party testing of adversarial robustness</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Agent Goal and Instruction Manipulation          | Prompt injection and semantic hijacking of agent objectives                       | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/security/test-adversarial-robustness">B001: Third-party testing of adversarial robustness</a><a className="aiuc-crosswalk-requirement-link" href="/security/detect-adversarial-input">B002: Detect adversarial input</a><a className="aiuc-crosswalk-requirement-link" href="/security/implement-real-time-input-filtering">B005: Implement real-time input filtering</a><a className="aiuc-crosswalk-requirement-link" href="/safety/prevent-harmful-outputs">C003: Prevent harmful outputs</a><a className="aiuc-crosswalk-requirement-link" href="/safety/prevent-out-of-scope-outputs">C004: Prevent out-of-scope outputs</a><a className="aiuc-crosswalk-requirement-link" href="/safety/prevent-other-high-risk-outputs">C005: Prevent agent-specific high risk outputs</a></div> |
| Agent Identity Impersonation                     | Spoofing of agent or human identities through deepfakes or credential theft       | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/accountability/implement-ai-disclosure-mechanisms">E016: Implement AI disclosure mechanisms</a><a className="aiuc-crosswalk-requirement-link" href="/society/prevent-ai-cyber-misuse">F001: Prevent AI cyber misuse</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Agent Memory and Context Manipulation            | Poisoning persistent memory or exploiting context drift                           | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/security/protect-model-deployment-environment">B008: Protect AI system deployment environment</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| Agent Orchestration and Multi-Agent Exploitation | Attacks targeting coordination mechanisms between agents                          | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/accountability/establish-ai-acceptable-use-policy">E010: Establish AI acceptable use policy</a><a className="aiuc-crosswalk-requirement-link" href="/security/enforce-contextual-access-controls">B006: Prevent unauthorized AI agent actions</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| Agent Supply Chain and Dependency Risk           | Compromised models, libraries, or third-party tools                               | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/accountability/assess-cloud-vs-on-prem-processing">E005: Document data storage security</a><a className="aiuc-crosswalk-requirement-link" href="/accountability/conduct-vendor-due-diligence">E006: Conduct vendor due diligence</a><a className="aiuc-crosswalk-requirement-link" href="/accountability/monitor-3rd-party-access">E009: Monitor third-party access</a><a className="aiuc-crosswalk-requirement-link" href="/accountability/implement-quality-management-system">E013: Implement quality management system</a></div>                                                                                                                                                                                                                                                    |
| Agent Untraceability                             | Inability to audit agent decision chains or attribute actions                     | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/safety/flag-high-risk-recommendations">C007: Flag high risk outputs for human review</a><a className="aiuc-crosswalk-requirement-link" href="/safety/monitor-ai-risk-categories">C008: Monitor AI risk categories</a><a className="aiuc-crosswalk-requirement-link" href="/accountability/log-model-activity">E015: Log AI system activity</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| Agentic AI Tool Misuse                           | Compromised tool selection, insecure invocation, or lack of oversight             | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/security/prevent-ai-endpoint-scraping">B004: Prevent AI endpoint scraping</a><a className="aiuc-crosswalk-requirement-link" href="/reliability/restrict-unsafe-tool-calls">D003: Restrict unsafe tool calls</a><a className="aiuc-crosswalk-requirement-link" href="/reliability/3rd-party-testing-of-tool-calls">D004: Third-party testing of tool calls</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                     |
| Insecure Agent Critical Systems Interaction      | Unauthorized manipulation of infrastructure, IoT, or operational technology       | <div className="aiuc-crosswalk-requirement-links"><a className="aiuc-crosswalk-requirement-link" href="/data-and-privacy/protect-ip-trade-secrets">A004: Protect IP & trade secrets</a><a className="aiuc-crosswalk-requirement-link" href="/safety/prevent-output-vulnerabilities">C006: Prevent output vulnerabilities</a></div>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |

Last updated February 26, 2026.

<div className="aiuc-footer">
  <span className="aiuc-footer-corner aiuc-footer-corner-tl">
    <svg fill="none" stroke="currentColor" strokeWidth="1" viewBox="0 0 12 12" width="12" height="12">
      <line x1="0" x2="12" y1="6" y2="6" />

      <line x1="6" x2="6" y1="0" y2="12" />
    </svg>
  </span>

  <span className="aiuc-footer-corner aiuc-footer-corner-tr">
    <svg fill="none" stroke="currentColor" strokeWidth="1" viewBox="0 0 12 12" width="12" height="12">
      <line x1="0" x2="12" y1="6" y2="6" />

      <line x1="6" x2="6" y1="0" y2="12" />
    </svg>
  </span>

  <div className="aiuc-footer-strip">
    <span className="aiuc-footer-mono">37.782274° N -122.392147° W</span>
    <span className="aiuc-footer-strip-center">FIG. A (SITE INDEX)</span>

    <span />
  </div>

  <div className="aiuc-footer-row-main">
    <div className="aiuc-footer-wireframe-cell">
      <svg className="aiuc-footer-wireframe" fill="none" stroke="currentColor" strokeWidth="0.4" viewBox="0 0 200 150">
        <rect height="130" width="180" x="10" y="10" />

        <rect height="40" width="60" x="20" y="20" />

        <rect height="40" width="40" x="90" y="20" />

        <rect height="40" width="40" x="140" y="20" />

        <rect height="60" width="60" x="20" y="70" />

        <rect height="60" width="90" x="90" y="70" />

        <line strokeDasharray="2,2" x1="20" x2="180" y1="65" y2="65" />

        <line strokeDasharray="2,2" x1="85" x2="85" y1="20" y2="60" />

        <circle cx="50" cy="40" r="6" />

        <circle cx="110" cy="40" r="6" />

        <circle cx="160" cy="40" r="6" />
      </svg>
    </div>

    <div className="aiuc-footer-wordmark-cell">
      <div className="aiuc-footer-wordmark">Artificial Intelligence Underwriting Company</div>
    </div>

    <div className="aiuc-footer-clocks">
      <InlineClock city="SFO" timeZone="America/Los_Angeles" />

      <InlineClock city="NYC" timeZone="America/New_York" />

      <InlineClock city="LON" timeZone="Europe/London" />
    </div>
  </div>

  <div className="aiuc-footer-row-sub">
    <div className="aiuc-footer-codeblock-cell">
      <div className="aiuc-footer-codeblock">
        <span className="aiuc-footer-codeblock-header">Code</span>
        <span className="aiuc-footer-codeblock-header">Structural unit</span>
        <span className="aiuc-footer-codeblock-code">a.</span>
        <span className="aiuc-footer-codeblock-text">AIUC-1 requirements for agent data, privacy, security, safety, reliability, accountability, and societal risk.</span>
        <span className="aiuc-footer-codeblock-code">b.</span>
        <span className="aiuc-footer-codeblock-text">Evidence templates for technical implementation, legal policy, operational practice, and third-party evaluation.</span>
        <span className="aiuc-footer-codeblock-code">c.</span>
        <span className="aiuc-footer-codeblock-text">Crosswalks to AI regulations, standards, and security frameworks.</span>
        <span className="aiuc-footer-codeblock-code">d.</span>
        <span className="aiuc-footer-codeblock-text">Quarterly updates shaped by enterprise adoption, risk, regulation, and community input.</span>
      </div>
    </div>

    <div className="aiuc-footer-columns-cell">
      <div className="aiuc-footer-columns">
        <div>
          <div className="aiuc-footer-column-header">I. Standard</div>

          <ul className="aiuc-footer-column-list">
            <li><a className="aiuc-footer-column-link" href="/">Overview</a></li>
            <li><a className="aiuc-footer-column-link" href="/crosswalks">Crosswalks</a></li>
            <li><a className="aiuc-footer-column-link" href="/evidence">Evidence</a></li>
            <li><a className="aiuc-footer-column-link" href="/changelog">Changelog</a></li>
          </ul>
        </div>

        <div>
          <div className="aiuc-footer-column-header">II. Learn</div>

          <ul className="aiuc-footer-column-list">
            <li><a className="aiuc-footer-column-link" href="/learn/about">About AIUC-1</a></li>
            <li><a className="aiuc-footer-column-link" href="/learn/contribute">Contribute</a></li>
            <li><a className="aiuc-footer-column-link" href="/scoping">Scoping</a></li>
            <li><a className="aiuc-footer-column-link" href="/faq">FAQ</a></li>
          </ul>
        </div>

        <div>
          <div className="aiuc-footer-column-header">III. Office</div>

          <ul className="aiuc-footer-column-list">
            <li><a className="aiuc-footer-column-link" href="/consortium">Consortium</a></li>
            <li><a className="aiuc-footer-column-link" href="/contact">Contact</a></li>
            <li><a className="aiuc-footer-column-link" href="/legal/privacy">Privacy policy</a></li>
            <li><a className="aiuc-footer-column-link" href="/legal/terms">Terms of use</a></li>
          </ul>
        </div>
      </div>
    </div>
  </div>

  <div className="aiuc-footer-strip-bottom">
    <span className="aiuc-footer-mono">100</span>
    <span>© AIUC — ALL RIGHTS RESERVED</span>
  </div>

  <span className="aiuc-footer-corner aiuc-footer-corner-bl">
    <svg fill="none" stroke="currentColor" strokeWidth="1" viewBox="0 0 12 12" width="12" height="12">
      <line x1="0" x2="12" y1="6" y2="6" />

      <line x1="6" x2="6" y1="0" y2="12" />
    </svg>
  </span>

  <span className="aiuc-footer-corner aiuc-footer-corner-br">
    <svg fill="none" stroke="currentColor" strokeWidth="1" viewBox="0 0 12 12" width="12" height="12">
      <line x1="0" x2="12" y1="6" y2="6" />

      <line x1="6" x2="6" y1="0" y2="12" />
    </svg>
  </span>
</div>
