- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 267 for Romadin (0.03 sec)
-
src/test/java/jcifs/internal/RequestWithPathTest.java
doNothing().when(requestWithPath).setFullUNCPath(domain, server, fullPath); requestWithPath.setFullUNCPath(domain, server, fullPath); verify(requestWithPath, times(1)).setFullUNCPath(domain, server, fullPath); // Test with implementation testImplementation.setFullUNCPath(domain, server, fullPath); assertEquals(domain, testImplementation.getDomain());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
NtlmPasswordAuthenticator startAuth = new NtlmPasswordAuthenticator("domain", "user", new String(diffAtStart)); NtlmPasswordAuthenticator middleAuth = new NtlmPasswordAuthenticator("domain", "user", new String(diffAtMiddle)); NtlmPasswordAuthenticator endAuth = new NtlmPasswordAuthenticator("domain", "user", new String(diffAtEnd)); try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_NO_TRUST_SAM_ACCOUNT = 0xC000018b; /** The trust relationship between the primary domain and the trusted domain failed */ int NT_STATUS_TRUSTED_DOMAIN_FAILURE = 0xC000018c; /** The trust relationship between this workstation and the primary domain failed */ int NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE = 0xC000018d; /** The account used is a computer account */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/SamrDomainHandle.java
import jcifs.smb1.smb1.SmbException; /** * Handle for Security Account Manager (SAM) domain operations. * This class represents an open handle to a SAM domain and provides * operations for managing domain users, groups, and aliases. */ public class SamrDomainHandle extends rpc.policy_handle { DcerpcHandle handle; /** * Creates a new SAM domain handle. * * @param handle the DCE/RPC handle for communication
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
/** * MSRPC implementation for enumerating aliases within a domain. * This class provides functionality to enumerate security aliases (local groups) * within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
/** * MSRPC implementation for enumerating aliases within a domain. * This class provides functionality to enumerate security aliases (local groups) * within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
final String domain = tc.getConfig().getDefaultDomain(); byte[] ti = TARGET_INFO_CACHE.get(domain); if (ti != null) { return ti; } ti = makeTargetInfo(tc, domain); TARGET_INFO_CACHE.put(domain, ti); return ti; } /** * @param domain * @param domainLength * @param server * @return
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
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/ntlmssp/Type1MessageTest.java
@Test @DisplayName("Should handle case sensitivity in domain and workstation") void testCaseSensitivity() { // Given String domain = "TestDomain"; String workstation = "TestWorkstation"; // When Type1Message type1 = new Type1Message(mockContext, 0, domain, workstation); // Then assertEquals(domain, type1.getSuppliedDomain());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java
assertFalse(name, domain.isPublicSuffix()); assertFalse(name, domain.hasPublicSuffix()); assertFalse(name, domain.isUnderPublicSuffix()); assertFalse(name, domain.isTopPrivateDomain()); assertNull(domain.publicSuffix()); } for (String name : NON_PS) { InternetDomainName domain = InternetDomainName.from(name);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0)