Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SendNTLMTargetName (0.16 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            this.requireSecureNegotiate = Config.getBoolean(p, "jcifs.smb.client.requireSecureNegotiate", true);
            this.sendNTLMTargetName = Config.getBoolean(p, "jcifs.smb.client.SendNTLMTargetName", true);
    
            this.lanmanCompatibility = Config.getInt(p, "jcifs.smb.lmCompatibility", 3);
            this.allowNTLMFallback = Config.getBoolean(p, "jcifs.smb.allowNTLMFallback", true);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected Set<String> disallowCompound;
        protected DialectVersion minVersion;
        protected DialectVersion maxVersion;
        protected boolean requireSecureNegotiate = true;
        protected boolean sendNTLMTargetName = true;
        private byte[] machineId;
        protected String guestUsername = "GUEST";
        protected String guestPassword = "";
        protected boolean allowGuestFallback = false;
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to enforce verifying SPNEGO mechanismListMIC
         */
        boolean isEnforceSpnegoIntegrity ();
    
    
        /**
         * Property <tt>jcifs.smb.client.SendNTLMTargetName</tt> (boolean, true)
         * 
         * @return whether to send an AvTargetName with the NTLM exchange
         */
        boolean isSendNTLMTargetName ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top