Create nmap.js

This commit is contained in:
Namhyeon Go 2021-12-09 18:02:33 +09:00 committed by GitHub
parent 0977f2a95c
commit 12bace0218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
lib/nmap.js Normal file
View File

@ -0,0 +1,14 @@
////////////////////////////////////////////////////////////////////////
// NMAP API
////////////////////////////////////////////////////////////////////////
var NMAPObject = function() {
this.binPath = "bin\\32bit\\nmap-7.92\\nmap.exe";
this.start = function() {
var cmd = [];
// .. todo ..
};
};
exports.NMAPObject = NMAPObject;