Fix pdf
This commit is contained in:
parent
11c68e8155
commit
8933d72f95
|
@ -1 +1 @@
|
|||
[{"data": "<b style='color: yellow'>IDS: Malicious Activity was detected</b>", "timestamp": "1681456601"}, {"data": "<b style='color: red'>Malicious IP: 10.10.1.89</b>", "timestamp": "1681456601"}, {"data": "ssh", "timestamp": "1681460202"}]
|
||||
[{"data": "<b style='color: yellow'>IDS: Malicious Activity was detected</b>", "timestamp": "1681460777"}, {"data": "<b style='color: red'>Malicious IP: 10.10.1.89</b>", "timestamp": "1681460777"}]
|
|
@ -1 +1 @@
|
|||
[{"data": "141.89.221.182: start of attack", "timestamp": "1681456600"}, {"data": "141.89.221.182: command 0: ATTACK", "timestamp": "1681456600"}, {"data": "141.89.221.182: command 1: ATTACK", "timestamp": "1681456601"}, {"data": "141.89.221.182: Start of post-exploitation", "timestamp": "1681456601"}]
|
||||
[{"data": "46.114.180.29: start of attack", "timestamp": "1681460776"}, {"data": "46.114.180.29: command 0: ATTACK", "timestamp": "1681460776"}, {"data": "46.114.180.29: Start of post-exploitation", "timestamp": "1681460776"}]
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
1681456600
|
||||
1681460776
|
|
@ -1 +1 @@
|
|||
1681456598
|
||||
1681460774
|
|
@ -436,5 +436,5 @@ def custom_404(error):
|
|||
clear_session_full()
|
||||
|
||||
if __name__ == '__main__':
|
||||
# app.run(host='0.0.0.0', threaded=True, use_reloader=True, port=8088)
|
||||
app.run(host='185.78.255.231', threaded=True,use_reloader=True, port=443, ssl_context=('/etc/letsencrypt/live/network.kyudev.xyz/fullchain.pem', '/etc/letsencrypt/live/network.kyudev.xyz/privkey.pem'))
|
||||
app.run(host='0.0.0.0', threaded=True, use_reloader=True, port=8088)
|
||||
# app.run(host='185.78.255.231', threaded=True,use_reloader=True, port=443, ssl_context=('/etc/letsencrypt/live/network.kyudev.xyz/fullchain.pem', '/etc/letsencrypt/live/network.kyudev.xyz/privkey.pem'))
|
||||
|
|
|
@ -1626,7 +1626,7 @@
|
|||
if (start === -1 || document.getElementById('start_stop_sim_btn').innerHTML === 'Start Simulation') {
|
||||
document.getElementById("simstart").innerHTML = "0";
|
||||
} else {
|
||||
document.getElementById("simstart").innerHTML = to_min_s(end - start);
|
||||
document.getElementById("simstart").innerHTML = to_min_s(start, end);
|
||||
if (document.getElementById('start_stop_sim_btn').innerHTML === 'Start Simulation')
|
||||
{
|
||||
document.getElementById("simstart").setAttribute("data-start", "-1");
|
||||
|
@ -1639,7 +1639,7 @@
|
|||
if (start === -1 || document.getElementById('start_stop_sim_btn').innerHTML === 'Start Simulation') {
|
||||
document.getElementById("attackstart").innerHTML = "0";
|
||||
} else {
|
||||
document.getElementById("attackstart").innerHTML = to_min_s(end - start);
|
||||
document.getElementById("attackstart").innerHTML = to_min_s(start, end);
|
||||
}
|
||||
|
||||
fetch('/api/logs')
|
||||
|
|
Loading…
Reference in New Issue