Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requireSecureNegotiate (0.21 sec)

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

            this.encryptionEnabled = Config.getBoolean(p, "jcifs.smb.client.encryptionEnabled", false);
            this.requireSecureNegotiate = Config.getBoolean(p, "jcifs.smb.client.requireSecureNegotiate", true);
            this.sendNTLMTargetName = Config.getBoolean(p, "jcifs.smb.client.SendNTLMTargetName", true);
    
    Registered: Sun Nov 03 00:10:13 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 boolean strictResourceLifecycle;
        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 = "";
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         */
        boolean isUseSMB2OnlyNegotiation ();
    
    
        /**
         * Enforce secure negotiation
         * 
         * Property <tt>jcifs.smb.client.requireSecureNegotiate</tt> (boolean, default true)
         * 
         * This does not provide any actual downgrade protection if SMB1 is allowed.
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top