- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 882 for saml (2.88 sec)
-
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenDomain.java
/** * MSRPC implementation for opening a domain handle. * This class provides functionality to open a handle to a SAM domain * using the SAMR RPC interface. */ public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { /** * Creates a new request to open a domain handle. * * @param handle the SAM policy handle * @param access the desired access rights * @param sid the security identifier of the domain
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/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
* within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain * @param acct_flags account flags to filter the enumeration * @param sam the SAM array to store the enumeration results */
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/jcifs/smb1/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java
* within a SAM domain using the SAMR RPC interface. */ public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain { /** * Creates a new request to enumerate aliases in a domain. * * @param domainHandle the handle to the SAM domain * @param acct_flags account flags to filter the enumeration * @param sam the SAM array to store the enumeration results */
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/test/java/jcifs/dcerpc/msrpc/samrTest.java
assertEquals(4, samr.ACB_PWNOTREQ); assertEquals(8, samr.ACB_TEMPDUP); assertEquals(16, samr.ACB_NORMAL); assertEquals(32, samr.ACB_MNS); assertEquals(64, samr.ACB_DOMTRUST); assertEquals(128, samr.ACB_WSTRUST); assertEquals(256, samr.ACB_SVRTRUST); assertEquals(512, samr.ACB_PWNOEXP); assertEquals(1024, samr.ACB_AUTOLOCK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrCloseHandle.java
package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.rpc; /** * MS-RPC SAMR close handle operation. * * This class implements the SAMR CloseHandle operation for releasing * Security Account Manager (SAM) handles. */ public class MsrpcSamrCloseHandle extends samr.SamrCloseHandle { /** * Creates a new request to close a SAM handle. * * @param policyHandle the policy handle to close */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrConnect4.java
package jcifs.dcerpc.msrpc; /** * MSRPC implementation for connecting to the SAM service (version 4). * This class provides functionality to establish a connection to the * Security Account Manager (SAM) database using the SAMR RPC interface version 4. */ public class MsrpcSamrConnect4 extends samr.SamrConnect4 { /** * Creates a new request to connect to the SAM service. * * @param server the server name to connect to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2.java
package jcifs.smb1.dcerpc.msrpc; /** * MSRPC implementation for connecting to the SAM service. * This class provides functionality to establish a connection to the * Security Account Manager (SAM) database using the SAMR RPC interface. */ public class MsrpcSamrConnect2 extends samr.SamrConnect2 { /** * Creates a new request to connect to the SAM service. * * @param server the server name to connect to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcEnumerateAliasesInDomainTest.java
// When MsrpcEnumerateAliasesInDomain msrpc = new MsrpcEnumerateAliasesInDomain(mockDomainHandle, acctFlags, mockSamArray); // Then // Verify that the 'sam' field is set correctly assertEquals(mockSamArray, msrpc.sam, "The 'sam' field should be initialized with the provided SamrSamArray."); // Verify that the 'ptype' field is set to 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
SamrDomainHandle domainHandle = null; final samr.SamrSamArray sam = new samr.SamrSamArray(); MsrpcEnumerateAliasesInDomain rpc; synchronized (sid_cache) { try { handle = DcerpcHandle.getHandle("ncacn_np:" + authorityServerName + "[\\PIPE\\samr]", auth); policyHandle = new SamrPolicyHandle(handle, authorityServerName, 0x02000000);
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
synchronized (this.sidCache) { try (DcerpcHandle handle = DcerpcHandle.getHandle("ncacn_np:" + authorityServerName + "[\\PIPE\\samr]", tc)) { final samr.SamrSamArray sam = new samr.SamrSamArray(); try (SamrPolicyHandle policyHandle = new SamrPolicyHandle(handle, authorityServerName, 0x02000000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0)