A user script to check the reputation of an IP address using the AbuseIPDB API.
This script allows you to check the reputation of an IP address by querying the AbuseIPDB API. It adds a toolbar button to any webpage, which you can use to input an IP address and get its reputation score.
- Install a user script manager such as Tampermonkey or Greasemonkey in your browser.
- Create a new user script in your user script manager.
- Copy the content of
ReputationTool.jsand paste it into the new user script. - Save the script.
Replace YOUR_API_KEY in the script with your actual AbuseIPDB API key.
const API_KEY = 'YOUR_API_KEY';const ipAddressToCheck = '123.456.789.123';
checkIPReputation(ipAddressToCheck);If you would like to contribute to this project, please fork the repository and create a pull request with your changes.