- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for 3902 (0.19 sec)
-
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
assertEquals(0x0300, Smb2Constants.SMB2_DIALECT_0300, "SMB 3.0 dialect must be 0x0300"); } @Test @DisplayName("SMB 3.0.2 dialect should be 0x0302") void testDialect0302() { assertEquals(0x0302, Smb2Constants.SMB2_DIALECT_0302, "SMB 3.0.2 dialect must be 0x0302"); } @Test @DisplayName("SMB 3.1.1 dialect should be 0x0311") void testDialect0311() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
*/ public static final int SMB2_DIALECT_0210 = 0x0210; /** * SMB 3.0 dialect (Windows 8/Server 2012) */ public static final int SMB2_DIALECT_0300 = 0x0300; /** * SMB 3.0.2 dialect (Windows 8.1/Server 2012R2) */ public static final int SMB2_DIALECT_0302 = 0x0302; /** * SMB 3.1.1 dialect (Windows 10/Server 2016) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
README.md
- **SMB1/CIFS**: Legacy support via `jcifs.smb1/` package - **SMB 2.0.2**: Windows Vista+ (0x0202) - **SMB 2.1**: Windows 7/Server 2008R2 (0x0210) - **SMB 3.0**: Windows 8/Server 2012 (0x0300) - AES-128-CCM encryption - **SMB 3.0.2**: Windows 8.1/Server 2012R2 (0x0302) - Enhanced encryption - **SMB 3.1.1**: Windows 10/Server 2016+ (0x0311) - AES-128-GCM + Pre-Auth Integrity **Protocol Selection:** - Default Range: SMB1 to SMB 3.1.1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
this.node = new byte[6]; this.node[0] = B(hex_to_bin(arr, 24, 2)); this.node[1] = B(hex_to_bin(arr, 26, 2)); this.node[2] = B(hex_to_bin(arr, 28, 2)); this.node[3] = B(hex_to_bin(arr, 30, 2)); this.node[4] = B(hex_to_bin(arr, 32, 2)); this.node[5] = B(hex_to_bin(arr, 34, 2)); } @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
// Should not throw any exception int bytesRead = response.readBytesWireFormat(validBuffer, 0); assertTrue(bytesRead > 0); assertEquals(0x0302, response.getDialectRevision()); // SMB 3.0.2 assertTrue(response.getMaxTransactSize() > 0); assertTrue(response.getMaxTransactSize() <= 16777216); // Within validated limits } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
assertTrue(contexts[0] instanceof PreauthIntegrityNegotiateContext); assertArrayEquals(testSalt, request.getPreauthSalt()); } @Test @DisplayName("Should not add negotiate contexts for SMB 3.0.2 and below") void testNoNegotiateContextsSmb302() { // Given when(mockConfig.getMaximumVersion()).thenReturn(DialectVersion.SMB302); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
message[35] = 0; // User (8 bytes "user" in Unicode at offset 124) message[36] = 8; // Length message[37] = 0; message[38] = 8; // Max Length message[39] = 0; message[40] = 124; // Offset message[41] = 0; message[42] = 0; message[43] = 0; // Workstation (22 bytes "WORKSTATION" in Unicode at offset 132)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0)