Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for hexdump (0.04 sec)

  1. 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)
  2. src/main/java/jcifs/util/Strings.java

                len += 2;
                if (len > maxLen) {
                    if (log.isDebugEnabled()) {
                        log.warn("Failed to find string termination with max length " + maxLen);
                        log.debug(Hexdump.toHexString(buffer, bufferIndex, len));
                    }
                    throw new RuntimeCIFSException("zero termination not found");
                }
            }
            return len;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

                    + (suppliedWorkstation == null ? "null" : suppliedWorkstation) + ",flags=0x"
                    + jcifs.smb1.util.Hexdump.toHexString(getFlags(), 8) + "]";
        }
    
        /**
         * Returns the default flags for a generic Type-1 message in the
         * current environment.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

     */
    
    package jcifs.internal.smb1.trans;
    
    import java.util.Enumeration;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Base class for SMB1 transaction request messages.
     * This abstract class provides the foundation for all SMB1 transaction commands, handling
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SID.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.RuntimeCIFSException;
    import jcifs.dcerpc.rpc;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Internal representation of SIDs
     *
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top