Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for NtlmPasswordAuthentication (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

            return sae;
        }
    
    /**
    Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials.
     */
    
        public static NtlmPasswordAuthentication
                    requestNtlmPasswordAuthentication( String url, SmbAuthException sae ) {
            if( auth == null ) {
                return null;
            }
            synchronized( auth ) {
                auth.url = url;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Dfs.java

                        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,
                        NtlmPasswordAuthentication auth) throws SmbAuthException {
    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)
  3. src/main/java/jcifs/smb1/smb1/NtlmContext.java

     */
    
    public class NtlmContext {
    
    
        NtlmPasswordAuthentication auth;
        int ntlmsspFlags;
        String workstation;
        boolean isEstablished = false;
        byte[] serverChallenge = null;
        byte[] signingKey = null;
        String netbiosName = null;
        int state = 1;
        LogStream log;
    
        public NtlmContext(NtlmPasswordAuthentication auth, boolean doSigning) {
            this.auth = auth;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

        }
    
    
        @SuppressWarnings ( "deprecation" )
        private static boolean isExternalAuth ( NtlmPasswordAuthenticator pwAuth ) {
            return pwAuth instanceof jcifs.smb.NtlmPasswordAuthentication && ! ( (jcifs.smb.NtlmPasswordAuthentication) pwAuth ).areHashesExternal()
                    && pwAuth.getPassword().isEmpty();
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmServlet.java

    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Config;
    import jcifs.config.PropertyConfiguration;
    import jcifs.context.BaseContext;
    import jcifs.netbios.UniAddress;
    import jcifs.smb.NtlmPasswordAuthentication;
    import jcifs.smb.SmbAuthException;
    
    
    /**
     * This servlet may be used with pre-2.3 servlet containers
     * to protect content with NTLM HTTP Authentication. Servlets that
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SID.java

                    throw new SmbException(rpc.retval, false);
                SID[] sids = new SID[rpc.sids.num_sids];
    
                String origin_server = handle.getServer();
                NtlmPasswordAuthentication origin_auth =
                            (NtlmPasswordAuthentication)handle.getPrincipal();
    
                for (int i = 0; i < sids.length; i++) {
                    sids[i] = new SID(rpc.sids.sids[i].sid,
                                0,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            }
            return (capabilities & cap) == cap;
        }
        boolean isSignatureSetupRequired( NtlmPasswordAuthentication auth ) {
            return ( flags2 & ServerMessageBlock.FLAGS2_SECURITY_SIGNATURES ) != 0 &&
                    digest == null &&
                    auth != NtlmPasswordAuthentication.NULL &&
                    NtlmPasswordAuthentication.NULL.equals( auth ) == false;
        }
    
        void ssn139() throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbTransportPool.java

         * 
         * @throws CIFSException
         * 
         */
        boolean close () throws CIFSException;
    
    
        /**
         * Authenticate arbitrary credentials represented by the
         * <tt>NtlmPasswordAuthentication</tt> object against the domain controller
         * specified by the <tt>UniAddress</tt> parameter. If the credentials are
         * not accepted, an <tt>SmbAuthException</tt> will be thrown. If an error
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            return d ? this.domain + "\\" + this.username : this.username;
        }
    
    
        /**
         * Compares two <tt>NtlmPasswordAuthentication</tt> objects for equality.
         * 
         * Two <tt>NtlmPasswordAuthentication</tt> objects are equal if their caseless domain and username fields are equal
         *
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

        }
        public SmbNamedPipe( String url, int pipeType, NtlmPasswordAuthentication auth )
                                throws MalformedURLException, UnknownHostException {
            super( url, auth );
            this.pipeType = pipeType;
            type = TYPE_NAMED_PIPE;
        }
        public SmbNamedPipe( URL url, int pipeType, NtlmPasswordAuthentication auth )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
Back to top