Socket
Socket
Sign inDemoInstall

prowl-ip-reputation

Package Overview
Dependencies
9
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prowl-ip-reputation

Prowl is an API that allows you to send IP and in return obtain the reputation of the IP as well as indicators of attacks and indicators of compromise associated with the address. Lupovis monitors the web in real time and identifies malicious IP addresses


Version published
Weekly downloads
3
decreased by-25%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Prowl-API

Prowl is an API that allows you to send IP and in return obtain the reputation of the IP as well as indicators of attacks and indicators of compromise associated with the address. Lupovis monitors the web in real time and identifies malicious IP addresses for you.

Getting Started

To start using the Prowl API, you will need to follow these steps:

  1. Go to prowl page in the AWS marketplace - https://aws.amazon.com/marketplace/pp/prodview-cr64x4lse5uui

  2. Obtain the Prowl base url and API token to use for searching IP reputation

  3. Use this code snippet to do an IP reputation search

    import { ProwlClient } from 'prowl-ip-reputation'
    
    const client = new ProwlClient(<prowl-base-url>, <prowl-api-key>)
    
    client
       .getIpReputation("8.8.8.8")
       .then((response) => {
          console.log(response);
       })
       .catch((error) => {
          console.error(error);
       });
    

API References

These are the APIs available to use

  • getIpReputation(ipAddress)

    This method will give you the reputation information for a valid IP address.

Keywords

FAQs

Last updated on 02 Jan 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