diff --git a/src/views/vuln/VulnDetail.vue b/src/views/vuln/VulnDetail.vue
index 29e65994..bc7b9f19 100644
--- a/src/views/vuln/VulnDetail.vue
+++ b/src/views/vuln/VulnDetail.vue
@@ -151,6 +151,21 @@
:content="vulnObj.strategy.desc"
style="color: #38435a"
>
+
+
+
+
+ 字段:{{ vulnObj.vul.taint_position }}
+
+
+
+
+
+ 硬编码值:{{ vulnObj.vul.taint_value }}
+
+
+
+
数据流
@@ -1461,6 +1476,53 @@ tt {
color: #959fb4;
}
}
+
+.top-stack {
+ margin-top: 18px;
+ position: relative;
+ color: #9199a2;
+ &:before {
+ content: '';
+ width: 1px;
+ height: 20px;
+ background: #dee4ea;
+ position: absolute;
+ left: 5px;
+ top: 18px;
+ }
+
+ i {
+ color: #5491ef;
+ font-size: 12px;
+ vertical-align: top;
+ margin-right: 5px;
+ }
+
+ span {
+ width: calc(100% - 18px);
+ word-break: break-all;
+ display: inline-block;
+ vertical-align: top;
+ }
+}
+
+.bottom-stack {
+ margin-top: 18px;
+ color: #9199a2;
+ i {
+ color: #6ec79f;
+ font-size: 12px;
+ vertical-align: top;
+ margin-right: 5px;
+ }
+
+ span {
+ width: calc(100% - 18px);
+ word-break: break-all;
+ display: inline-block;
+ vertical-align: top;
+ }
+}