Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for authMethod (0.04 sec)

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

                    if (currentAuthMethod.length() == 4) {
                        authMethod = "NTLM";
                        break;
                    }
                    if (currentAuthMethod.indexOf(' ') != 4) {
                        continue;
                    }
                    authMethod = "NTLM";
                    authorization = currentAuthMethod.substring(5).trim();
                    break;
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                        if (currentAuthMethod.length() == 4) {
                            this.authMethod = "NTLM";
                            break;
                        }
                        if (currentAuthMethod.indexOf(' ') != 4) {
                            continue;
                        }
                        this.authMethod = "NTLM";
                        authorization = currentAuthMethod.substring(5).trim();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/audit/SecurityAuditLogger.java

            context.put("username", maskedUsername);
            context.put("remoteAddress", maskedAddress);
            context.put("authMethod", authMethod);
            context.put("success", success);
    
            String message = buildAuthMessage(success, maskedUsername, maskedAddress, authMethod);
    
            logEvent(type, severity, message, context);
            returnContextMap(context);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top