46 lines
2.5 KiB
PHP
46 lines
2.5 KiB
PHP
<?php
|
|
include 'auth.php';
|
|
$page_title='About - BastionGuard WebUI'; $active_page='about.php';
|
|
list($version,$build)=bg_version_build();
|
|
$year=date('Y');
|
|
$license=bg_about_license_text();
|
|
$dbinfo=bg_about_database_info();
|
|
include 'includes/header.php'; include 'includes/sidebar.php'; ?>
|
|
<div class="page-title"><div><h1>About</h1><p>Content aligned with <code>AboutPage.cpp</code>.</p></div></div>
|
|
<div class="card"><div class="card-body">
|
|
<ul class="nav nav-tabs" role="tablist"><li class="nav-item"><button class="nav-link active" data-bs-toggle="tab" data-bs-target="#tab-programma" type="button">Program</button></li><li class="nav-item"><button class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-terze" type="button">Third Parties</button></li><li class="nav-item"><button class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-licenza" type="button">License</button></li><li class="nav-item"><button class="nav-link" data-bs-toggle="tab" data-bs-target="#tab-db" type="button">Database</button></li></ul>
|
|
<div class="tab-content">
|
|
<div id="tab-programma" class="tab-pane fade show active text-center"><div class="my-3"><?= bg_logo_html('about-logo') ?></div><h3>BastionGuard™ <span class="fs-6 text-muted"><em><?= bg_e($version) ?> · build <?= bg_e($build) ?></em></span></h3><p class="copy-muted mt-3">© 2025-<?= bg_e($year) ?> Calogero Scarnà — BastionGuard™
|
|
BastionGuard was filed on 16/12/2025 with UIBM (Italy) under number 302025000196519.
|
|
The anti-ransomware and anti-phishing engine is an integral part of the security platform.
|
|
The server WebUI includes Samba folder scanning and server-side realtime protection.
|
|
Desktop-only USB and webcam/microphone features are intentionally excluded from this WebUI build.
|
|
Protection includes realtime scanning with inotify.
|
|
ClamAV® is a registered trademark of Cisco
|
|
Powered by CodeLinSoft</p><p><a href="https://www.codelinsoft.it" target="_blank" rel="noreferrer">Visit CodeLinSoft</a></p></div>
|
|
<div id="tab-terze" class="tab-pane fade"><pre class="code-box">This application uses:
|
|
- ClamAV Antivirus Engine
|
|
- GTK4 / gtkmm-4
|
|
- Image / libpng
|
|
- Rules / yara
|
|
- Udev
|
|
- Libudev
|
|
- Nginx
|
|
- php
|
|
- Sigc++
|
|
- Libsecret
|
|
- IDN2
|
|
- SQLITE3
|
|
- HYPERSCAN
|
|
- RE2
|
|
- Polkit
|
|
- Nlohmann_json
|
|
- DNSmasq / page blocking
|
|
- Anti-phishing server / libsoup
|
|
- Banking sandbox / Chromium sandbox (CEF)
|
|
- MISP bank list</pre></div>
|
|
<div id="tab-licenza" class="tab-pane fade"><?php bg_render_log($license); ?></div>
|
|
<div id="tab-db" class="tab-pane fade"><?php bg_render_log($dbinfo); ?></div>
|
|
</div>
|
|
</div></div>
|
|
<?php include 'includes/footer.php'; ?>
|