1.0.3 • Published 6 years ago

fortiguard v1.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

Node Fortiguard

Check in Node for malicious IPs and domains in fortiguard

Install

npm install fortiguard

How to use

const fortiguard = require('fortiguard');


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

domain = "bandroxoma.com"
fortiguard.checkDomain(domain).then(function(result){ 
        console.log(result);
    }, function(err) {
        console.log(err);
});


/*
Output examples
{ isBlacklisted: true, title: 'Malicious Websites' }
{ isBlacklisted: false, title: 'Not malicious' }
*/
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago