- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 103 for Hexdump (0.06 sec)
-
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
import jcifs.Configuration; import jcifs.RuntimeCIFSException; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.smb1.com.SmbComNTCreateAndXResponse; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * Base class for SMB1 AndX (chained) command messages. * This class extends ServerMessageBlock to support SMB1 command chaining, where multiple
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/dcerpc/DcerpcBind.java
private static String getResultMessage(final int result) { return result < 4 ? result_message[result] : "0x" + jcifs.util.Hexdump.toHexString(result, 4); } @Override public DcerpcException getResult() { if (this.result != 0) { return new DcerpcException(getResultMessage(this.result)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java
static String getResultMessage(final int result) { return result < 4 ? result_message[result] : "0x" + jcifs.smb1.util.Hexdump.toHexString(result, 4); } @Override public DcerpcException getResult() { if (result != 0) { return new DcerpcException(getResultMessage(result)); } return null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
assertTrue(result.contains("nextEntry=")); assertTrue(result.contains("action=")); assertTrue(result.contains("file=" + fileName)); // Hexdump.toHexString produces 4-character padded uppercase hex String expectedHex = String.format("%04X", action); assertTrue(result.contains("0x" + expectedHex)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
ace.flags = 0x00; ace.sid = new SID("S-1-5-21-1234567890-123456789-123456789-1000"); String result = ace.toString(); assertTrue(result.startsWith("Allow ")); // Hexdump.toHexString produces uppercase hex assertTrue(result.toLowerCase().contains("0x001200a9")); // ACE.toString() outputs "Direct " with 4 spaces assertTrue(result.contains("Direct"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
@Override public String toString() { return ("Smb2NegotiateResponse[" + super.toString() + ",dialectRevision=" + this.dialectRevision + ",securityMode=0x" + Hexdump.toHexString(this.securityMode, 1) + ",capabilities=0x" + Hexdump.toHexString(this.capabilities, 8) + ",serverTime=" + new Date(this.systemTime)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.SMBSigningDigest; import jcifs.internal.util.SMBUtil; import jcifs.smb.SmbException; import jcifs.util.Hexdump; /** * Base class for SMB2/SMB3 protocol messages. * * This abstract class provides common functionality for all SMB2/SMB3 * message types including encoding, decoding, and message handling. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.NameServiceClient; import jcifs.NetbiosAddress; import jcifs.util.Hexdump; /** * Comprehensive test suite for Type2Message NTLM authentication message. * Tests all constructors, parsing, and serialization functionality. */ @DisplayName("Type2Message Comprehensive Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
} } catch (final SmbAuthException sae) { if (LogStream.level > 1) { log.println("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.smb1.util.Hexdump.toHexString(sae.getNtStatus(), 8) + ": " + sae); } if (sae.getNtStatus() == NtStatus.NT_STATUS_ACCESS_VIOLATION) {
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/ntlmssp/Type1Message.java
+ (suppliedWorkstationString == null ? "null" : suppliedWorkstationString) + ",flags=0x" + jcifs.util.Hexdump.toHexString(getFlags(), 8) + "]"; } private void parse(final byte[] material) throws IOException { int pos = 0; for (int i = 0; i < 8; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0)