- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 61 for NtlmPasswordAuthentication (0.28 seconds)
-
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
*/ package jcifs.smb1.dcerpc; import java.io.IOException; import java.net.MalformedURLException; import java.net.UnknownHostException; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SmbFileInputStream; import jcifs.smb1.smb1.SmbFileOutputStream; import jcifs.smb1.smb1.SmbNamedPipe; import jcifs.smb1.util.Encdec; /**
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} catch (final UnknownHostException uhe) { NtlmPasswordAuthentication.initDefaults(); if (NtlmPasswordAuthentication.DEFAULT_DOMAIN.equals("?")) { throw uhe; } addresses = UniAddress.getAllByName(NtlmPasswordAuthentication.DEFAULT_DOMAIN, true); } } else if (path.length() == 0 || path.equals("/")) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
import java.io.IOException; import java.net.MalformedURLException; import java.net.UnknownHostException; import java.security.Principal; import jcifs.smb1.dcerpc.ndr.NdrBuffer; import jcifs.smb1.smb1.NtlmPasswordAuthentication; /** * Abstract base class for DCERPC handles providing core RPC functionality. * This class manages DCE/RPC protocol bindings and communications over SMB transport. */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.7K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbFileTest.java
* using mocks where necessary. */ @ExtendWith(MockitoExtension.class) public class SmbFileTest { @Mock private NtlmPasswordAuthentication mockAuth; @BeforeEach public void setUp() { // Static mocks or initializations can be done here if necessary // For now, we rely on instance mocks provided by MockitoExtension }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
user = index != -1 ? user.substring(index + 1) : user; ntlm = new NtlmPasswordAuthentication(domain, user, password); } req.getSession().setAttribute("npa-" + server, ntlm); } else if (!credentialsSupplied) { if (ssn != null) { ntlm = (NtlmPasswordAuthentication) ssn.getAttribute("npa-" + server); } if (ntlm == null) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 22.6K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true); } } else if (this.transportContext.getCredentials() instanceof NtlmPasswordAuthentication) { final NtlmPasswordAuthentication npa = (NtlmPasswordAuthentication) this.transportContext.getCredentials(); String domain = npa.getUserDomain(); String user = !npa.isAnonymous() ? npa.getUsername() : null;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 25.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* @throws MalformedURLException if the URL is not properly formatted * @throws UnknownHostException if the host cannot be resolved */ public SmbNamedPipe(final String url, final int pipeType, final NtlmPasswordAuthentication auth) throws MalformedURLException, UnknownHostException { super(url, auth); this.pipeType = pipeType; type = TYPE_NAMED_PIPE; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/jcifs/http/NetworkExplorer.java
ntlm = new NtlmPasswordAuthentication(getTransportContext(), domain, user, password); } req.getSession().setAttribute("npa-" + server, ntlm); } else if (!this.credentialsSupplied) { if (ssn != null) { ntlm = (NtlmPasswordAuthentication) ssn.getAttribute("npa-" + server); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
* @param auth the NTLM password authentication credentials * @throws SmbException if MD5 algorithm is not available or key generation fails */ public SigningDigest(final SmbTransport transport, final NtlmPasswordAuthentication auth) throws SmbException { try { digest = MessageDigest.getInstance("MD5"); } catch (final NoSuchAlgorithmException ex) { if (LogStream.level > 0) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.9K bytes - Click Count (0)