Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for ssid (0.24 sec)

  1. 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)
  2. src/main/java/jcifs/pac/PacSidAttributes.java

     */
    package jcifs.pac;
    
    
    import jcifs.smb.SID;
    
    
    @SuppressWarnings ( "javadoc" )
    public class PacSidAttributes {
    
        private SID id;
        private int attributes;
    
    
        public PacSidAttributes ( SID id, int attributes ) {
            super();
            this.id = id;
            this.attributes = attributes;
        }
    
    
        public SID getId () {
            return this.id;
        }
    
    
    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/samr.java

            public int access_mask;
            public rpc.sid_t sid;
            public rpc.policy_handle domain_handle;
    
    
            public SamrOpenDomain ( rpc.policy_handle handle, int access_mask, rpc.sid_t sid, rpc.policy_handle domain_handle ) {
                this.handle = handle;
                this.access_mask = access_mask;
                this.sid = sid;
                this.domain_handle = domain_handle;
            }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacDataInputStream.java

            System.arraycopy(bytes, 0, sidBytes, 8, bytes.length);
    
            return new SID(sidBytes, 0);
        }
    
    
        public SID readSid () throws IOException, PACDecodingException {
            int sidSize = readInt();
            byte[] bytes = new byte[8 + sidSize * 4];
            readFully(bytes);
            return new SID(bytes, 0);
        }
    
    
        public int skipBytes ( int n ) throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 21 21:19:58 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PipeTest.java

                try ( LsaPolicyHandle policyHandle = new LsaPolicyHandle(handle, "\\\\" + server, 0x00000800) ) {
                    MsrpcLookupSids rpc = new MsrpcLookupSids(policyHandle, new SID[] {
                        SID.EVERYONE
                    });
                    handle.sendrecv(rpc);
    
                    assertEquals(0, rpc.retval);
                }
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            resp = new Trans2FindFirst2Response();
    
            if( log.level >= 3 )
                log.println( "doFindFirstNext: " + req.path );
    
            send( req, resp );
    
            sid = resp.sid;
            req = new Trans2FindNext2( sid, resp.resumeKey, resp.lastName );
    
            /* The only difference between first2 and next2 responses is subCommand
             * so let's recycle the response object.
             */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java

     */
    
    package jcifs.dcerpc.msrpc;
    
    @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;
    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)
  8. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        public static final int NT_STATUS_NONE_MAPPED = 0xC0000073;
        public static final int NT_STATUS_INVALID_SID = 0xC0000078;
        public static final int NT_STATUS_DISK_FULL = 0xC000007f;
        public static final int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
        public static final int NT_STATUS_PIPE_NOT_AVAILABLE = 0xC00000ac;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/CIFSContext.java

         */
        SmbTransportPool getTransportPool ();
    
    
        /**
         * @return the DFS instance for this context
         */
        DfsResolver getDfs ();
    
    
        /**
         * @return the SID resolver for this context
         */
        SidResolver getSIDResolver ();
    
    
        /**
         * 
         * @return the used credentials
         */
        Credentials getCredentials ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtStatus.java

        public static final int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072;
        public static final int NT_STATUS_NONE_MAPPED = 0xC0000073;
        public static final int NT_STATUS_INVALID_SID = 0xC0000078;
        public static final int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
        public static final int NT_STATUS_PIPE_NOT_AVAILABLE = 0xC00000ac;
        public static final int NT_STATUS_INVALID_PIPE_STATE = 0xC00000ad;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
Back to top