Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

nodejs-projecthoneypot

API implementation for projecthoneypot.com service

projecthoneypot, api, malware, malicious, ip, suspicious, harvester, spammer

readme

Node Projecthoneypot

Use Node to check for malicious IPs in projecthoneypot

Install

npm install nodejs-projecthoneypot

How to use

const projecthoneypot = require('nodejs-projecthoneypot');

projecthoneypot.setApiKey("<YOUR API KEY>")

// Use checkIP(<IP>) to check that IP against projecthoneypot.org
// A promise will be returned
ip = "127.1.1.1";
projecthoneypot.checkIP(ip).then(function(result){ 
        console.log(result);
    }, function(err) {
        console.log(err);
});


/*
Output example
{ malicious: true,
  days_since_last: '1',
  threat_score: '1',
  types: [ 'Search Engine' ] }
*/