| Package Data | |
|---|---|
| Maintainer Username: | AbuseIO |
| Maintainer Contact: | dev@abuse.io (AbuseIO Foundation) |
| Package Create Date: | 2016-08-11 |
| Package Last Update: | 2016-08-16 |
| Language: | PHP |
| License: | GPL-2.0 |
| Last Refreshed: | 2025-11-03 15:13:08 |
| Package Statistics | |
|---|---|
| Total Downloads: | 51 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
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,
],
];