Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for workstation (0.32 sec)

  1. src/test/java/jcifs/tests/NtlmTest.java

            String user = "TESTUSER";
            String workstation = "TESTWS";
            Type3Message t3 = new Type3Message(flags, lmResponse, ntResponse, domain, user, workstation);
    
            Type3Message parsed = new Type3Message(t3.toByteArray());
    
            assertEquals(domain, parsed.getDomain());
            assertEquals(user, parsed.getUser());
            assertEquals(workstation, parsed.getWorkstation());
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 16 10:38:43 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        /**
         * Returns the supplied workstation name.
         * 
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation() {
            return suppliedWorkstation;
        }
    
        /**
         * Sets the supplied workstation name for this message.
         * 
         * @param suppliedWorkstation The supplied workstation for this message.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        }
    
        /**
         * Returns the workstation from which authentication is being performed.
         *
         * @return A <code>String</code> containing the workstation.
         */
        public String getWorkstation() {
            return workstation;
        }
    
        /**
         * Sets the workstation for this message.
         *
         * @param workstation The workstation.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Indicates whether the OEM-formatted domain name in which the
         * client workstation has membership is supplied in the Type-1 message.
         * This is used in the negotation of local authentication.
         */
        public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000;
    
        /**
         * Indicates whether the OEM-formatted workstation name is supplied
         * in the Type-1 message. This is used in the negotiation of local
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/DosError.java

            "The pipe is being closed.",
            "No process is on the other end of the pipe.",
            "More data is available.",
            "This user account has expired.",
            "The user is not allowed to log on from this workstation.",
            "The user is not allowed to log on at this time.",
            "The password of this user has expired.",
        };
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmContext.java

            };
        }
    
    
        @Override
        public String toString () {
            String ret = "NtlmContext[auth=" + this.auth + ",ntlmsspFlags=0x" + Hexdump.toHexString(this.ntlmsspFlags, 8) + ",workstation="
                    + this.workstation + ",isEstablished=" + this.isEstablished + ",state=" + this.state + ",serverChallenge=";
            if ( this.serverChallenge == null ) {
                ret += "null";
            }
            else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 15.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type1Message.java

        }
    
    
        /**
         * Returns the supplied workstation name.
         * 
         * @return A <code>String</code> containing the supplied workstation name.
         */
        public String getSuppliedWorkstation () {
            return this.suppliedWorkstation;
        }
    
    
        /**
         * Sets the supplied workstation name for this message.
         * 
         * @param suppliedWorkstation
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 02 12:55:08 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    		ACB_MNS                    = 0x00000020, /* 1 = MNS logon user account */
    		ACB_DOMTRUST               = 0x00000040, /* 1 = Interdomain trust account */
    		ACB_WSTRUST                = 0x00000080, /* 1 = Workstation trust account */
    		ACB_SVRTRUST               = 0x00000100, /* 1 = Server trust account */
    		ACB_PWNOEXP                = 0x00000200, /* 1 = User password does not expire */
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ntlmssp/Type3Message.java

        }
    
    
        /**
         * Returns the workstation from which authentication is being performed.
         *
         * @return A <code>String</code> containing the workstation.
         */
        public String getWorkstation () {
            return this.workstation;
        }
    
    
        /**
         * Sets the workstation for this message.
         *
         * @param workstation
         *            The workstation.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                    NtlmFlags.NTLMSSP_NEGOTIATE_KEY_EXCH;
            }
            this.workstation = Type1Message.getDefaultWorkstation();
            log = LogStream.getInstance();
        }
    
        public String toString() {
            String ret = "NtlmContext[auth=" + auth +
                ",ntlmsspFlags=0x" + Hexdump.toHexString(ntlmsspFlags, 8) +
                ",workstation=" + workstation +
                ",isEstablished=" + isEstablished +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.9K bytes
    - Viewed (0)
Back to top