diff --git a/community/security-model.md b/community/security-model.md new file mode 100644 index 0000000000..59fda59139 --- /dev/null +++ b/community/security-model.md @@ -0,0 +1,29 @@ +--- +slug: /security-model +--- + +# Security Model + +This document outlines the security model of Apache Answer. It aims to help users understand the security model and make informed decisions about deploying and managing Apache Answer securely. + +## Admin Permission Security + +**Admin users have full system permissions**, which includes access to potentially vulnerable operations. While we assume administrators won't attack their own websites, it's crucial to exercise caution when assigning admin privileges. + +So, if a security issue comes up in the administrator page, this is usually not considered a problem. Because the administrator has the authority to do so. Unless a normal user can overstep his authority to operate outside of his capabilities. + +## Captcha Security + +CAPTCHA is an essential security measure to prevent automated attacks and abuse. Apache Answer will not be responsible for security issues arising from disabled CAPTCHA protection. For example, if the user disables the CAPTCHA, it may allow an attacker to crack the user's password by brute force. + +![captcha](/img/community/captcha.png) + +## Custom Plugin Security + +Apache Answer only guarantees the security of official plugins distributed through our [official repository](https://github.com/apache/answer-plugins). We take no responsibility for security issues arising from third-party plugins. + +:::caution + +If you find a security bug, with that in mind, please do not file public issues. You can follow the instructions in the [security policy](https://github.com/apache/answer/security/policy) to report it privately. We will fix it as soon as possible. + +::: \ No newline at end of file diff --git a/docusaurus.config.js b/docusaurus.config.js index 8655389dd2..e26b205471 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -139,6 +139,10 @@ const config = { label: 'Security', to: 'community/security', }, + { + label: 'SecurityModel', + to: 'community/security-model', + }, { label: 'Contributing', to: 'community/contributing', diff --git a/sidebarsCommunity.js b/sidebarsCommunity.js index 1265aa48c8..0e242bcf8c 100644 --- a/sidebarsCommunity.js +++ b/sidebarsCommunity.js @@ -3,6 +3,7 @@ module.exports = { 'support', 'team', 'security', + 'security-model', { type: 'category', label: 'Contributing', diff --git a/static/img/community/captcha.png b/static/img/community/captcha.png new file mode 100644 index 0000000000..7a816adb3b Binary files /dev/null and b/static/img/community/captcha.png differ