diff --git a/plugin/business/pangu-http/src/pangu_http.cpp b/plugin/business/pangu-http/src/pangu_http.cpp index 6194bce..a9f77e2 100644 --- a/plugin/business/pangu-http/src/pangu_http.cpp +++ b/plugin/business/pangu-http/src/pangu_http.cpp @@ -1854,6 +1854,16 @@ enum pangu_action http_scan(const struct tfe_http_session * session, enum tfe_ht if (events & EV_HTTP_REQ_HDR) { + const char *str_host = session->req->req_spec.host; + int str_host_length = (int) (strlen(session->req->req_spec.host)); + + scan_ret = Maat_full_scan_string(g_pangu_rt->maat, g_pangu_rt->scan_table_id[PXY_CTRL_HTTP_URL], + CHARSET_UTF8, str_host, str_host_length, result, NULL, MAX_SCAN_RESULT, &(ctx->scan_mid), ctx->thread_id); + if (scan_ret > 0) + { + hit_cnt += scan_ret; + } + const char * str_url = session->req->req_spec.url; int str_url_length = (int) (strlen(session->req->req_spec.url));