mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
15 lines
341 B
JavaScript
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;
|