use super::html_escape; pub(super) fn appendix(session_id: &str) -> String { format!( r##"

5. Appendix

Severity Definitions

CriticalVulnerabilities that can be exploited remotely without authentication to execute arbitrary code, exfiltrate sensitive data, or fully compromise the system.
HighVulnerabilities that allow significant unauthorized access or data exposure, typically requiring minimal user interaction or privileges.
MediumVulnerabilities that may lead to limited data exposure or require specific conditions to exploit, but still represent meaningful risk.
LowMinor issues with limited direct impact. May contribute to broader attack chains or indicate defense-in-depth weaknesses.
InfoObservations and best-practice recommendations that do not represent direct security vulnerabilities.

Disclaimer

This report was generated by an automated AI-powered penetration testing engine. While the system employs advanced techniques to identify vulnerabilities, no automated assessment can guarantee complete coverage. The results should be reviewed by qualified security professionals and validated in the context of the target application's threat model. Findings are point-in-time observations and may change as the application evolves.

"##, session_id = html_escape(session_id), ) }