Update tmpl and parsing apache

This commit is contained in:
gbucchino
2023-09-14 16:30:48 +02:00
parent 2758b47f5b
commit 5757ec94ca
14 changed files with 127 additions and 82 deletions
+27 -17
View File
@@ -1,7 +1,8 @@
<h3 class="fs-3">Apache</h3>
{% if data['apache']['audit'] %}
{% for item in data['postfix']['vulnerabilities'] %}
<div class="accordion" id="accordionSysctl">
<div class="accordion" id="accordionApache">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#{{ data['postfix']['vulnerabilities'][item]['accordion-id'] }}" aria-expanded="true" aria-controls="{{ data['postfix']['vulnerabilities'][item]['accordion-id'] }}">
@@ -22,22 +23,31 @@
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['postfix']['vulnerabilities'][item]['flagFound'] }}
</pre></code>
</div>
</div>
</div> <!-- end .highlight -->
</div> <!-- end .bd-code-snippet -->
{% else %}
For resolving the issue, add this line in the <strong>{{ data['postfix']['filename'] }}</strong> vulnerabilities:
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{% for value in data['postfix']['vulnerabilities'][item]['recommand_value'] %}
{{ data['postfix']['vulnerabilities'][item]['flag'] }} = {{ value }}
{% endfor %}
</pre></code>
</div>
</div>
For resolving the issue, add this line in the <strong>{{ data['postfix']['filename'] }}</strong> vulnerabilities:
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{% for value in data['postfix']['vulnerabilities'][item]['recommand_value'] %}
{{ data['postfix']['vulnerabilities'][item]['flag'] }} = {{ value }}
{% endfor %}
</pre></code>
</div> <!-- end .highlight -->
</div> <!-- end .bd-code-snippet -->
{% endif %}
</div>
</div>
</div>
</div>
{% if 'id' in data['postfix']['vulnerabilities'][item] %}
linked with the <strong>{{ data['postfix']['vulnerabilities'][item]['id'] }}</strong>
{% endif %}
</div> <!-- end .accordion-body -->
</div> <!-- end .accordion-collapse -->
</div> <!-- end .accordion-item -->
</div> <!-- end .accordion -->
{% endfor %}
{% else %}
{{ data['apache']['msg'] }}
{% endif %}
+19 -13
View File
@@ -1,15 +1,16 @@
<h3 class="fs-3">Grub</h3>
<div class="accordion" id="accordionSysctl">
<div class="accordion" id="accordionGrub">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#{{ data['grub']['accordion-id'] }}" aria-expanded="true" aria-controls="{{ data['grub']['accordion-id'] }}">
<strong>Grub</strong>
{% if data['grub']['result'] == 'failed' %}
<strong>Grub</strong>
{% if data['grub']['result'] == 'failed' %}
<span class="text-bg-danger p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['grub']['result'] }}</span>
{% elif data['grub']['result'] == 'success' %}
{% elif data['grub']['result'] == 'success' %}
<span class="text-bg-success p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['grub']['result'] }}</span>
{% endif %}
{% endif %}
<span class="text-bg-primary p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['grub']['level'] }}</span>
</button>
</h2>
<div id="{{ data['grub']['accordion-id'] }}" class="accordion-collapse collapse" data-bs-parent="#accordionGrub">
@@ -22,8 +23,8 @@
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['grub']['current_value'] }}
</pre></code>
</div>
</div>
</div> <!-- end .highlight -->
</div> <!-- end .bd-code-snippet -->
{% else %}
For resolving the issue, change the permission of the file:
<div class="bd-example-snippet bd-code-snippet">
@@ -31,10 +32,15 @@
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['grub']['resolve'] }}
</pre></code>
</div>
</div>
</div> <!-- end highlight -->
</div> <!-- end bd-code-snippet -->
{% endif %}
</div>
</div>
</div>
</div>
{% if 'id' in data['grub'] %}
linked with the <strong>{{ data['grub']['id'] }}</strong>
{% endif %}
</div> <!-- end .accordion-body -->
</div> <!-- end .accordion-collapse -->
</div> <!-- end .accordion-item -->
</div> <!-- end .accordion -->
+23 -17
View File
@@ -1,29 +1,30 @@
<h3 class="fs-3">Profile</h3>
{% for item in data['profile']['vulnerabilities'] %}
<div class="accordion" id="accordionSysctl">
<div class="accordion" id="accordionProfile">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#{{ data['profile']['vulnerabilities'][item]['accordion-id'] }}" aria-expanded="true" aria-controls="{{ data['profile']['vulnerabilities'][item]['accordion-id'] }}">
<strong>{{ item }}</strong>
{% if data['profile']['vulnerabilities'][item]['result'] == 'failed' %}
{% if data['profile']['vulnerabilities'][item]['result'] == 'failed' %}
<span class="text-bg-danger p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['profile']['vulnerabilities'][item]['result'] }}</span>
{% elif data['profile']['vulnerabilities'][item]['result'] == 'success' %}
{% elif data['profile']['vulnerabilities'][item]['result'] == 'success' %}
<span class="text-bg-success p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['profile']['vulnerabilities'][item]['result'] }}</span>
{% endif %}
{% endif %}
<span class="text-bg-primary p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['profile']['vulnerabilities'][item]['level'] }}</span>
</button>
</h2>
<div id="{{ data['profile']['vulnerabilities'][item]['accordion-id'] }}" class="accordion-collapse collapse" data-bs-parent="#accordionProfile">
<div class="accordion-body">
{{ data['profile']['vulnerabilities'][item]['description'] }}. <br />
{% if data['profile']['vulnerabilities'][item]['result'] == 'success' %}
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['profile']['vulnerabilities'][item]['flagFound'] }}
</pre></code>
</div>
</div>
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['profile']['vulnerabilities'][item]['flagFound'] }}
</pre></code>
</div> <!-- end highlight -->
</div> <!-- end bd-code-snippet -->
{% else %}
For resolving the issue, add this line in the <strong>{{ data['filename'] }}</strong> profile:
<div class="bd-example-snippet bd-code-snippet">
@@ -31,11 +32,16 @@
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['profile']['vulnerabilities'][item]['flag'] }} = {{ data['profile']['vulnerabilities'][item]['recommand_value'] }}
</pre></code>
</div>
</div>
</div> <!-- end highlight -->
</div> <!-- end bd-code-snippet -->
{% endif %}
</div>
</div>
</div>
</div>
{% if 'id' in data['profile']['vulnerabilities']['item'] %}
Linked with the <strong>{{ data['profile']['vulnerabilities'][item]['id'] }}</strong>
{% endif %}
</div> <!-- end .accordion-body -->
</div> <!-- end .accordion-collapse -->
</div> <!-- end .accordion-item -->
</div> <!-- end .accordion -->
{% endfor %}
+17 -11
View File
@@ -1,16 +1,17 @@
<h3 class="fs-3">Postfix</h3>
{% for item in data['postfix']['vulnerabilities'] %}
<div class="accordion" id="accordionSysctl">
<div class="accordion" id="accordionPostfix">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#{{ data['postfix']['vulnerabilities'][item]['accordion-id'] }}" aria-expanded="true" aria-controls="{{ data['postfix']['vulnerabilities'][item]['accordion-id'] }}">
<strong>{{ item }}</strong>
{% if data['postfix']['vulnerabilities'][item]['result'] == 'failed' %}
<span class="text-bg-danger p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['postfix']['vulnerabilities'][item]['result'] }}</span>
<span class="text-bg-danger p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['postfix']['vulnerabilities'][item]['result'] }}</span>
{% elif data['postfix']['vulnerabilities'][item]['result'] == 'success' %}
<span class="text-bg-success p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['postfix']['vulnerabilities'][item]['result'] }}</span>
<span class="text-bg-success p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['postfix']['vulnerabilities'][item]['result'] }}</span>
{% endif %}
<span class="text-bg-primary p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['postfix']['vulnerabilities'][item]['level'] }}</span>
</button>
</h2>
<div id="{{ data['postfix']['vulnerabilities'][item]['accordion-id'] }}" class="accordion-collapse collapse" data-bs-parent="#accordionPostfix">
@@ -22,8 +23,8 @@
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['postfix']['vulnerabilities'][item]['flagFound'] }}
</pre></code>
</div>
</div>
</div> <!-- end .highlight -->
</div> <!-- end .bd-code-snippet -->
{% else %}
For resolving the issue, add this line in the <strong>{{ data['postfix']['filename'] }}</strong> vulnerabilities:
<div class="bd-example-snippet bd-code-snippet">
@@ -33,11 +34,16 @@
{{ data['postfix']['vulnerabilities'][item]['flag'] }} = {{ value }}
{% endfor %}
</pre></code>
</div>
</div>
</div> <!-- end .highlight -->
</div> <!-- end .bd-code-snippet -->
{% endif %}
</div>
</div>
</div>
</div>
{% if 'id' in data['postfix']['vulnerabilities'][item] %}
linked with the <strong>{{ data['postfix']['vulnerabilities'][item]['id'] }}</strong>
{% endif %}
</div> <!-- end .accordion-body -->
</div> <!-- end .accordion-collapse -->
</div> <!-- end .accordion-item -->
</div> <!-- end .accordion -->
{% endfor %}
+18 -12
View File
@@ -11,21 +11,27 @@
{% elif data['sysctl']['file']['sysctl'][item]['result']['result'] == 'success' %}
<span class="text-bg-success p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['sysctl']['file']['sysctl'][item]['result']['result'] }}</span>
{% endif %}
<span class="text-bg-primary p-1" style="padding-left:10pt;padding-right:10pt;margin-left:15pt;">{{ data['sysctl']['file']['sysctl'][item]['level'] }}</span>
</button>
</h2>
<div id="{{ data['sysctl']['file']['sysctl'][item]['accordion-id'] }}" class="accordion-collapse collapse" data-bs-parent="#accordionSysctl">
<div class="accordion-body">
{{ data['sysctl']['file']['sysctl'][item]['description'] }}. <br />
For resolving the issue, add this line in the <strong>{{ data['sysctl']['file']['filename'] }}</strong> file:
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['sysctl']['file']['sysctl'][item]['flag'] }} = {{ data['sysctl']['file']['sysctl'][item]['value'] }}
</pre></code>
</div>
</div>
</div>
</div>
</div>
</div>
For resolving the issue, add this line in the <strong>{{ data['sysctl']['file']['filename'] }}</strong> file:
<div class="bd-example-snippet bd-code-snippet">
<div class="highlight">
<pre tabindex="0" class="chroma"><code class="language-shell">
{{ data['sysctl']['file']['sysctl'][item]['flag'] }} = {{ data['sysctl']['file']['sysctl'][item]['value'] }}
</pre></code>
</div> <!-- end highlight -->
</div> <!-- end bd-code-snippet -->
{% if 'id' in data['sysctl']['file']['sysctl'][item] %}
Linked with the <strong>{{ data['sysctl']['file']['sysctl'][item]['id'] }}</strong>
{% endif %}
</div> <!-- end accordion-body -->
</div> <!-- end accordion-collapse -->
</div> <!-- end accordion-item -->
</div> <!-- end .accordion -->
{% endfor %}