File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dongtai_protocol/report/handler Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ def save(self):
223223 iast_vul .req_params = self .http_query_string
224224 iast_vul .res_header = self .http_res_header
225225 iast_vul .res_body = self .http_res_body
226- iast_vul .full_stack = full_stack
226+ iast_vul .full_stack = json . dumps ( full_stack , ensure_ascii = False )
227227 iast_vul .top_stack = self .app_caller [index + 1 ]
228228 iast_vul .bottom_stack = self .app_caller [index + 2 ]
229229 iast_vul .counts = iast_vul .counts + 1
@@ -252,7 +252,7 @@ def save(self):
252252 first_time = timestamp ,
253253 latest_time = timestamp ,
254254 client_ip = self .client_ip ,
255- full_stack = full_stack ,
255+ full_stack = json . dumps ( full_stack , ensure_ascii = False ) ,
256256 top_stack = self .app_caller [index + 1 ],
257257 bottom_stack = self .app_caller [index + 2 ])
258258 log_vul_found (iast_vul .agent .user_id ,
You can’t perform that action at this time.
0 commit comments