- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for DcerpcHandle (0.17 sec)
-
src/main/java/jcifs/dcerpc/DcerpcHandle.java
private CIFSContext transportContext; /** * @param tc * */ public DcerpcHandle ( CIFSContext tc ) { this.transportContext = tc; this.binding = null; } /** * @param tc * @param binding */ public DcerpcHandle ( CIFSContext tc, DcerpcBinding binding ) { this.transportContext = tc; this.binding = binding;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jun 30 10:11:57 UTC 2019 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
} } void resolveSids0 ( String authorityServerName, CIFSContext tc, jcifs.SID[] sids ) throws CIFSException { synchronized ( this.sidCache ) { try ( DcerpcHandle handle = DcerpcHandle.getHandle("ncacn_np:" + authorityServerName + "[\\PIPE\\lsarpc]", tc) ) { String server = authorityServerName; int dot = server.indexOf('.');
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
/** * */ private SmbEnumerationUtil () {} private static DcerpcHandle getHandle ( CIFSContext ctx, SmbResourceLocator loc, Address address, String ep ) throws MalformedURLException, DcerpcException { return DcerpcHandle.getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", loc.getServer(), ep, address.getHostAddress()), ctx); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
} } } @Test public void testBindingAddress () throws DcerpcException, MalformedURLException, CIFSException, IOException { try ( DcerpcHandle h = DcerpcHandle .getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", "testing", "\\pipe\\srvsvc", "1.2.3.4"), getContext()) ) { assertEquals("testing", h.getServer());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} return drs; } // FileEntry[] getDfsRoots(String domainName, NtlmPasswordAuthentication auth) throws IOException { // MsrpcDfsRootEnum rpc; // DcerpcHandle handle = null; // // /* Procedure: // * Lookup a DC in the target domain // * Ask the DC for a referral for the domain (e.g. "\example.com")
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0)