Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for workstationOffset (0.25 sec)

  1. src/main/java/jcifs/ntlmssp/Type3Message.java

            final int workstationOffset = readULong(material, pos + 4);
            pos += 8;
    
            boolean end = false;
            int flags;
            String charset;
            if (lmResponseOffset < pos + 12 || ntResponseOffset < pos + 12 || domainOffset < pos + 12 || userOffset < pos + 12
                    || workstationOffset < pos + 12) {
                // no room for SK/Flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            final byte[] workstation = readSecurityBuffer(material, 44);
            final int workstationOffset = readULong(material, 48);
            int flags;
            String charset;
            byte[] _sessionKey = null;
            if (lmResponseOffset == 52 || ntResponseOffset == 52 || domainOffset == 52 || userOffset == 52 || workstationOffset == 52) {
                flags = NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_OEM;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
Back to top