Skip to content

Commit 0e63aa4

Browse files
committed
malviz update for paper only
1 parent 09be84b commit 0e63aa4

File tree

5 files changed

+158
-88
lines changed

5 files changed

+158
-88
lines changed

MalViz/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,10 @@ <h4 class="w3-container"><b>Operations</b></h4>
260260
<input type="checkbox" id="streamCheck"
261261
>
262262
</p>
263+
<p><b>Underlay process</b>
264+
<input type="checkbox" id="processCheck"
265+
>
266+
</p>
263267
<p><b>Reference Types</b></p>
264268
<div class="w3-container w3-white" style="padding-right: 0">
265269
<div id="legend"></div>
@@ -408,6 +412,7 @@ <h4 class="w3-container"><b>Operations</b></h4>
408412
libEvent = 0;
409413
closeNav();
410414
document.getElementById("streamCheck").checked = false;
415+
document.getElementById("processCheck").checked = false;
411416
let data = d3.csvParse(e.target.result).map(d => {
412417
return {
413418
Timestamp: d['Time of Day'],
@@ -479,6 +484,7 @@ <h4 class="w3-container"><b>Operations</b></h4>
479484
document.getElementById("commonSelection").checked = false;
480485
document.getElementById("opSelection").checked = true;
481486
document.getElementById("streamCheck").checked = false;
487+
document.getElementById("processCheck").checked = false;
482488

483489
domainResult = [];
484490
let [data, domainData] = ProcessDataV2(original_data, domainInfo, domain);
@@ -551,6 +557,7 @@ <h4 class="w3-container"><b>Operations</b></h4>
551557

552558
// init("faran-7-vs-backdoor-9.CSV");
553559
init("Vung-Email-Flooder-Archis-Win7.CSV");
560+
// init("Cerber-win7.CSV");
554561

555562
var list = {
556563
"CloseFile": {"operation": "FileSystem", "index": 0},
@@ -672,6 +679,11 @@ <h4 class="w3-container"><b>Operations</b></h4>
672679
}
673680
} else return "#5d5d5d"
674681
}
682+
function isProcessThread(operation) {
683+
if (list[operation]) {
684+
return list[operation]["operation"]==="ProcessThread";
685+
} else return false;
686+
}
675687

676688
</script>
677689
</body>

0 commit comments

Comments
 (0)