VYPR
Moderate severityNVD Advisory· Published Jul 11, 2022· Updated Apr 23, 2025

No security checking for UnsafeAccess.getInstance() in UnsafeAccessor

CVE-2022-31139

Description

UnsafeAccessor (UA) is a bridge to access jdk.internal.misc.Unsafe & sun.misc.Unsafe. Normally, if UA is loaded as a named module, the internal data of UA is protected by JVM and others can only access UA via UA's standard API. The main application can set up SecurityCheck.AccessLimiter for UA to limit access to UA. Starting with version 1.4.0 and prior to version 1.7.0, when SecurityCheck.AccessLimiter is set up, untrusted code can access UA without limitation, even when UA is loaded as a named module. This issue does not affect those for whom SecurityCheck.AccessLimiter is not set up. Version 1.7.0 contains a patch.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
io.github.karlatemp:unsafe-accessorMaven
>= 1.4.0, < 1.7.01.7.0

Affected products

1

Patches

1
4ef83000184e

Fix UnsafeAccess perm checking

2 files changed · +4 3
  • api/src/main/java/io/github/karlatemp/unsafeaccessor/Root.java+2 2 modified
    @@ -157,8 +157,8 @@ static class Secret {
         @Contract(pure = false)
         public static <T> T throw0(Throwable throwable) {
             if (throwable == null) throw new NullPointerException();
    -        getUnsafe().throwException(throwable);
    -        throw new RuntimeException();
    +        Unsafe.getUnsafe0().throwException(throwable);
    +        throw new RuntimeException(throwable);
         }
     
         /**
    
  • api/src/main/java/io/github/karlatemp/unsafeaccessor/UnsafeAccess.java+2 1 modified
    @@ -17,7 +17,8 @@ public final class UnsafeAccess extends ProtectedObject {
         static final UnsafeAccess INSTANCE = new UnsafeAccess();
     
         public static UnsafeAccess getInstance() {
    -        SecurityCheck.getInstance();
    +        SecurityCheck.AccessLimiter accessLimiter = SecurityCheck.getInstance().getLimiter();
    +        if (accessLimiter != null) accessLimiter.preGetUnsafeAccess();
             return INSTANCE;
         }
     
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.