Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -33,14 +33,23 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
const emit = defineEmits(['close']);
|
const emit = defineEmits(['close']);
|
||||||
const propsData = defineProps(['type', 'warningData']);
|
const propsData = defineProps(['type', 'warningData']);
|
||||||
const warningData = ref({});
|
const warningData = ref({
|
||||||
|
subject: '【漏洞排查预警】ApacheIgnite远程代码执行漏洞排查(CVE-2024-52577)',
|
||||||
|
importance: '高',
|
||||||
|
group: '可信开源代码库运营团队',
|
||||||
|
pulishTime: '2025-2-20',
|
||||||
|
overview: `## 一、概要
|
||||||
|
近日,安全中心发现Apache lgnite远程代码执行漏洞(CVE-2024-52577)。在 2.6.0<Apache Ignite< 2.17.0版本中,由于lgnite未能正确实施类序列化过滤器,攻击者能够利用恶意序列化对象绕过安全检查,从而在服务器端反序列化时触发任意代码的执行。经可信开源代码库运营团队评审漏洞技术定级2级/3级,若不满足利用条件可举证降为6级。请你按要求在XX时间内完成修复。
|
||||||
|
## 二、修复方案
|
||||||
|
升级Apache Ignite至安全版本:2.17.0`
|
||||||
|
});
|
||||||
const toolbarConfig = [
|
const toolbarConfig = [
|
||||||
['undo', 'redo'],
|
['undo', 'redo'],
|
||||||
['h1', 'h2', 'bold', 'italic', 'strike', 'underline', 'color', 'font'],
|
['h1', 'h2', 'bold', 'italic', 'strike', 'underline', 'color', 'font'],
|
||||||
['ul', 'ol', 'checklist', 'code', 'link', 'image', 'table'],
|
['ul', 'ol', 'checklist', 'code', 'link', 'image', 'table'],
|
||||||
];
|
];
|
||||||
const mode = ref('readonly');
|
const mode = ref('readonly');
|
||||||
warningData.value = JSON.parse(propsData.warningData.alertMsg ?? '{}');
|
// warningData.value = JSON.parse(propsData.warningData.alertMsg ?? '{}');
|
||||||
const confirm = () => {
|
const confirm = () => {
|
||||||
emit('close');
|
emit('close');
|
||||||
};
|
};
|
||||||
@@ -78,7 +87,7 @@ const handleModeChange = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.warning-text {
|
.warning-text {
|
||||||
padding: 20px;
|
padding: 20px 20px 0;
|
||||||
background: #F6F6F8;
|
background: #F6F6F8;
|
||||||
color: initial;
|
color: initial;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user