Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 138 for 0X (0.01 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

            sb.append(", attempt=").append(attemptNumber);
            sb.append(", operation='").append(operationName).append('\'');
    
            if (ntStatus != 0) {
                sb.append(", ntStatus=0x").append(Long.toHexString(ntStatus));
            }
    
            if (!context.isEmpty()) {
                sb.append(", context=").append(context);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

                    + ",context=" + (context == null ? "null" : "<" + context.length + " bytes>") + ",targetInformation="
                    + (targetInformation == null ? "null" : "<" + targetInformation.length + " bytes>") + ",flags=0x"
                    + jcifs.smb1.util.Hexdump.toHexString(getFlags(), 8) + "]";
        }
    
        /**
         * Returns the default flags for a generic Type-2 message in the
         * current environment.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

            byte[] buf = new byte[128];
            block.writeAndXWireFormat(buf, 0);
    
            String s = block.toString();
            assertNotNull(s);
            assertTrue(s.contains("andxCommand=0x"));
            assertTrue(s.contains("andxOffset="));
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmContext.java

        }
    
        @Override
        public String toString() {
            StringBuilder ret = new StringBuilder("NtlmContext[auth=").append(this.auth)
                    .append(",ntlmsspFlags=0x")
                    .append(Hexdump.toHexString(this.ntlmsspFlags, 8))
                    .append(",workstation=")
                    .append(this.workstation)
                    .append(",isEstablished=")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpFilter.java

                    }
                } catch (final SmbAuthException sae) {
                    log.warn("NtlmHttpFilter: " + ntlm.getName() + ": 0x" + jcifs.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
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/ServerResponseValidator.java

                    throw new SmbException("Invalid SMB2 header size: " + structureSize);
                }
            } else {
                failedValidations.incrementAndGet();
                log.warn("Invalid SMB protocol ID: 0x{}", Integer.toHexString(protocolId));
                throw new SmbException("Invalid SMB protocol identifier");
            }
    
            // Validate command is in valid range
            if (command < 0 || command > 255) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  7. cmd/xl-storage-meta-inline.go

    // It does not check integrity of the stored data.
    func (x xlMetaInlineData) validate() error {
    	if len(x) == 0 {
    		return nil
    	}
    
    	if !x.versionOK() {
    		return fmt.Errorf("xlMetaInlineData: unknown version 0x%x", x[0])
    	}
    
    	sz, buf, err := msgp.ReadMapHeaderBytes(x.afterVersion())
    	if err != nil {
    		return fmt.Errorf("xlMetaInlineData: %w", err)
    	}
    
    	for i := range sz {
    		var key []byte
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type2Message.java

                    + (contextBytes == null ? "null" : "<" + contextBytes.length + " bytes>") + ",targetInformation="
                    + (targetInformationBytes == null ? "null" : "<" + targetInformationBytes.length + " bytes>") + ",flags=0x"
                    + jcifs.util.Hexdump.toHexString(getFlags(), 8) + "]";
        }
    
        private void parse(final byte[] input) 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
    - 14.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java

            assertTrue(result.contains("lastAccessTime="));
            assertTrue(result.contains("lastWriteTime="));
            assertTrue(result.contains("changeTime="));
            assertTrue(result.contains("attributes=0x"));
        }
    
        @Test
        @DisplayName("Test decode with minimum buffer size")
        void testDecodeWithMinimumBufferSize() throws SMBProtocolDecodingException {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/ACE.java

            final String str;
    
            final StringBuffer sb = new StringBuffer();
            sb.append(isAllow() ? "Allow " : "Deny  ");
            appendCol(sb, sid.toDisplayString(), 25);
            sb.append(" 0x").append(Hexdump.toHexString(access, 8)).append(' ');
            sb.append(isInherited() ? "Inherited " : "Direct    ");
            appendCol(sb, getApplyToText(), 34);
            return sb.toString();
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top