File: examples/ipv6.js

Recommend this page to a friend!
  Classes of Jason Gerfen   Node nmap   examples/ipv6.js   Download  
File: examples/ipv6.js
Role: Example script
Content type: text/plain
Description: Example script
Class: Node nmap
Scan a network for computers using nmap
Author: By
Last change: Update of examples/ipv6.js
Date: 2 years ago
Size: 377 bytes
 

Contents

Class file image Download
/*! * libnmap * Copyright(c) 2013-2019 Jason Gerfen <jason.gerfen@gmail.com> * License: MIT */ 'use strict' const nmap = require('../'); const opts = { range: ['scanme.nmap.org', '2001:db8::/128'] }; nmap.scan(opts, function(err, report) { if (err) throw new Error(err); for (let item in report) { console.log(JSON.stringify(report[item], null, 2)); } });