| 382 | return 0; |
| 383 | } |
| 384 | DWORD WINAPI ThreadHTTPCrossProtocolRelay(LPVOID lpParam) { |
| 385 | THREAD_PARAMETERS* thread_params = (THREAD_PARAMETERS*)lpParam; |
| 386 | //DoHTTPCrossProtocolRelay(thread_params->remoteHTTPRelayServerIp, thread_params->remoteHTTPRelayServerPort); |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | void ExtractType3FromRpc(char* rpcPacket, int rpcPacketLen, char* ntlmType3, int* ntlmType3Len) { |
| 391 | int ntlmIndex = findNTLMBytes(rpcPacket, rpcPacketLen); |
nothing calls this directly
no outgoing calls
no test coverage detected