Changed to clear previous results when starting port scan

This commit is contained in:
minetaro12 2024-09-07 21:21:04 +09:00
parent 1eaf237ba6
commit 30532a0e32
No known key found for this signature in database
GPG key ID: FE5146B6769ACE30

View file

@ -9,6 +9,8 @@ async function scanAddr() {
let begin = document.getElementById("begin").value;
let end = document.getElementById("end").value;
document.getElementById('foundPorts').innerHTML = "";
if (begin == "") {
begin = 1
}