- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 224 for sids (1.13 sec)
-
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) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
[in] uint32_t access_mask, [in] uint32_t rid, [out] policy_handle *alias_handle); [op(0x21)] int SamrGetMembersInAlias([in] policy_handle *alias_handle, [out] LsarSidArray *sids); typedef [v1_enum] enum { SE_GROUP_MANDATORY = 0x00000001, SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002, SE_GROUP_ENABLED = 0x00000004, SE_GROUP_OWNER = 0x00000008,
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/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
assertNotNull(sidArray.sids); assertEquals(2, sidArray.sids.length); assertNotNull(sidArray.sids[0]); assertNotNull(sidArray.sids[1]); // Cannot verify decode on non-mock objects - they are created by decode // Just verify they were created assertNotNull(sidArray.sids[0]); assertNotNull(sidArray.sids[1]); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcGetMembersInAliasTest.java
// Then assertNotNull(msrpcGetMembersInAlias, "MsrpcGetMembersInAlias object should not be null"); assertEquals(mockSids, msrpcGetMembersInAlias.sids, "sids should be set correctly"); assertEquals(0, msrpcGetMembersInAlias.getPtype(), "ptype should be initialized to 0"); assertEquals(DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG, msrpcGetMembersInAlias.getFlags(),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacConstants.java
*/ int DEVICE_INFO_TYPE = 0xE; /** * 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; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/SidResolverTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
/** * SID type indicating a local group or alias. */ int SID_TYPE_ALIAS = 4; /** * SID type indicating a well-known group. */ int SID_TYPE_WKN_GRP = 5; /** * SID type indicating a deleted account. */ int SID_TYPE_DELETED = 6; /** * SID type indicating an invalid SID. */ int SID_TYPE_INVALID = 7; /**
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/dcerpc/msrpc/samr.idl
[in] uint32_t access_mask, [in] uint32_t rid, [out] policy_handle *alias_handle); [op(0x21)] int SamrGetMembersInAlias([in] policy_handle *alias_handle, [out] LsarSidArray *sids); typedef [v1_enum] enum { SE_GROUP_MANDATORY = 0x00000001, SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002, SE_GROUP_ENABLED = 0x00000004, SE_GROUP_OWNER = 0x00000008,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
SID sid = new SID(adminSidBytes, 0); assertArrayEquals(adminSidBytes, sid.toByteArray()); } /** * Test the equals method. * * @throws SmbException if the SID string is invalid */ @Test void testEquals() throws SmbException { SID sid1 = new SID(adminSidString); SID sid2 = new SID(adminSidBytes, 0); SID sid3 = new SID("S-1-1-0"); // Everyone
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
assertEquals(2, securityDescriptor.getAces().length); } @Test @DisplayName("Test decode with no SIDs and no DACL") void testDecodeWithNoSidsNoDacl() throws SMBProtocolDecodingException { // Prepare minimal buffer with no SIDs and no DACL prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, false, false, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0)