- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 95 for sids (0.02 sec)
-
src/main/java/jcifs/pac/PacLogonInfo.java
*/ public SID[] getGroupSids() { return this.groupSids; } /** * Returns an array of resource group SIDs the user belongs to. * @return the resource group SIDs array */ public SID[] getResourceGroupSids() { return this.resourceGroupSids; } /** * Returns an array of extra SIDs associated with the user. * @return the extra SIDs array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
sidArray.num_sids = 2; sidArray.sids = new lsarpc.LsarSidPtr[2]; sidArray.sids[0] = new lsarpc.LsarSidPtr(); sidArray.sids[0].sid = new rpc.sid_t(); sidArray.sids[0].sid.revision = 1; sidArray.sids[0].sid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 }; sidArray.sids[0].sid.sub_authority_count = 1; sidArray.sids[0].sid.sub_authority = new int[] { 500 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
if (this.sids[_i] == null) { this.sids[_i] = new LsarSidPtr(); } this.sids[_i].decode(_src); } } } } /** SID name type: none. */ /** SID name type: none or unused. */ public static final int SID_NAME_USE_NONE = 0; /** SID name type: user. */ /** SID name type: user account. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
SIDCacheImpl cache = Mockito.spy(new SIDCacheImpl(ctx)); // Prepare SIDs, two need resolution, one already resolved SID s1 = sid("S-1-5-21-10-11-12-1001"); SID s2 = sid("S-1-5-21-10-11-12-1002"); SID s3 = sid("S-1-5-21-10-11-12-1003"); jcifs.SID[] arr = new jcifs.SID[] { s1, s2, s3 }; // First call should resolve two (offset=0,length=2) doAnswer(inv -> {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
* @param tc * Context to use * @throws IOException if there is an error resolving the SID */ public void resolve(final String authorityServerName, final CIFSContext tc) throws IOException { final SID[] sids = new SID[1]; sids[0] = this; tc.getSIDResolver().resolveSids(tc, authorityServerName, sids); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
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/main/java/jcifs/dcerpc/msrpc/samr.java
public rpc.policy_handle alias_handle; /** The array of SIDs that are members of the alias */ public lsarpc.LsarSidArray sids; /** * Constructs a SamrGetMembersInAlias request. * * @param alias_handle The alias handle * @param sids The array to receive member SIDs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public rpc.policy_handle alias_handle; /** The array of SIDs that are members of the alias */ public lsarpc.LsarSidArray sids; /** * Constructs a SamrGetMembersInAlias request. * * @param alias_handle The alias handle * @param sids The array to receive member SIDs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
if (sids[_i] == null) { sids[_i] = new LsarSidPtr(); } sids[_i].decode(_src); } } } } /** SID name type: none or unused. */ public static final int SID_NAME_USE_NONE = 0; /** SID name type: user account. */ public static final int SID_NAME_USER = 1; /** SID name type: domain group. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0)