@projectdiscoveryio/interactsh
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

interactsh-node-module is a NODE package of a GO based tool Interactsh.

Interactsh Node Module

Installation

Using npm: npm install @projectdiscovery/interactsh

Or using yarn: yarn add @projectdiscovery

Usage

import * as interactsh from "@projectdiscovery/interactsh"

or

import { register, pollInteractions, deRegister } from "@projectdiscovery/interactsh"

Example

register().then(regData => {
    // Poll for interactions.
    setInterval(() => {
        pollInteractions(regData).then(poll => {
            console.log(poll)
        }).catch(e => console.log(e));
    }, 2000);
    // Deregister the instance when finished.
    setTimeout(() => {
        deRegister(regData).then(d => {
            console.log(d)
        })
    }, 15000);
})

/@projectdiscoveryio/interactsh/

    Package Sidebar

    Install

    npm i @projectdiscoveryio/interactsh

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Unpacked Size

    16 kB

    Total Files

    11

    Last publish

    Collaborators

    • jessekellypd
    • pankaj_pd
    • projectdiscovery_io