- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 271 for Romadin (0.07 sec)
-
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
} @Test @DisplayName("Test statistics accumulation") void testStatisticsAccumulation() { logger.logAuthentication(true, "user1", "DOMAIN", "192.168.1.1"); logger.logAuthentication(false, "user2", "DOMAIN", "192.168.1.2"); logger.logFileAccess("WRITE", "/file.txt", true, "user1"); Map<EventType, Long> stats = logger.getStatistics();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsTest.java
String root = "share"; String path = "\\folder"; String fullPath = "\\" + domain + "\\" + root + path; // Should be "\domain.com\share\folder" lenient().when(smbTransport.getDfsReferrals(auth, fullPath, 0)).thenReturn(dfsReferral); assertEquals(dfsReferral, dfs.getReferral(smbTransport, domain, root, path, auth)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
@Test public void testEqualsWithPassword() { NtlmPasswordAuthenticator auth1 = new NtlmPasswordAuthenticator("DOMAIN", "user", "pass123"); NtlmPasswordAuthenticator auth2 = new NtlmPasswordAuthenticator("DOMAIN", "user", "pass123"); NtlmPasswordAuthenticator auth3 = new NtlmPasswordAuthenticator("DOMAIN", "user", "differentPass"); assertEquals(auth1, auth2, "Authenticators with same credentials should be equal");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private String authMethod; private boolean handshakeComplete; static { String domain = System.getProperty("http.auth.ntlm.domain"); if (domain == null) { domain = Type3Message.getDefaultDomain(); } DEFAULT_DOMAIN = domain; } /** * Creates a new NTLM HTTP URL connection that wraps an existing HTTP connection. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* @param serviceName * JAAS configuration name * @param domain the domain for authentication * @param username the username for authentication * @param password the password for authentication */ public JAASAuthenticator(String serviceName, String domain, String username, String password) { super(null, domain, username, password); this.serviceName = serviceName; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
@ParameterizedTest @NullAndEmptySource @DisplayName("Should handle null and empty domains") void testNullAndEmptyDomains(String domain) { referralData.setDomain(domain); assertEquals(domain, referralData.getDomain()); } @ParameterizedTest @NullAndEmptySource @DisplayName("Should handle null and empty links")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/test/java/jcifs/CredentialsTest.java
} @Test @DisplayName("Should get user domain") void testGetUserDomain() { // Given String domain = "TESTDOMAIN"; when(mockCredentials.getUserDomain()).thenReturn(domain); // When String result = mockCredentials.getUserDomain(); // Then assertEquals(domain, result); verify(mockCredentials).getUserDomain(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java
/** * Create username/password credentials with specified domain * * @param domain the authentication domain * @param username the username * @param passwordHash * NT password hash */ public NtlmNtHashAuthenticator(final String domain, final String username, final byte[] passwordHash) { super(domain, username, (String) null, AuthenticationType.USER);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
} @Test @DisplayName("Should fixup domain") void testFixupDomain() { String domain = "example.com"; // Test with mock doNothing().when(mockReferralData).fixupDomain(domain); mockReferralData.fixupDomain(domain); verify(mockReferralData, times(1)).fixupDomain(domain);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenDomain.java
package jcifs.dcerpc.msrpc; import jcifs.dcerpc.rpc; /** * MSRPC implementation for opening a domain handle. * This class provides functionality to open a handle to a SAM domain * using the SAMR RPC interface. */ public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { /** * Creates a new request to open a domain handle. * * @param handle the SAM policy handle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0)