Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for SIDs (0.32 sec)

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

            sidArray.num_sids = 2;
            sidArray.sids = new lsarpc.LsarSidPtr[2];
    
            sidArray.sids[0] = new lsarpc.LsarSidPtr();
            sidArray.sids[0].sid = new rpc.sid_t();
            sidArray.sids[0].sid.revision = 1;
            sidArray.sids[0].sid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 };
            sidArray.sids[0].sid.sub_authority_count = 1;
            sidArray.sids[0].sid.sub_authority = new int[] { 500 };
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

            }
    
            /** Number of SIDs in the array. */
            public int count;
            /** Array of translated SIDs. */
            public LsarTranslatedSid[] sids;
    
            @Override
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(this.count);
                _dst.enc_ndr_referent(this.sids, 1);
    
                if (this.sids != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacLogonInfo.java

            return this.groupSid;
        }
    
        /**
         * Returns an array of group SIDs the user belongs to.
         * @return the group SIDs array
         */
        public SID[] getGroupSids() {
            return this.groupSids;
        }
    
        /**
         * Returns an array of resource group SIDs the user belongs to.
         * @return the resource group SIDs array
         */
        public SID[] getResourceGroupSids() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SIDCacheImplTest.java

                // Provide empty arrays to satisfy code paths
                rpc.names = new lsarpc.LsarTransNameArray();
                rpc.names.count = sids.length;
                rpc.names.names = new lsarpc.LsarTranslatedName[sids.length];
                for (int i = 0; i < sids.length; i++) {
                    rpc.names.names[i] = new lsarpc.LsarTranslatedName();
                    rpc.names.names[i].sid_type = (short) jcifs.SID.SID_TYPE_UNKNOWN;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SID.java

                    } else {
                        list.add(sids[si]);
                    }
                }
    
                if (list.size() > 0) {
                    sids = (SID[]) list.toArray(new SID[0]);
                    SID.resolveSids0(authorityServerName, auth, sids);
                    for (si = 0; si < sids.length; si++) {
                        sid_cache.put(sids[si], sids[si]);
                    }
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SIDCacheImpl.java

                        final SID[] sids = new SID[rpc.sids.num_sids];
    
                        final String origin_server = handle.getServer();
                        final CIFSContext origin_ctx = handle.getTransportContext();
    
                        for (int i = 0; i < sids.length; i++) {
                            sids[i] = new SID(rpc.sids.sids[i].sid, 0, null, null, false);
                            sids[i].origin_server = origin_server;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            }
    
            /** Number of SIDs in the array. */
            public int count;
            /** Array of translated SIDs. */
            public LsarTranslatedSid[] sids;
    
            @Override
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                _dst.enc_ndr_long(count);
                _dst.enc_ndr_referent(sids, 1);
    
                if (sids != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SID.java

         */
        public void resolve(final String authorityServerName, final CIFSContext tc) throws IOException {
            final SID[] sids = new SID[1];
            sids[0] = this;
            tc.getSIDResolver().resolveSids(tc, authorityServerName, sids);
        }
    
        void resolveWeak() {
            if (this.origin_server != null) {
                try {
                    resolve(this.origin_server, this.origin_ctx);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/samr.java

            public rpc.policy_handle alias_handle;
            /** The array of SIDs that are members of the alias */
            public lsarpc.LsarSidArray sids;
    
            /**
             * Constructs a SamrGetMembersInAlias request.
             *
             * @param alias_handle The alias handle
             * @param sids The array to receive member SIDs
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

            public rpc.policy_handle alias_handle;
            /** The array of SIDs that are members of the alias */
            public lsarpc.LsarSidArray sids;
    
            /**
             * Constructs a SamrGetMembersInAlias request.
             *
             * @param alias_handle The alias handle
             * @param sids The array to receive member SIDs
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top