welsonjs/lib/nmap.js

15 lines
341 B
JavaScript
Raw Normal View History

2022-02-28 10:33:54 +00:00
////////////////////////////////////////////////////////////////////////
// NMAP API
////////////////////////////////////////////////////////////////////////
var NMAPObject = function() {
this.binPath = "bin\\32bit\\nmap-7.92\\nmap.exe";
this.start = function() {
var cmd = [];
// .. todo ..
};
};
exports.NMAPObject = NMAPObject;