abuseio/findcontact-ripe is a Laravel package for abuseio module for ip lookups in ripe..
It currently has 0 GitHub stars and 51 downloads on Packagist (latest version 1.0.2).
Install it with composer require abuseio/findcontact-ripe.
Discover more Laravel packages by abuseio
or browse all Laravel packages to compare alternatives.
Last updated
findcontact module for IP lookups using the Ripe Stat Api
composer require abuseio/findcontact-ripe
copy the extra/config/main.php to the config override directory of your environment (e.g. production)
cp vendor/abuseio/findcontact-ripe/extra/config/main.php config/production/main.php
cp vendor/abuseio/findcontact-ripe/extra/config/main.php config/development/main.php
add the following line to providers array in the file config/app.php:
'AbuseIO\FindContact\Ripe\RipeServiceProvider'
It is highly recommended to use an RIPEStat application id for the API requests, see RIPEStat rules of usage.
You can config it in $ABUSEIOPATH/vendor/abuseio/findcontact-ripe/config.
Replace the null value in 'appid' => null, with your application id, e.g.
<?php
return [
'findcontact-ripe' => [
// it is highly recommended to use an application id in production environments
// see https://stat.ripe.net/docs/data_api
'appid' => 'MyAppId,
'enabled' => true,
'auto_notify' => false,
],
];