Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for LOGON$ (0.03 sec)

  1. src/main/java/jcifs/smb1/smb1/NtStatus.java

                "There are currently no logon servers available to service the logon request.", "The specified user already exists.",
                "The specified user does not exist.", "The specified network password is not correct.",
                "Logon failure: unknown user name or bad password.", "Logon failure: user account restriction.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/PacLogonInfo.java

    import java.io.IOException;
    import java.util.Date;
    
    import jcifs.smb.SID;
    
    /**
     * Contains user logon information from a PAC (Privilege Attribute Certificate).
     * This class parses and provides access to user authentication and authorization
     * data from Kerberos tickets, including user identity, group memberships, and
     * logon metadata.
     */
    public class PacLogonInfo {
    
        private Date logonTime;
        private Date logoffTime;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtStatus.java

                "There are currently no logon servers available to service the logon request.", "The specified user already exists.",
                "The specified user does not exist.", "The specified network password is not correct.",
                "Logon failure: unknown user name or bad password.", "Logon failure: user account restriction.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/SmbTransportPoolTest.java

            @Test
            @DisplayName("Should perform logon with address")
            void testLogonWithAddress() throws CIFSException {
                // Given
                doNothing().when(transportPool).logon(context, address);
    
                // When
                transportPool.logon(context, address);
    
                // Then
                verify(transportPool).logon(context, address);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbSessionImplTest.java

            SmbSessionImpl session = spy(newSession());
            when(configuration.getLogonShare()).thenReturn("LOGON$");
    
            // Mock tree and ensure it is returned by getSmbTree
            SmbTreeImpl tree = mock(SmbTreeImpl.class);
            doReturn(tree).when(session).getSmbTree(eq("LOGON$"), isNull());
    
            // Act
            session.treeConnectLogon();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/pac/PacLogonInfoTest.java

    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    import jcifs.smb.SID;
    
    /**
     * Unit tests for PacLogonInfo class.
     * Tests the parsing and data extraction from PAC Logon Info structures.
     */
    class PacLogonInfoTest {
    
        private static final long TEST_FILETIME = 130640000000000000L;
        private static final String TEST_USERNAME = "testuser";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            when(tree.unwrap(SmbTreeInternal.class)).thenReturn(tree);
    
            doReturn(mockTransport).when(poolSpy).getSmbTransport(eq(ctx), eq(address), anyInt(), eq(false), anyBoolean());
    
            // When: Perform logon
            poolSpy.logon(ctx, address);
    
            // Then: Should connect to IPC$ share
            verify(tree).connectLogon(ctx);
        }
    
        @Test
        @DisplayName("Should sort addresses by fail count and failover")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

         * @param auth the authentication credentials
         * @throws SmbException if authentication fails or an SMB error occurs
         */
        public static void logon(final UniAddress dc, final NtlmPasswordAuthentication auth) throws SmbException {
            logon(dc, 0, auth);
        }
    
        /**
         * Authenticate arbitrary credentials against the specified domain controller using the specified port.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                throw new SmbException("Connection failed", e);
            }
        }
    
        @Override
        public void logon(final CIFSContext tf, final Address dc) throws SmbException {
            logon(tf, dc, 0);
        }
    
        @Override
        @Deprecated
        public void logon(final CIFSContext tf, final Address dc, final int port) throws SmbException {
            try (SmbTransportInternal smbTransport = tf.getTransportPool()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int ACB_TEMPDUP = 8;
        /** Account control bit flag: Normal user account */
        public static final int ACB_NORMAL = 16;
        /** Account control bit flag: MNS logon user account */
        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
Back to top