welsonjs/lib/nmap.js
2021-12-09 18:02:33 +09:00

15 lines
341 B
JavaScript

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