Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getLMResponse (0.31 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            String user = getDefaultUser();
            setUser(user);
            String password = getDefaultPassword();
            switch (LM_COMPATIBILITY) {
            case 0:
            case 1:
                setLMResponse(getLMResponse(type2, password));
                setNTResponse(getNTResponse(type2, password));
                break;
            case 2:
                byte[] nt = getNTResponse(type2, password);
                setLMResponse(nt);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

            }
    
            switch ( tc.getConfig().getLanManCompatibility() ) {
            case 0:
            case 1:
                if ( !getFlag(NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY) ) {
                    setLMResponse(getLMResponse(tc, type2, password));
                    setNTResponse(getNTResponse(tc, type2, passwordHash));
                }
                else {
                    // NTLM2 Session Response
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/NtlmTest.java

            assertEquals(domain, parsed.getDomain());
            assertEquals(user, parsed.getUser());
            assertEquals(workstation, parsed.getWorkstation());
    
            assertArrayEquals(lmResponse, parsed.getLMResponse());
            assertArrayEquals(ntResponse, parsed.getNTResponse());
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmSsp.java

                    resp.setHeader("WWW-Authenticate", "NTLM " + msg);
                }
                else if ( src[ 8 ] == 3 ) {
                    Type3Message type3 = new Type3Message(src);
                    byte[] lmResponse = type3.getLMResponse();
                    if ( lmResponse == null )
                        lmResponse = new byte[0];
                    byte[] ntResponse = type3.getNTResponse();
                    if ( ntResponse == null )
    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)
  5. src/main/java/jcifs/smb1/http/NtlmSsp.java

                    resp.setHeader( "WWW-Authenticate", "NTLM " + msg );
                } else if (src[8] == 3) {
                    Type3Message type3 = new Type3Message(src);
                    byte[] lmResponse = type3.getLMResponse();
                    if (lmResponse == null) lmResponse = new byte[0];
                    byte[] ntResponse = type3.getNTResponse();
                    if (ntResponse == null) ntResponse = new byte[0];
    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)
Back to top