vulnerar/agent

There is no license information available for the latest version (v0.6) of this package.

Maintainers

Package info

github.com/vulnerar/agent

pkg:composer/vulnerar/agent

Statistics

Installs: 27

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.6 2026-03-22 19:13 UTC

This package is auto-updated.

Last update: 2026-03-22 19:13:49 UTC


README

Laravel Badge tests

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