Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for ssid (0.15 sec)

  1. src/main/java/jcifs/smb/SID.java

         */
        public static SID EVERYONE = null;
    
        /**
         * Well known SID: CREATOR_OWNER
         */
        public static SID CREATOR_OWNER = null;
    
        /**
         * Well known SID: SYSTEM
         */
        public static SID SYSTEM = null;
    
        static {
            try {
                EVERYONE = new SID("S-1-1-0");
                CREATOR_OWNER = new SID("S-1-3-0");
                SYSTEM = new SID("S-1-5-18");
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

        private int sid, informationLevel, resumeKey, tflags;
        private String filename;
        private long maxItems;
    
    
        /**
         * 
         * @param config
         * @param sid
         * @param resumeKey
         * @param filename
         * @param batchCount
         * @param batchSize
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dtyp/ACE.java

     * "The .NET Developer's Guide to Windows Security" (which is also
     * available online).
     * <p>
     * Direct ACEs are evaluated first in order. The SID of the user performing
     * the operation and the desired access bits are compared to the SID
     * and access mask of each ACE. If the SID matches, the allow/deny flags
     * and access mask are considered. If the ACE is a "deny"
     * ACE and <i>any</i> of the desired access bits match bits in the access
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

            bufferIndex += 2;
            int ownerUOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to owner sid
            bufferIndex += 4;
            int ownerGOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to group sid
            bufferIndex += 4;
            int saclOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to sacl
            bufferIndex += 4;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/rpc.java

                    for ( int _i = 0; _i < _bufferl; _i++ ) {
                        this.buffer[ _i ] = (short) _src.dec_ndr_short();
                    }
                }
            }
        }
    
        public static class sid_t extends NdrObject {
    
            public byte revision;
            public byte sub_authority_count;
            public byte[] identifier_authority;
            public int[] sub_authority;
    
    
            @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	} unicode_string;
    
    	/* 
    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    	 *     UCHAR Value[6];
    	 * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
    	 * 
    	 * #define SECURITY_NT_AUTHORITY           {0,0,0,0,0,5}
    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/SidTest.java

            assertEquals(jcifs.SID.SID_TYPE_DOM_GRP, s.getType());
        }
    
    
        @Test
        public void resolveWellKnownUsers () throws IOException {
            SID domsid = new SID(getRequiredProperty(TestProperties.TEST_DOMAIN_SID));
            int rids[] = new int[] {
                500, 501
            };
            for ( int rid : rids ) {
                SID sid = new SID(domsid, rid);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/PacGroup.java

     */
    package jcifs.pac;
    
    
    import jcifs.smb.SID;
    
    
    @SuppressWarnings ( "javadoc" )
    public class PacGroup {
    
        private SID id;
        private int attributes;
    
    
        public PacGroup ( SID id, int attributes ) {
            super();
            this.id = id;
            this.attributes = attributes;
        }
    
    
        public SID getId () {
            return this.id;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        public Trans2FindFirst2Response ( Configuration config ) {
            super(config, SMB_COM_TRANSACTION2, SmbComTransaction.TRANS2_FIND_FIRST2);
        }
    
    
        /**
         * @return the sid
         */
        public final int getSid () {
            return this.sid;
        }
    
    
        /**
         * @return the isEndOfSearch
         */
        public final boolean isEndOfSearch () {
            return this.isEndOfSearch;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLookupSids.java

    import jcifs.smb1.dcerpc.*;
    import jcifs.smb1.smb1.*;
    import jcifs.smb1.util.Hexdump;
    
    public class MsrpcLookupSids extends lsarpc.LsarLookupSids {
    
        SID[] sids;
    
        public MsrpcLookupSids(LsaPolicyHandle policyHandle, SID[] sids) {
            super(policyHandle,
                    new LsarSidArrayX(sids),
                    new lsarpc.LsarRefDomainList(),
                    new lsarpc.LsarTransNameArray(),
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.5K bytes
    - Viewed (0)
Back to top