Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 13 of 13 for SECURITY_SHARE (0.07 seconds)

  1. src/test/java/jcifs/SmbConstantsTest.java

        void testProtocolConstants() {
            assertEquals(0x0000, SmbConstants.OPEN_FUNCTION_FAIL_IF_EXISTS);
            assertEquals(0x0020, SmbConstants.OPEN_FUNCTION_OVERWRITE_IF_EXISTS);
            assertEquals(0x00, SmbConstants.SECURITY_SHARE);
            assertEquals(0x01, SmbConstants.SECURITY_USER);
            assertEquals(4, SmbConstants.CMD_OFFSET);
            assertEquals(5, SmbConstants.ERROR_CODE_OFFSET);
            assertEquals(9, SmbConstants.FLAGS_OFFSET);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                } else {
                    throw new SmbException("Unsupported credential type " + (cred != null ? cred.getClass() : "NULL"));
                }
            } else if (server.security == SmbConstants.SECURITY_SHARE) {
                if (!(cred instanceof final NtlmPasswordAuthenticator a)) {
                    throw new SmbException("Unsupported credential type");
                }
                this.lmHash = new byte[0];
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                        ex = se;
                    }
    
                    if (!this.getConfig().isAllowGuestFallback() && response.isLoggedInAsGuest()
                            && negoResp.getServerData().security != SmbConstants.SECURITY_SHARE
                            && (!this.credentials.isGuest() && !this.credentials.isAnonymous())) {
                        throw new SmbAuthException(NtStatus.NT_STATUS_LOGON_FAILURE);
                    }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 68.9K bytes
    - Click Count (0)
Back to Top