diff --git a/README.md b/README.md index 2a5c8004..ac85eef9 100755 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The system continuously scans the network for, **New devices**, **New connection - [Webhooks](https://github.com/jokob-sk/Pi.Alert/blob/main/docs/WEBHOOK_N8N.md) - [Home Assistant](https://github.com/jokob-sk/Pi.Alert/blob/main/docs/HOME_ASSISTANT.md) - [API endpoint](https://github.com/jokob-sk/Pi.Alert/blob/main/docs/API.md) - - [Plugin system](https://github.com/jokob-sk/Pi.Alert/tree/main/pialert/plugins) for custom script monitoring + - [Plugin system](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins) for custom script monitoring # 📥 Installation @@ -51,10 +51,10 @@ The system continuously scans the network for, **New devices**, **New connection - Theme Selection (blue, red, green, yellow, black, purple) and Light/Dark-Mode Switch - DB maintenance, Backup, Restore tools and CSV Export / Import - Simple login Support - - 🌟[Plugin system](https://github.com/jokob-sk/Pi.Alert/tree/main/pialert/plugins) + - 🌟[Plugin system](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins) - Create custom plugins with automatically generated settings and UI. - Monitor anything for changes - - Check the [instructions](https://github.com/jokob-sk/Pi.Alert/tree/main/pialert/plugins) carefully if you are up for a challenge! Current plugins include: + - Check the [instructions](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins) carefully if you are up for a challenge! Current plugins include: - Detecting Rogue DHCP servers via NMAP - Monitoring HTTP status changes of domains/URLs - Import devices from DHCP.leases files, a UniFi controller, or an SNMP enabled router diff --git a/docs/API.md b/docs/API.md index 0987ea49..cd13a241 100755 --- a/docs/API.md +++ b/docs/API.md @@ -25,7 +25,7 @@ You can access the following files: | `table_pholus_scan.json` | The latest state of the [pholus](https://github.com/jokob-sk/Pi.Alert/tree/main/pholus) (A multicast DNS and DNS Service Discovery Security Assessment Tool) scan results. | | `table_plugins_events.json` | The list of the unprocessed (pending) notification events (plugins_events DB table). | | `table_plugins_history.json` | The list of notification events history. | - | `table_plugins_objects.json` | The content of the plugins_objects table. Find more info on the [Plugin system here](https://github.com/jokob-sk/Pi.Alert/tree/main/pialert/plugins)| + | `table_plugins_objects.json` | The content of the plugins_objects table. Find more info on the [Plugin system here](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins)| | `language_strings.json` | The content of the language_strings table, which in turn is loaded from the plugins `config.json` definitions. | | `table_custom_endpoint.json` | A custom endpoint generated by the SQL query specified by the `API_CUSTOM_SQL` setting. | | `table_settings.json` | The content of the settings table. | diff --git a/front/php/templates/language/en_us.php b/front/php/templates/language/en_us.php index 36aa17a0..faaa3824 100755 --- a/front/php/templates/language/en_us.php +++ b/front/php/templates/language/en_us.php @@ -535,7 +535,7 @@ The arp-scan time itself depends on the number of IP addresses to check so set t 'TIMEZONE_name' => 'Time zone', 'TIMEZONE_description' => 'Time zone to display stats correctly. Find your time zone here.', 'ENABLE_PLUGINS_name' => 'Enable Plugins', -'ENABLE_PLUGINS_description' => 'Enables the plugins functionality. Loading plugins requires more hardware resources so you might want to disable them on low-powered system.', +'ENABLE_PLUGINS_description' => 'Enables the plugins functionality. Loading plugins requires more hardware resources so you might want to disable them on low-powered system.', 'PLUGINS_KEEP_HIST_name' => 'Plugins History', 'PLUGINS_KEEP_HIST_description' => 'How many entries of Plugins History scan results should be kept (globally, not device specific!).', 'PIALERT_WEB_PROTECTION_name' => 'Enable login', diff --git a/front/php/templates/language/es_es.php b/front/php/templates/language/es_es.php index 849562d9..478b1d3c 100755 --- a/front/php/templates/language/es_es.php +++ b/front/php/templates/language/es_es.php @@ -519,7 +519,7 @@ $lang['es_es'] = array( 'TIMEZONE_name' => 'Zona horaria', 'TIMEZONE_description' => 'La zona horaria para mostrar las estadísticas correctamente. Encuentra tu zona horaria aquí.', 'ENABLE_PLUGINS_name' => 'Habilitar complementos', -'ENABLE_PLUGINS_description' => 'Habilita la funcionalidad de los complementos. Cargar los complementos requiere más recursos de hardware, así que quizás quieras desactivarlo en hardware poco potente.', +'ENABLE_PLUGINS_description' => 'Habilita la funcionalidad de los complementos. Cargar los complementos requiere más recursos de hardware, así que quizás quieras desactivarlo en hardware poco potente.', 'PIALERT_WEB_PROTECTION_name' => 'Habilitar inicio de sesión', 'PIALERT_WEB_PROTECTION_description' => 'Cuando está habilitado, se muestra un cuadro de diálogo de inicio de sesión. Lea detenidamente a continuación si se le bloquea el acceso a su instancia.', 'PIALERT_WEB_PASSWORD_name' => 'Contraseña de inicio de sesión', diff --git a/front/plugins.php b/front/plugins.php index 3df5d682..b3b8ca41 100755 --- a/front/plugins.php +++ b/front/plugins.php @@ -14,7 +14,7 @@

- +

diff --git a/front/plugins/nmap_services/README.md b/front/plugins/nmap_services/README.md index 2f10e3e9..1f7b52f0 100755 --- a/front/plugins/nmap_services/README.md +++ b/front/plugins/nmap_services/README.md @@ -4,7 +4,7 @@ This plugin shows all Services discovered by regular NMAP scans. It's also a sam ### Usage -- The sql query from the `NMAPSRV_CMD` setting is used to create source data for this plugin. Column order and values need to adhere to the ones specified in the [documentation](https://github.com/jokob-sk/Pi.Alert/tree/main/pialert/plugins). +- The sql query from the `NMAPSRV_CMD` setting is used to create source data for this plugin. Column order and values need to adhere to the ones specified in the [documentation](https://github.com/jokob-sk/Pi.Alert/tree/main/front/plugins). ### Notes diff --git a/front/settings.php b/front/settings.php index 8e9464f4..f1a89680 100755 --- a/front/settings.php +++ b/front/settings.php @@ -109,7 +109,7 @@ while ($row = $result -> fetchArray (SQLITE3_ASSOC)) { $html = $html. '
- ' . lang('Gen_ReadDocs').'
+ ' . lang('Gen_ReadDocs').'
'; }