vulnerar / agent
There is no license information available for the latest version (v0.6) of this package.
v0.6
2026-03-22 19:13 UTC
Requires
- php: ^8.2
- laravel/framework: ^11.0|^12.0|^13.0
- react/event-loop: ^1.6.0
- react/http: ^1.11.0
- react/stream: ^1.4.0
Requires (Dev)
- orchestra/pest-plugin-testbench: ^3.2|^4.1
- orchestra/testbench: ^9.16|^10.9|^11.0
- pestphp/pest: ^3.8.5|^4.4
- pestphp/pest-plugin-laravel: ^3.2|^4.1
README
Installation
To install the agent, follow the steps below:
1. Install agent
composer require vulnerar/agent
2. Add token to your .env file
VULNERAR_TOKEN=<YOUR-TOKEN>
3. Run agent
The agent must be actively running to collect and send data to Vulnerar. Start the agent using the following Artisan command:
php artisan vulnerar:agent
The agent also uses Laravel's built-in task scheduling to collect periodic events in the background. Use your preferred way to run the task scheduler.
Run agent using supervisord (recommended)
We strongly recommend using supervisord to ensure the agent stays running in the background.
[program:vulnerar-agent]
process_name=%(program_name)s
command=php /var/www/your-app/artisan vulnerar:agent
directory=/var/www/your-app
autostart=true
autorestart=true
user=www-data
numprocs=1
redirect_stderr=true
stdout_logfile=/var/log/supervisor/vulnerar-agent.log