Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for domain (0.2 sec)

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

                    }
                }
                if (dns_domain.buffer != null) {
                    _dst = _dst.deferred;
                    int _dns_domain_bufferl = dns_domain.length / 2;
                    int _dns_domain_buffers = dns_domain.maximum_length / 2;
                    _dst.enc_ndr_long(_dns_domain_buffers);
                    _dst.enc_ndr_long(0);
                    _dst.enc_ndr_long(_dns_domain_bufferl);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                _dst.enc_ndr_short(this.domain_guid.time_hi_and_version);
                _dst.enc_ndr_small(this.domain_guid.clock_seq_hi_and_reserved);
                _dst.enc_ndr_small(this.domain_guid.clock_seq_low);
                int _domain_guid_nodes = 6;
                int _domain_guid_nodei = _dst.index;
                _dst.advance(1 * _domain_guid_nodes);
                _dst.enc_ndr_referent(this.sid, 1);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 35.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

        public boolean isTrustedDomain ( CIFSContext tf, String domain ) throws SmbAuthException {
            synchronized ( this.domainsLock ) {
                Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> domains = getTrustedDomains(tf);
                if ( domains == null )
                    return false;
                domain = domain.toLowerCase(Locale.ROOT);
                return domains.get(domain) != null;
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            this.domain = domain;
            this.username = username;
            this.password = password;
    
            initDefaults();
    
            if( domain == null ) this.domain = DEFAULT_DOMAIN;
            if( username == null ) this.username = DEFAULT_USERNAME;
            if( password == null ) this.password = DEFAULT_PASSWORD;
        }
    /**
     * Create an <tt>NtlmPasswordAuthentication</tt> object with raw password
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SID.java

         * 
         * @param domsid
         * @param id
         */
        public SID ( SID domsid, SID id ) {
            this.revision = domsid.revision;
            this.identifier_authority = domsid.identifier_authority;
            this.sub_authority_count = (byte) ( domsid.sub_authority_count + id.sub_authority_count );
            this.sub_authority = new int[this.sub_authority_count];
            int i;
            for ( i = 0; i < domsid.sub_authority_count; i++ ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/DfsResolver.java

        /**
         * @param domain
         * @param tf
         * @return whether the given domain is trusted
         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
        boolean isTrustedDomain ( CIFSContext tf, String domain ) throws CIFSException;
    
    
        /**
         * Get a connection to the domain controller for a given domain
         * 
         * @param domain
         * @param tf
         * @return connection
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Dfs.java

        }
        public boolean isTrustedDomain(String domain,
                        NtlmPasswordAuthentication auth) throws SmbAuthException
        {
            HashMap domains = getTrustedDomains(auth);
            if (domains == null)
                return false;
            domain = domain.toLowerCase();
            return domains.get(domain) != null;
        }
        public SmbTransport getDc(String domain,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            DEFAULT_DOMAIN = domain;
        }
    
        public NtlmHttpURLConnection(HttpURLConnection connection) {
            super(connection.getURL());
            this.connection = connection;
            requestProperties = new HashMap();
        }
    
        public void connect() throws IOException {
            if (connected) return;
            connection.connect();
            connected = true;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/NtlmTest.java

            };
            String domain = "TESTDOM";
            String user = "TESTUSER";
            String workstation = "TESTWS";
            Type3Message t3 = new Type3Message(flags, lmResponse, ntResponse, domain, user, workstation);
    
            Type3Message parsed = new Type3Message(t3.toByteArray());
    
            assertEquals(domain, parsed.getDomain());
            assertEquals(user, parsed.getUser());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/samr.java

            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;
            }
    
    
            @Override
    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)
Back to top