Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ACEs (0.01 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            assertNull(result);
        }
    
        @Test
        void testGetSecurityWithDACL() throws Exception {
            // Setup ShareInfo502 with a security descriptor containing a DACL with no ACEs
            srvsvc.ShareInfo502 info502 = new srvsvc.ShareInfo502();
    
            // Create a security descriptor with DACL at offset 20
            byte[] securityDescriptorBytes = new byte[28];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                final SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                final ACE[] aces = desc.getAces();
                if (aces != null) {
                    processAces(aces, resolveSids);
                }
    
                return aces;
            }
        }
    
        @Override
        public SID getOwnerUser() throws IOException {
            return getOwnerUser(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * <p>
         * Alternatively <code>getSecurity(true)</code> may be used to resolve all
         * SIDs together and detect network failures.
         *
         * @return array of ACEs
         * @throws IOException if an I/O error occurs
         */
        ACE[] getSecurity() throws IOException;
    
        /**
         * Return an array of Access Control Entry (ACE) objects representing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
Back to top