- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for SIDs (0.32 sec)
-
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
} /** Number of SIDs in the array. */ public int count; /** Array of translated SIDs. */ public LsarTranslatedSid[] sids; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(this.count); _dst.enc_ndr_referent(this.sids, 1); if (this.sids != null) {
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/pac/PacLogonInfo.java
return this.groupSid; } /** * Returns an array of group SIDs the user belongs to. * @return the group SIDs array */ 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() {
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/smb/SIDCacheImplTest.java
// Provide empty arrays to satisfy code paths rpc.names = new lsarpc.LsarTransNameArray(); rpc.names.count = sids.length; rpc.names.names = new lsarpc.LsarTranslatedName[sids.length]; for (int i = 0; i < sids.length; i++) { rpc.names.names[i] = new lsarpc.LsarTranslatedName(); rpc.names.names[i].sid_type = (short) jcifs.SID.SID_TYPE_UNKNOWN;
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/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/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/smb1/dcerpc/msrpc/lsarpc.java
} /** Number of SIDs in the array. */ public int count; /** Array of translated SIDs. */ public LsarTranslatedSid[] sids; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(sids, 1); if (sids != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
*/ 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); } void resolveWeak() { if (this.origin_server != null) { try { resolve(this.origin_server, this.origin_ctx);
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/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)