Module  jdk.attach
软件包  com.sun.tools.attach

Class AttachPermission

  • All Implemented Interfaces:
    SerializableGuard


    public final class AttachPermission
    extends BasicPermission
    当一个SecurityManager集合,这是当代码调用VirtalMachine.attach附加到目标虚拟机时将被检查的权限。 创建AttachProvider时也会检查此权限。

    一个AttachPermission对象包含一个名称(也称为“目标名称”),但没有动作列表; 你有指定的权限,或者你没有。 下表提供了许可允许的简要说明,并讨论了授予代码许可的风险。

    Table shows permission target name, what the permission allows, and associated risks Permission Target Name What the Permission Allows Risks of Allowing this Permission attachVirtualMachine Ability to attach to another Java virtual machine and load agents into that VM. This allows an attacker to control the target VM which can potentially cause it to misbehave. createAttachProvider Ability to create an AttachProvider instance. This allows an attacker to create an AttachProvider which can potentially be used to attach to other Java virtual machines.

    程序员通常不会直接创建AttachPermission对象。 相反,它们是基于阅读安全策略文件的安全策略代码创建的。

    另请参见:
    VirtualMachineAttachProviderSerialized Form
    • 构造方法详细信息

      • AttachPermission

        public AttachPermission​(String name)
        构造一个新的AttachPermission对象。
        参数
        name - 权限名称。 必须是“attachVirtualMachine”或“createAttachProvider”。
        异常
        NullPointerException - 如果名字是 null
        IllegalArgumentException - 如果名称无效。
      • AttachPermission

        public AttachPermission​(String name,
                                String actions)
        构造一个新的AttachPermission对象。
        参数
        name - 权限名称。 必须是“attachVirtualMachine”或“createAttachProvider”。
        actions - 未使用,应为 null ,或空字符串。
        异常
        NullPointerException - 如果名字是 null
        IllegalArgumentException - 如果参数无效。