- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 30 for LOGON$ (1.57 sec)
-
src/test/java/jcifs/smb/SmbExceptionTest.java
// When SmbException exception = new SmbException(ntStatus, false); // Then assertNotNull(exception); assertTrue(exception.getMessage().toLowerCase().contains("logon") || exception.getMessage().toLowerCase().contains("authentication") || exception.getMessage().toLowerCase().contains("login") || exception.getMessage().toLowerCase().contains("user")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
ntlm = new NtlmPasswordAuthentication(getTransportContext(), domain, user, password); } try { getTransportContext().getTransportPool().logon(getTransportContext(), dc); } catch (final SmbAuthException sae) { response.setHeader("WWW-Authenticate", "NTLM"); if (offerBasic) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public static final int ACB_TEMPDUP = 8; /** Account control bit flag: Normal user account */ public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public static final int ACB_TEMPDUP = 8; /** Account control bit flag: Normal user account */ public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
/** * Establish a tree connection with the configured logon share * * @throws SmbException */ @Override public void treeConnectLogon() throws SmbException { String logonShare = getContext().getConfig().getLogonShare(); if (logonShare == null || logonShare.isEmpty()) { throw new SmbException("Logon share is not defined"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true); } try { getTransportContext().getTransportPool().logon(getTransportContext(), dc); if (log.isDebugEnabled()) { log.debug("NtlmHttpFilter: " + ntlm + " successfully authenticated against " + dc); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
try { send(req, resp); } catch (final SmbException e) { throw e; } catch (final CIFSException e) { throw new SmbException("Logon share connection failed", e); } } } boolean treeDisconnect(final boolean inError, final boolean inUse) { boolean wasInUse = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether to use strict DFS path resolution */ protected boolean dfsStrictView = false; /** Whether to convert DFS paths to FQDN */ protected boolean dfsConvertToFqdn; /** Default logon share */ protected String logonShare; /** Default domain for authentication */ protected String defaultDomain; /** Default username for authentication */ protected String defaultUserName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)