- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 320 for logon (0.14 seconds)
-
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.",Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0) -
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;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.3K bytes - Click Count (0) -
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.",Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0) -
src/main/java/jcifs/pac/PacConstants.java
/** * Buffer type for device claims information. */ int DEVICE_CLAIMS_TYPE = 0xF; /** * Flag for extra SIDs in logon information. */ int LOGON_EXTRA_SIDS = 0x20; /** * Flag for resource groups in logon information. */ int LOGON_RESOURCE_GROUPS = 0x200; /** * Kerberos salt type for MD5 checksums. */ int MD5_KRB_SALT = 17;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.4K bytes - Click Count (0) -
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); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.6K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbSessionInternalTest.java
} // Happy path: connect to logon share completes without exception @Test @DisplayName("treeConnectLogon performs call without exception") void treeConnectLogon_happy() throws SmbException { // doNothing by default session.treeConnectLogon(); verify(session, times(1)).treeConnectLogon(); } // Error propagation: connect to logon share throws SmbException @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.8K bytes - Click Count (0) -
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();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.5K bytes - Click Count (0) -
src/main/java/jcifs/pac/Pac.java
} throw new PACDecodingException("Invalid PAC signature"); } } /** * Returns the PAC logon information containing user authorization data. * @return the PAC logon information */ public PacLogonInfo getLogonInfo() { return this.logonInfo; } /** * Returns the PAC credential type information.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.3K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacConstantsTest.java
assertEquals(0xE, PacConstants.DEVICE_INFO_TYPE, "DEVICE_INFO_TYPE should be 0xE"); assertEquals(0xF, PacConstants.DEVICE_CLAIMS_TYPE, "DEVICE_CLAIMS_TYPE should be 0xF"); // Verify PAC logon info constants assertEquals(0x20, PacConstants.LOGON_EXTRA_SIDS, "LOGON_EXTRA_SIDS should be 0x20"); assertEquals(0x200, PacConstants.LOGON_RESOURCE_GROUPS, "LOGON_RESOURCE_GROUPS should be 0x200");
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/jcifs/pac/PacGroup.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac; import jcifs.smb.SID; /** * Represents a group membership entry in PAC logon information. * Contains a group SID and associated attributes. */ public class PacGroup { private final SID id; private final int attributes; /** * Constructs a PAC group entry.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0)