Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for ntlm (0.16 sec)

  1. src/main/java/jcifs/smb1/http/NtlmSsp.java

     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
     * described in an <A HREF="http://www.innovation.ch/java/ntlm.html">NTLM
     * Authentication Scheme for HTTP</A>.  <p> Also, read <a
     * href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                NtlmPasswordAuthentication ntlm = (NtlmPasswordAuthentication)obj;
                if( ntlm.domain.toUpperCase().equals( domain.toUpperCase() ) &&
                            ntlm.username.toUpperCase().equals( username.toUpperCase() )) {
                    if( hashesExternal && ntlm.hashesExternal ) {
                        return Arrays.equals( ansiHash, ntlm.ansiHash ) &&
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                if (currentAuthMethod.startsWith("NTLM")) {
                    if (currentAuthMethod.length() == 4) {
                        authMethod = "NTLM";
                        break;
                    }
                    if (currentAuthMethod.indexOf(' ') != 4) continue;
                    authMethod = "NTLM";
                    authorization = currentAuthMethod.substring(5).trim();
                    break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmServlet.java

                }
                NtlmPasswordAuthentication ntlm;
                if ( msg.startsWith("NTLM ") ) {
                    byte[] challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc);
                    ntlm = NtlmSsp.authenticate(getTransportContext(), request, response, challenge);
                    if ( ntlm == null )
                        return;
                }
                else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NtlmServlet.java

                ssn.setAttribute("NtlmHttpAuth", ntlm);
                ssn.setAttribute( "ntlmdomain", ntlm.getDomain() );
                ssn.setAttribute( "ntlmuser", ntlm.getUsername() );
            } else {
                HttpSession ssn = request.getSession(false);
                if (ssn == null || ssn.getAttribute("NtlmHttpAuth") == null) {
                    response.setHeader("WWW-Authenticate", "NTLM");
                    if (offerBasic) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

            NtlmPasswordAuthentication ntlm;
    
            if ((ntlm = negotiate( req, resp, false )) == null) {
                return;
            }
    
            chain.doFilter( new NtlmHttpServletRequest( req, ntlm ), response );
        }
    
        /**
         * Negotiate password hashes with MSIE clients using NTLM SSP
         * @param req The servlet request
         * @param resp The servlet response
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

            NtlmPasswordAuthentication ntlm;
    
            if ( ( ntlm = negotiate(req, resp, false) ) == null ) {
                return;
            }
    
            chain.doFilter(new NtlmHttpServletRequest(req, ntlm), response);
        }
    
    
        /**
         * Negotiate password hashes with MSIE clients using NTLM SSP
         * 
         * @param req
         *            The servlet request
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmSsp.java

     * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
     * described in an <A HREF="http://www.innovation.ch/java/ntlm.html">NTLM
     * Authentication Scheme for HTTP</A>.
     * <p>
     * Also, read <a
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbTransportPool.java

         */
        @Deprecated
        void logon ( CIFSContext tc, Address dc, int port ) throws CIFSException;
    
    
        /**
         * Get NTLM challenge from a server
         * 
         * @param dc
         * @param tc
         * @return NTLM challenge
         * @throws CIFSException
         * @deprecated functionality is broken and will be removed at some point,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/ContextConfigTest.java

                NtlmPasswordAuthenticator ntlm = c.unwrap(NtlmPasswordAuthenticator.class);
                assertEquals("foo", ntlm.getUsername());
                assertEquals("DOMAIN", ntlm.getUserDomain());
                assertEquals("bar", ntlm.getPassword());
            }
        }
    
    
        @Test
        @SuppressWarnings ( "deprecation" )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
Back to top