Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for 0_07 (0.06 sec)

  1. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

                b[off] = 0x01;
                b[off + 1] = 0x02;
                b[off + 2] = 0x03;
                b[off + 3] = 0x04;
                b[off + 4] = 0x05;
                b[off + 5] = 0x06;
                b[off + 6] = 0x07;
                b[off + 7] = 0x08;
                return 8;
            }).when(raf).read(any(byte[].class), anyInt(), eq(8));
            assertEquals(0x0102030405060708L, raf.readLong());
    
            // float 1.0f -> 0x3F800000
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

         * This operation obtains a handle to a specific domain.
         */
        public static class SamrOpenDomain extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x07;
            }
    
            /** The return value of the operation */
            public int retval;
            /** The SAM server handle */
            public rpc.policy_handle handle;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

         * This operation obtains a handle to a specific domain.
         */
        public static class SamrOpenDomain extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x07;
            }
    
            /** The return value of the operation */
            public int retval;
            /** The SAM server handle */
            public rpc.policy_handle handle;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

            List<AvPair> originalPairs = new LinkedList<>();
            originalPairs.add(new AvFlags(0x12345678));
            originalPairs.add(new AvTimestamp(new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 }));
            originalPairs.add(new AvTargetName("TESTNAME".getBytes()));
            originalPairs.add(new AvSingleHost(new byte[] { 0x11, 0x22, 0x33, 0x44 }));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

        /**
         * LSA query information policy message.
         */
        public static class LsarQueryInformationPolicy extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x07;
            }
    
            /** Return value from the RPC call. */
            public int retval;
            /** Policy handle for the query. */
            public rpc.policy_handle handle;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

     */
    @DisplayName("Type2Message Comprehensive Tests")
    class Type2MessageTest {
    
        private static final byte[] TEST_CHALLENGE = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 };
        private static final String TEST_TARGET = "TEST_TARGET";
        private static final String TEST_DOMAIN = "TEST_DOMAIN";
        private static final String TEST_HOSTNAME = "TEST_HOSTNAME";
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                samr.SamrOpenDomain message = new samr.SamrOpenDomain(mockPolicyHandle, 123, mockSidT, mockPolicyHandle);
    
                // Then: Should have correct values
                assertEquals(0x07, message.getOpnum());
                assertEquals(mockPolicyHandle, message.handle);
                assertEquals(123, message.access_mask);
                assertEquals(mockSidT, message.sid);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

        /**
         * LSA query information policy message.
         */
        public static class LsarQueryInformationPolicy extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x07;
            }
    
            /** Return value from the RPC call. */
            public int retval;
            /** Policy handle for the query. */
            public rpc.policy_handle handle;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * SMB command to delete a file.
         */
        public static final byte SMB_COM_DELETE = (byte) 0x06;
    
        /**
         * SMB command to rename a file.
         */
        public static final byte SMB_COM_RENAME = (byte) 0x07;
    
        /**
         * SMB command to query file information.
         */
        public static final byte SMB_COM_QUERY_INFORMATION = (byte) 0x08;
    
        /**
         * SMB command to set file information.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            assertEquals(mockHandle, queryInfoPolicy.handle);
            assertEquals(1, queryInfoPolicy.level);
            assertEquals(mockInfo, queryInfoPolicy.info);
            assertEquals(0x07, queryInfoPolicy.getOpnum());
        }
    
        @Test
        void testLsarQueryInformationPolicyEncodeIn() throws NdrException {
            rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
Back to top