penretem/pages/legal.typ

35 lines
2.0 KiB
Typst

#import "../aux/placeholder.typ": placeholder
#let render(author) = {
// Reset counter
counter(page).update(n => n - 1)
block(height: 1fr)
show heading: it => {
v(1em)
par(text(it.body, fill: gray))
}
text(fill: silver,
[
#heading(level: 2, outlined:false, "Report Version & Authorship")
#table(
columns: (15%, 15%, 35%, 35%),
align: left,
stroke: gray,
[*Version*], [*Date*], [*Author*], [*Changes & Comment*],
[#placeholder("Draft")], [#placeholder("01.01.1970")], [#placeholder(author)], [#placeholder("Some")]
)
#heading(level: 2, outlined:false, "Classification")
This report and all associated materials are strictly confidential and may be communicated and/or distributed by the Client only with written approval of the author. All report data, including findings and recommendations, may be stored encrypted in the author's secure archive post-engagement, in compliance with applicable data protection regulations.
#heading(level: 2, outlined:false, "Legal Disclaimer")
This report constitutes the professional findings of a penetration test conducted under the scope and terms agreed upon by the client. All results reflect the state of security vulnerabilities as assessed during the engagement using standardized methodologies and tools. The findings presented are not guarantees of security or compliance; they represent identified weaknesses which may require remediation as by the professional impression of the author.
The client is responsible for interpreting these findings within their operational context and for implementing appropriate security measures. No liability is taken for actions which are based on this report. This assessment does not constitute security certification, and its results are valid only for the scope and timeframe of the engagement. Neither the contents of this document nor the expressions of the author in any form are legal advice.
])
pagebreak()
}