- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 40 for SIDs (0.05 sec)
-
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/test/java/jcifs/dcerpc/msrpc/LsarSidArrayXTest.java
// Verify num_sids assertEquals(2, lsarSidArrayX.num_sids, "num_sids should match the array length"); // Verify sids array and its contents assertNotNull(lsarSidArrayX.sids, "sids array should not be null"); assertEquals(2, lsarSidArrayX.sids.length, "sids array length should match");
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/SidResolver.java
*/ void resolveSids(CIFSContext tc, String authorityServerName, SID[] sids) throws CIFSException; /** * Resolve part of an array of SIDs using a cache and at most one MSRPC request. * * @param tc the CIFS context to use * @param authorityServerName the server to use for SID resolution * @param sids the array of SIDs to resolve
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K 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/dcerpc/msrpc/lsarpc.idl
} LsarPolicyInfo; typedef struct { sid_t *sid; } LsarSidPtr; typedef struct { [range(0,1000)] uint32_t num_sids; [size_is(num_sids)] LsarSidPtr *sids; } LsarSidArray; typedef enum { SID_NAME_USE_NONE = 0, /* NOTUSED */ SID_NAME_USER = 1, /* user */ SID_NAME_DOM_GRP = 2, /* domain group */ SID_NAME_DOMAIN = 3, /* domain: don't know what this is */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (3) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl
} LsarPolicyInfo; typedef struct { sid_t *sid; } LsarSidPtr; typedef struct { [range(0,1000)] uint32_t num_sids; [size_is(num_sids)] LsarSidPtr *sids; } LsarSidArray; typedef enum { SID_NAME_USE_NONE = 0, /* NOTUSED */ SID_NAME_USER = 1, /* user */ SID_NAME_DOM_GRP = 2, /* domain group */ SID_NAME_DOMAIN = 3, /* domain: don't know what this is */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K 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)