Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setLMResponse (0.35 seconds)

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

            switch (LM_COMPATIBILITY) {
            case 0:
            case 1:
                setLMResponse(getLMResponse(type2, password));
                setNTResponse(getNTResponse(type2, password));
                break;
            case 2:
                final byte[] nt = getNTResponse(type2, password);
                setLMResponse(nt);
                setNTResponse(nt);
                break;
            case 3:
            case 4:
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 24.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/ntlmssp/Type3Message.java

                    final byte[] lmClientChallenge = new byte[8];
                    tc.getConfig().getRandom().nextBytes(lmClientChallenge);
                    setLMResponse(getLMv2Response(tc, type2, domain, user, passwordHash, lmClientChallenge));
                } else {
                    setLMResponse(new byte[24]);
                }
    
                if (avPairs != null) {
                    // make sure to set the TARGET_INFO flag as we are sending
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 32.7K bytes
    - Click Count (0)
Back to Top