Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for authMethod (0.19 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)
  4. src/main/webapp/js/admin/bootstrap.min.js.map

    }\n\n  // Getters\n  static get VERSION() {\n    return VERSION\n  }\n\n  static get Default() {\n    return Default\n  }\n\n  // Public\n  refresh() {\n    const autoMethod = this._scrollElement === this._scrollElement.window ?\n      METHOD_OFFSET : METHOD_POSITION\n\n    const offsetMethod = this._config.method === 'auto' ?\n      autoMethod : this._config.method\n\n    const offsetBase = offsetMethod === METHOD_POSITION ?\n      this._getScrollTop() : 0\n\n    this._offsets = []\n    this._targets...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 180.9K bytes
    - Viewed (0)
Back to top