Database ServerDatabase / datastore · Oracle

CVE-2006-0271

HIGH · 10.0 CVSS v2.0 Published 2006-01-18
Mitigation only
No fix yet — a mitigation exists. There is no fixed release. A documented workaround reduces exposure in the meantime.
See remediation →
100/100
Remediation priority · Urgent
Remotely reachable No privileges Zero-click

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
Unspecified vulnerability in the Upgrade & Downgrade component of Oracle Database server 8.1.7.4, 9.0.1.5, 9.2.0.7, and 10.1.0.4 has unspecified impact and attack vectors, as identified by Oracle Vuln# DB28. NOTE: details are unavailable from Oracle, but they have not publicly disputed a claim by a reliable independent researcher that states that the problem is SQL injection in the DBMS_REGISTRY package in certain parameters to the (1) IS_COMPONENT, (2) GET_COMP_OPTION, (3) DISABLE_DDL_TRIGGERS, (4) SCRIPT_EXISTS, (5) COMP_PATH, (6) GATHER_STATS, (7) NOTHING_SCRIPT, and (8) VALIDATE_COMPONENTS functions.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · moderate confidence

SQL injection vulnerability in the DBMS_REGISTRY package of Oracle Database versions 8.1.7.4, 9.0.1.5, 9.2.0.7, and 10.1.0.4. The vulnerability affects eight functions (IS_COMPONENT, GET_COMP_OPTION, DISABLE_DDL_TRIGGERS, SCRIPT_EXISTS, COMP_PATH, GATHER_STATS, NOTHING_SCRIPT, and VALIDATE_COMPONENTS), allowing unauthenticated attackers to execute arbitrary SQL commands via unsanitized parameters.

MitigationApply Oracle Critical Patch Updates for the relevant version or upgrade to a supported Oracle Database version. Additionally, restrict access to the DBMS_REGISTRY package and implement least-privilege database user accounts.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.

NVD · CPE data
Database ServerDatabase / datastore
Affected:= 8.1.7.4
Oracle10gDatabase / datastore
Affected:= enterprise_10.1.0.4= personal_10.1.0.4= standard_10.1.0.4
Oracle8iDatabase / datastore
Affected:= enterprise_8.1.7.4= standard_8.1.7.4
Oracle9iDatabase / datastore
Affected:= enterprise_9.0.1.5= standard_9.2.0.7

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Authentication
None
Confidentiality
Complete
Integrity
Complete
Availability
Complete

AV:N/AC:L/Au:N/C:C/I:C/A:C

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Identify Oracle Database version
    Connect to the database as a privileged user and run: SELECT * FROM V$VERSION; or SELECT VERSION FROM PRODUCT_COMPONENT_VERSION WHERE PRODUCT LIKE 'Oracle Database%';
    Affected if The displayed version matches 8.1.7.4, 9.0.1.5, 9.2.0.7, or 10.1.0.4 exactly, or falls within the 8.1.7.x, 9.0.1.x, 9.2.0.x, or 10.1.0.x families that include these specific patch levels.
  2. Verify DBMS_REGISTRY package exists
    Query DBA_OBJECTS: SELECT OBJECT_NAME, OBJECT_TYPE, STATUS FROM DBA_OBJECTS WHERE OBJECT_NAME = 'DBMS_REGISTRY' AND OBJECT_TYPE = 'PACKAGE';
    Affected if The package is present in the database (any result returned indicates the potentially vulnerable component is installed).
  3. Check execute权限 on DBMS_REGISTRY
    Query DBA_TAB_PRIVS: SELECT GRANTEE, TABLE_NAME, PRIVILEGE FROM DBA_TAB_PRIVS WHERE TABLE_NAME = 'DBMS_REGISTRY';
    Affected if PUBLIC or unauthorized schemas have EXECUTE privilege on the DBMS_REGISTRY package, indicating the attack surface is accessible to unauthenticated users.
  4. Confirm vulnerable functions exist
    Query USER_PROCEDURES or DBA_PROCEDURES: SELECT PROCEDURE_NAME FROM USER_PROCEDURES WHERE OBJECT_NAME = 'DBMS_REGISTRY'; for each of these: IS_COMPONENT, GET_COMP_OPTION, DISABLE_DDL_TRIGGERS, SCRIPT_EXISTS, COMP_PATH, GATHER_STATS, NOTHING_SCRIPT, VALIDATE_COMPONENTS
    Affected if One or more of these eight functions are present in the DBMS_REGISTRY package, confirming the vulnerable entry points exist.
  5. Check for recent unauthorized DDL or SQL activity
    Review DBA_AUDIT_TRAIL or unified audit trails for unusual executions of DBMS_REGISTRY procedures, especially those with string parameters that may indicate injection attempts.
    Affected if Audit records show unexpected executions of DBMS_REGISTRY functions, particularly with anomalous parameter patterns.

You are affected if your Oracle Database version is 8.1.7.4, 9.0.1.5, 9.2.0.7, or 10.1.0.4 AND the DBMS_REGISTRY package with its eight vulnerable functions is installed and accessible to PUBLIC or unauthorized users.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Mitigation available No clean upgrade yet — mitigate in the meantime
Mitigation

Apply Oracle Critical Patch Updates for the relevant version or upgrade to a supported Oracle Database version. Additionally, restrict access to the DBMS_REGISTRY package and implement least-privilege database user accounts.

Recommended fix Moderate confidence

Oracle 19c or later (currently supported Long Term Release)

  1. Migrate from the affected Oracle 8i/9i/10g versions to a currently supported Oracle Database release (Oracle 19c, 21c, or 23c)
  2. Oracle 8i, 9i, and 10g have reached extended support end-of-life and no longer receive Critical Patch Updates
  3. Contact Oracle Support to discuss upgrade options and obtain upgrade documentation for your specific deployment
  4. If immediate upgrade is not feasible, restrict network access to the database server to minimize attack surface
  5. Ensure the DBMS_REGISTRY package is not exposed to untrusted network segments or unauthorized users
  6. Review and apply any available legacy patches from Oracle if under extended support contract
Caveat Oracle database upgrades may require application compatibility testing; legacy features or deprecated APIs in 8i/9i/10g may require modifications

Generated from the published advisory — verify against the referenced sources before acting.

Fix this in Database Server Scoped from the published advisory
  • Consultation4.0 h
  • Implementation8.0 h
  • Testing6.0 h
  • Review / QA2.0 h
20.0 hours of engineering $3,500
Get help mitigating

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $5,600.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2006-0271 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2006-0271 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data