-
Notifications
You must be signed in to change notification settings - Fork 26
Description
I'm doing a windows into the domain operation, the process needs to create samr path, and found that the reported error.
the logs:
[T4:1] IPC$ Request [1] - cmd = 0xa2
[T4:1] NT Create AndX [1] name=\samr, flags=0x10, attr=0x0, allocSize=0
the code as below:
`package org.filesys.smb.dcerpc.server;
import org.filesys.smb.dcerpc.DCEPipeType;
/**
-
DCE Pipe Handler Class
-
Contains a list of the available DCE pipe handlers.
-
@author gkspencer
*/
public class DCEPipeHandler {// DCE/RPC pipe request handlers
private static DCEHandler[] _handlers = {
new SrvsvcDCEHandler(),
null, // samr
null, // winreg
new WkssvcDCEHandler(),
null, // NETLOGON
null, // lsarpc
null, // spoolss
null, // netdfs
null, // service control
null, // eventlog
null // netlogon1
};/**
It is meant to be unsupported samr and NETLOGON?not finished yet?