
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
prowl-ip-reputation
Advanced tools
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
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.
To start using the Prowl API, you will need to follow these steps:
Go to prowl page in the AWS marketplace - https://aws.amazon.com/marketplace/pp/prodview-cr64x4lse5uui
Obtain the Prowl base url and API token to use for searching IP reputation
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);
});
These are the APIs available to use
getIpReputation(ipAddress)
This method will give you the reputation information for a valid IP address.
FAQs
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
We found that prowl-ip-reputation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.