Skip to content

Commit

Permalink
Fix pentest blogpost
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolitor-stud-tu committed Apr 15, 2024
1 parent 414c67f commit bffb7d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions content/post/00011-security-audit-1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ date: 2024-04-15
resources:
- src: "pentest_1.pdf"
title: "Monal IM penetration test report 2024 1.0"
params:
icon: pdf

tags: []
author: "Thilo Molitor"
Expand All @@ -14,6 +12,4 @@ author: "Thilo Molitor"
<a href="https://www.radicallyopensecurity.com/">Radically Open Security (ROS)</a> kindly performed a security audit of some parts of Monal.
Specifically they audited the usage of our XML query language and the implementations of <a href="https://xmpp.org/extensions/xep-0388.html">SASL2</a>, <a href="https://datatracker.ietf.org/doc/html/rfc5802">SCRAM</a> and <a href="https://xmpp.org/extensions/xep-0474.html">SSDP</a>.

The results in a nutshell: *no security issues found*, read the full report here: {{< pdfLink "pentest_1.pdf" "This Pentest Report" >}}.


The results in a nutshell: *no security issues found*, read the full report here: {{< pdfLink "pentest_1.pdf" >}}.
2 changes: 1 addition & 1 deletion layouts/shortcodes/pdfLink.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<a href="{{ $pdf.RelPermalink }}">{{ $title | safeHTML }}</a>
{{ else }}
{{ $pdf := $.Page.Resources.GetMatch (.Get 0) }}
{{ $title := cond (not (.Get 0)) $pdf.Title (.Get 0) }}
{{ $title := cond (not (.Get 1)) $pdf.Title (.Get 1) }}
<a href="{{ $pdf.RelPermalink }}">{{ $title | safeHTML }}</a>
{{ end }}

0 comments on commit bffb7d2

Please sign in to comment.