mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
97 lines
2.0 KiB
HTML
97 lines
2.0 KiB
HTML
{%- set PACKAGESTS = salt['pillar.get']('static:fleet_packages-timestamp:', 'N/A') -%}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Security Onion - Hybrid Hunter</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
|
|
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: #2a2a2a;
|
|
|
|
}
|
|
a {
|
|
color: #f2f2f2;
|
|
text-align: left;
|
|
padding: 0px;
|
|
}
|
|
|
|
.center-content {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Style the top navigation bar */
|
|
.topnav {
|
|
overflow: hidden;
|
|
background-color: #333;
|
|
width: 1080px;
|
|
display: flex;
|
|
align-content: center;
|
|
}
|
|
|
|
/* Style the topnav links */
|
|
.topnav a {
|
|
margin: auto;
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Change color on hover */
|
|
.topnav a:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
/* Style the content */
|
|
.content {
|
|
background-color: #2a2a2a;
|
|
padding: 10px;
|
|
padding-top: 20px;
|
|
padding-left: 60px;
|
|
color: #E3DBCC;
|
|
width: 1080px;
|
|
}
|
|
|
|
/* Style the footer */
|
|
.footer {
|
|
background-color: #2a2a2a;
|
|
padding: 60px;
|
|
color: #E3DBCC;
|
|
width: 1080px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="center-content">
|
|
<div class="topnav center-content">
|
|
<a href="/fleet/" target="_blank">Fleet</a>
|
|
<a href="https://github.com/Security-Onion-Solutions/securityonion-saltstack/wiki/Configuring-Osquery-with-Security-Onion" target="_blank">Osquery/Fleet Docs</a>
|
|
<a href="https://www.securityonionsolutions.com" target="_blank">Security Onion Solutions</a>
|
|
</div>
|
|
|
|
<div class="content center-content">
|
|
<p>
|
|
<div style="text-align: center;">
|
|
<h1>Security Onion - Dedicated Fleet Node</h1>
|
|
</div>
|
|
<br/>
|
|
<br/>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|