1.0.10 • Published 1 year ago

stnw v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year 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

1 year ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago