Socket
Socket
Sign inDemoInstall

rbltracker

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rbltracker

A Node library for communicating with the RBLTracker REST API


Version published
Weekly downloads
3
Maintainers
1
Install size
3.71 MB
Created
Weekly downloads
 

Readme

Source

Sign up for a RBLTracker account and visit our developer site for even more details.

Node.js Client Library

The official Node.js binding for your RBLTracker service.

Prerequisites

Before using this library, you must have:

Installation

npm install rbltracker

Quickstart

Get a list of hosts on your account

var client = require('rbltracker')('Your Account SID', 'Your Auth Token');

client.hosts.get({ page_size: 10 }).then(data => {

    data.data.forEach(function(host)
    {
        console.log("Host: " + host.host + ", Name: " + host.name);
    });

}).catch(err => {

    console.log(err);
});

Documentation

Full API documentation is available from the RBLTracker developer site.

Release History

v1.1.0

  • updated to the use the new API endpoint URL
  • added support for Monitoring Profiles, moving away from RBL Profiles
  • added support for the ACLs endpoint to pull the list of DNS servers used for checks

v1.0.1

  • updated to support the RBLTracker API v3.6
  • added manual RBL check support

v1.0.0

  • initial release

Keywords

FAQs

Last updated on 29 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc