Osd IP Analyze IA
Advanced IP intelligence powered by AI. Analyze network ownership, infrastructure type and spam risk with clear technical explanations.
About Osd IP Analyze IA
Osd IP Analyze IA is an advanced IP intelligence tool built on top of osd/l4lhelpers. It provides geolocation, network ownership and AI-powered spam risk classification using modern DDD architecture.
Installation
composer require osd/l4lhelpers
Publish configuration
Publish the configuration file to customize persistence, spam analysis and rate limits.
php artisan vendor:publish --provider="Osd\L4lHelpers\L4lHelpersServiceProvider"
This will create config/l4lhelpers.php.
Edit this file to enable persistence, spam analysis and rate limits.
Database persistence (optional)
If IP persistence is enabled in the config file, run the migrations:
php artisan migrate
Basic usage
The package exposes a single application service to analyze IP addresses:
$lookup = app(\Osd\L4lHelpers\IP\Application\GetIpLookup::class);
$result = $lookup->execute('8.8.8.8');
Architecture overview
- • Domain — Pure business models and value objects
- • Application — Use cases and orchestration logic
- • Infrastructure — Persistence, external APIs and adapters
- • AI integration — Spam analysis via Groq + GPT models