Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for sids (0.14 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLookupSids.java

        SID[] sids;
    
        public MsrpcLookupSids(LsaPolicyHandle policyHandle, SID[] sids) {
            super(policyHandle,
                    new LsarSidArrayX(sids),
                    new lsarpc.LsarRefDomainList(),
                    new lsarpc.LsarTransNameArray(),
                    (short)1,
                    sids.length);
            this.sids = sids;
            ptype = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAlias.java

    @SuppressWarnings ( "javadoc" )
    public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias {
    
        public MsrpcGetMembersInAlias ( SamrAliasHandle aliasHandle, lsarpc.LsarSidArray sids ) {
            super(aliasHandle, sids);
            this.sids = sids;
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/LsarSidArrayX.java

    
    import jcifs.dcerpc.rpc.sid_t;
    import jcifs.smb.SID;
    
    
    class LsarSidArrayX extends lsarpc.LsarSidArray {
    
        LsarSidArrayX ( jcifs.SID[] sids ) {
            this.num_sids = sids.length;
            this.sids = new lsarpc.LsarSidPtr[sids.length];
            for ( int si = 0; si < sids.length; si++ ) {
                this.sids[ si ] = new lsarpc.LsarSidPtr();
                this.sids[ si ].sid = sids[ si ].unwrap(sid_t.class);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/LsarSidArrayX.java

    package jcifs.smb1.dcerpc.msrpc;
    
    import jcifs.smb1.smb1.SID;
    
    class LsarSidArrayX extends lsarpc.LsarSidArray {
    
        LsarSidArrayX(SID[] sids) {
            this.num_sids = sids.length;
            this.sids = new lsarpc.LsarSidPtr[sids.length];
            for (int si = 0; si < sids.length; si++) {
                this.sids[si] = new lsarpc.LsarSidPtr();
                this.sids[si].sid = sids[si];
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 403 bytes
    - Viewed (0)
  5. src/main/java/jcifs/SidResolver.java

         *            name associated with SIDs will be required, the SID_FLAG_RESOLVE_SIDS
         *            flag should be used which causes all group member SIDs to be resolved
         *            together in a single more efficient operation.
         * @return a map of group SID to member SIDs
         * @throws CIFSException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcGetMembersInAlias.java

    import jcifs.smb1.smb1.*;
    
    public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias {
    
        public MsrpcGetMembersInAlias(SamrAliasHandle aliasHandle, lsarpc.LsarSidArray sids) {
            super(aliasHandle, sids);
            this.sids = sids;
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (1)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    	} LsarPolicyInfo;
    
    	typedef struct {
    		sid_t *sid;
    	} LsarSidPtr;
    
    	typedef struct {
    		[range(0,1000)] uint32_t num_sids;
    		[size_is(num_sids)] LsarSidPtr *sids;
    	} LsarSidArray;
    
    	typedef enum {
    		SID_NAME_USE_NONE = 0, /* NOTUSED */
    		SID_NAME_USER     = 1, /* user */
    		SID_NAME_DOM_GRP  = 2, /* domain group */
    		SID_NAME_DOMAIN   = 3, /* domain: don't know what this is */
    		SID_NAME_ALIAS    = 4, /* local group */
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java

    @SuppressWarnings ( "javadoc" )
    public class MsrpcLookupSids extends lsarpc.LsarLookupSids {
    
        public MsrpcLookupSids ( LsaPolicyHandle policyHandle, jcifs.SID[] sids ) {
            super(policyHandle, new LsarSidArrayX(sids), new lsarpc.LsarRefDomainList(), new lsarpc.LsarTransNameArray(), (short) 1, sids.length);
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    			[in] uint32_t unknown,
    			[in] uint32_t access_mask,
    			[out] policy_handle *handle);
    
    	[op(0x07)]
    	int SamrOpenDomain([in] policy_handle *handle,
    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
Back to top