- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 95 for sid (0.02 sec)
-
src/main/java/jcifs/smb/SIDCacheImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
} @Nested @DisplayName("SID Tests") class SidTests { @Test @DisplayName("Should encode SID correctly") void testSidTEncode() throws NdrException { // Given: A SID with test values rpc.sid_t sid = new rpc.sid_t(); sid.revision = (byte) 1; sid.sub_authority_count = (byte) 2;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/LsarSidArrayXTest.java
assertEquals(sidT1, lsarSidArrayX.sids[0].sid, "First SID should be unwrapped correctly"); assertEquals(sidT2, lsarSidArrayX.sids[1].sid, "Second SID should be unwrapped correctly"); } @Test void testConstructorWithJcifsSIDArrayDirectAssignment() { // Create mock SID objects SID mockSid1 = mock(SID.class); SID mockSid2 = mock(SID.class); SID[] sids = { mockSid1, mockSid2 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
return this.aces; } /** * Gets the owner group SID of this security descriptor. * * @return the security identifier of the owner group */ public final SID getOwnerGroupSid() { return this.ownerGroupSid; } /** * Gets the owner user SID of this security descriptor. * * @return the security identifier of the owner user */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
* "The .NET Developer's Guide to Windows Security" (which is also * available online). * <p> * Direct ACEs are evaluated first in order. The SID of the user performing * the operation and the desired access bits are compared to the SID * and access mask of each ACE. If the SID matches, the allow/deny flags * and access mask are considered. If the ACE is a "deny" * ACE and <i>any</i> of the desired access bits match bits in the access
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
*/ package jcifs.pac; import jcifs.smb.SID; /** * Represents a Security Identifier (SID) with associated attributes within a PAC structure. * This class encapsulates a SID and its attribute flags as used in Kerberos PAC data. */ public class PacSidAttributes { private final SID id; private final int attributes; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
if (responseData.getUrl().startsWith("smb:")) { final SID[] allowedSids = (SID[]) metaDataMap.get(SmbClient.SMB_ALLOWED_SID_ENTRIES); if (allowedSids != null) { for (final SID sid : allowedSids) { final String accountId = sambaHelper.getAccountId(sid); if (accountId != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/LsarSidArrayX.java
import jcifs.dcerpc.rpc.sid_t; import jcifs.smb.SID; class LsarSidArrayX extends lsarpc.LsarSidArray { LsarSidArrayX(final jcifs.SID[] sids) { this.num_sids = sids.length; this.sids = new lsarpc.LsarSidPtr[sids.length]; for (int si = 0; si < sids.length; si++) { this.sids[si] = new lsarpc.LsarSidPtr(); this.sids[si].sid = sids[si].unwrap(sid_t.class); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java
private final int sid; /** * Creates a new SMB1 find close request to close a search handle. * * @param config the CIFS configuration * @param sid the search identifier to close */ public SmbComFindClose2(final Configuration config, final int sid) { super(config, SMB_COM_FIND_CLOSE2); this.sid = sid; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0)