Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for useRawNTLM (0.13 sec)

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

            this.lanmanCompatibility = Config.getInt(p, "jcifs.smb.lmCompatibility", 3);
            this.allowNTLMFallback = Config.getBoolean(p, "jcifs.smb.allowNTLMFallback", true);
            this.useRawNTLM = Config.getBoolean(p, "jcifs.smb.useRawNTLM", false);
    
            this.disableSpnegoIntegrity = Config.getBoolean(p, "jcifs.smb.client.disableSpnegoIntegrity", false);
    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 boolean useNTSmbs = true;
        protected boolean useLargeReadWrite = true;
        protected int lanmanCompatibility = 3;
        protected boolean allowNTLMFallback = true;
        protected boolean useRawNTLM = false;
        protected boolean disableSpnegoIntegrity = false;
        protected boolean enforceSpnegoIntegrity = true;
        protected boolean disablePlainTextPasswords = true;
    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/test/java/jcifs/tests/AllTests.java

            });
    
            MUTATIONS.put("rawNTLM", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.useRawNTLM", "true");
                    return cfg;
                }
            });
    
            MUTATIONS.put("noUnicode", new TestMutation() {
    
                @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to allow fallback from kerberos to NTLM
         */
        boolean isAllowNTLMFallback ();
    
    
        /**
         * Property <tt>jcifs.smb.useRawNTLM</tt> (boolean, default false)
         * 
         * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones
         * @since 2.1
         */
        boolean isUseRawNTLM ();
    
    
        /**
         * 
    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