1.0.10 • Published 16 days ago

stnw v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
16 days ago

STNW - (Simple Typescript Nmap Wrapper)

A simple typescript nmap wrapper to perform basic nmap operations

Github repository

For any request please add an issue to the git repo. It'll be a pleasure :)

Before everything...

Some commands require root priviliges. So to bypass this follow this tutorial here

Installation

npm i stnw

Example usage

import NmapScanner from "nmap";

// Example usage:
const scanner = new NmapScanner("example.com");

scanner
  .quickScan()
  .then((result) => console.log("Quick Scan Result:\n", result));
scanner
  .scanPort(80)
  .then((result) => console.log("Port Scan Result:\n", result));
scanner.isHostUp().then((result) => console.log("Host Up Result:\n", result));
scanner.getOs().then((result) => console.log("OS Detection Result:\n", result));
scanner
  .scanServices()
  .then((result) => console.log("Service Scan Result:\n", result));
1.0.10

16 days ago

1.0.9

5 months ago

1.0.8

5 months ago

1.0.7

5 months ago

1.0.6

5 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago