Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testInvalidSmb1HeaderSize (0.4 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/util/ServerResponseValidatorTest.java

            assertThrows(SmbException.class, () -> {
                validator.validateSmbHeader(0xDEADBEEF, 64, 0x00);
            });
        }
    
        @Test
        public void testInvalidSmb1HeaderSize() throws Exception {
            assertThrows(SmbException.class, () -> {
                validator.validateSmbHeader(0x424D53FF, 20, 0x00);
            });
        }
    
        @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top