diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000..5f75525
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,68 @@
+# Policy On Reporting Vulnerabilities
+
+## How To Report A Vulnerability
+
+> [!IMPORTANT]
+> Only report vulnerabilities via the process outlined here.
+
+### Determining Criticality
+
+So you have found a bug or vulnerability in the software of one of our projects. In order to determine the type and recipient of your report, first consider this diagram:
+
+```mermaid
+ flowchart TD;
+ A[Reporting a vulnerability]-->B{Is it a serious vulnerability?};
+ classDef blue1 color:#022e1f,fill:#00b4d8;
+ B--YES-->X[Does the project have its own security policy?];
+ X--YES-->X2[Follow steps outlined in project's security policy.]:::blue1
+
+ X--NO-->Y2[Does the project have GitHub's vulnerability reporting feature activated?]
+ Y2--YES-->Y3[Report via GitHubs vulnerability reporting.]:::blue1
+ Y2--NO-->Y4[Does the project have a security incidents reports mail?]
+ Y4--YES-->Y5[Report via security incidents mail.]:::blue1
+ Y4--NO-->Y6[Does the project have a security officer?]
+ Y6--YES-->Y7[Report via security officer.]
+ Y6--NO-->Y8[Report via NeoNephos TAC Chairperson]
+
+ B--NO-->D[Report via GitHub issue in the respective project repository.]:::blue1 ;
+```
+
+For non-critical vulnerabilities it is best practice to open up a GitHub issue at the respective project repository.
+
+
+
+A vulnerability is not necessarily code and can also be intended to mean vulnerabilities in processes, tools, guidelines and more.
+When evaluating a vulnerability for criticality, consider the following:
+
+* Does the vulnerability expose users or developers of our projects to significant danger?
+* Does the vulnerability lead to leakage or loss of otherwise private data?
+* Does the vulnerability adversely affect the secrecy guarantees posited by our utilized cryptographic primitives?
+
+> [!NOTE]
+> Some examples of critical vulnerabilities:
+> * A function uses a low entrophy source of randomness to seed its cryptographic primitives.
+> * A text section in a publicly available documentation includes secrets like passwords.
+> * A MySQL database handling user data is secured with the default password.
+> * A TSC member is known to work for an intelligence agency of a state.
+
+### Reporting A Critical Vulnerability
+
+Vulnerability reports propagate upwards in NeoNephos, from project to foundation scope. Therefore, when reporting a critical vulnerability, the first step is to review if a dedicated security policy is available for the project.
+
+**NeoNephos Projects With A Published Security Policy:**
+
+* **[Gardener Security Policy](https://gardener.cloud/docs/security-and-compliance/)** and **[Gardener Security Release Process](https://github.com/gardener/gardener/security)**
+* **[Garden Linux Security Release Process](https://github.com/gardenlinux/gardenlinux/security)**
+
+A project specific vulnerability reporting process always takes precedence over the general reporting process outlined here. If none can be found, check if the organisation has enabled GitHub's vulnerability reporting.
+
+
+
+[Reporting a vulnerability via GitHub's inbuilt feature](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability) is a secure way to privately diclose your found vulnerability.
+
+If disabled, check for security disclose e-mails or contact details of a member dedicated to handling security reports. The latter can usually be found listed among other Technical Steering Committee members in a ```OWNERS.md```.
+As a last resort, [contact the Technical Advisory Council chairperson](https://neonephos.org/technical_advisory_council) to handle the report.
+
+## Related Reading
+
+* Our Security Policy (in the works)
diff --git a/assets/security_policy_github_vulnerability_report.png b/assets/security_policy_github_vulnerability_report.png
new file mode 100644
index 0000000..a2fce6b
Binary files /dev/null and b/assets/security_policy_github_vulnerability_report.png differ
diff --git a/assets/security_policy_open_github_issue.png b/assets/security_policy_open_github_issue.png
new file mode 100644
index 0000000..167d28d
Binary files /dev/null and b/assets/security_policy_open_github_issue.png differ