34 أسطر
294 B
JavaScript
34 أسطر
294 B
JavaScript
|
|
fetch("../alerts.json")
|
|
|
|
.then(res=>res.json())
|
|
|
|
.then(data=>{
|
|
|
|
|
|
let table=document.getElementById("alerts");
|
|
|
|
|
|
data.forEach(alert=>{
|
|
|
|
|
|
table.innerHTML +=
|
|
|
|
`
|
|
<tr>
|
|
|
|
<td>${alert.ip}</td>
|
|
|
|
<td>${alert.attack}</td>
|
|
|
|
<td>${alert.severity}</td>
|
|
|
|
</tr>
|
|
|
|
`
|
|
|
|
});
|
|
|
|
|
|
});
|