We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8fd066 + f61a5bd commit cbcfefcCopy full SHA for cbcfefc
src/views/vuln/VulnDetail.vue
@@ -21,7 +21,7 @@
21
"
22
>
23
{{
24
- `${vulnObj.vul.url}的${vulnObj.vul.http_method}出现${
+ `${vulnObj.vul.url} ${vulnObj.vul.http_method}出现${
25
vulnObj.vul.type
26
}漏洞${
27
vulnObj.vul.taint_position
src/views/vuln/components/vulnCard.vue
@@ -193,7 +193,7 @@ export default class VulnList extends VueBase {
193
194
get itemTitle() {
195
let title = ''
196
- title = `${this.item.uri} 的 ${this.item.http_method} 出现 ${this.item.strategy__vul_name}`
+ title = `${this.item.uri} ${this.item.http_method} 出现 ${this.item.strategy__vul_name}`
197
if (this.item.taint_position) {
198
title += '位置:' + this.item.taint_position
199
}
0 commit comments