1747346072

This commit is contained in:
2025-05-15 15:54:32 -06:00
parent b76757554c
commit 70deb3f3d5
4 changed files with 9 additions and 3 deletions
@@ -73,4 +73,10 @@ function runNmapScan() {
console.log(nmapcmd);
let postData = 'nmapcmd='+encodeURIComponent(nmapcmd);
doXhr('run_scan.php', 'POST', postData);
}
function pollFile(filePath) {
var poll = setInterval(function() {
doXhr(filePath);
}, 1000);
}