About money, see CONTRIBUTING.md
Security is very important to us. If you discover any issue regarding security, please disclose the information responsibly by sending an email to security@wekan.team and not by creating a GitHub issue. We will respond swiftly to fix verifiable security issues.
We thank you with a place at our hall of fame page, that is at https://wekan.github.io/hall-of-fame
Name: %name
Twitter: %twitter
Bug type: %bugtype
Domain: %domain
Severity: %severity
URL: %url
PoC: %poc
CVSS (optional): %cvss
CWSS (optional): %cwss
Anyone who reports a unique security issue in scope and does not disclose it to a third party before we have patched and updated may be upon their approval added to the Wekan Hall of Fame.
No public domains, because all those are donated to Wekan Open Source project, and we don't have any permissions to do security scans on those donated servers.
Please don't perform research that could impact other users. Secondly, please keep the reports short and succinct. If we fail to understand the logics of your bug, we will tell you.
You can Install Wekan to your own computer and scan it's vulnerabilities there.
There are only 2 versions of Wekan: Standalone Wekan, and Sandstorm Wekan.
Standalone Wekan includes all non-Sandstorm platforms. Some Standalone Wekan platforms like Snap and Docker have their own specific sandboxing etc features.
Standalone Wekan by default does not load any files from Internet, like fonts, CSS, etc. This also means all Standalone Wekan functionality works in offline local networks. WeKan is used at most countries of the world https://snapcraft.io/wekan and by by companies that have 30k users.
Q:
Hello, I have just seen the Meteor DevTools Evolved extension and was wondering if anyone had asked themselves the question of security. Insofar as all data is shown in the minimongo tab in plain text. How can data be hidden from this extension?
A:
if (Meteor.user()) {
if (Meteor.isServer()) {
or client if Meteor.isClient()) {
.Do not copy environment variable to public variable that is visible browserside https://github.com/wekan/wekan/blob/main/server/max-size.js
Meteor.startup(() => {
if (process.env.HEADER_LOGIN_ID) {
Meteor.settings.public.attachmentsUploadMaxSize = process.env.ATTACHMENTS_UPLOAD_MAX_SIZE;
Meteor.settings.public.attachmentsUploadMimeTypes = process.env.ATTACHMENTS_UPLOAD_MIME_TYPES;
Meteor.settings.public.avatarsUploadMaxSize = process.env.AVATARS_UPLOAD_MAX_SIZE;
For serverside, you can set Meteor.settings.variablename, without text public
For WeKan kanban, there is feature for setting board public, it can be viewed by anyone, there is realtime updates. But
Some of those permissions are checked at users.js models at https://github.com/wekan/wekan/tree/main/models
Environment variables are used for email server passwords, etc, at all platforms https://github.com/wekan/wekan/commit/a781c0e7dcfdbe34c1483ee83cec12455b7026f7
On Sandstorm platform using environment variable Standalone Wekan features like Admin Panel etc are turned off, because Sandstorm platform provides SSO for all apps running on Sandstorm.
Sandstorm is separate Open Source platform that has been security audited and found bugs fixed. Sandstorm also has passwordless login, LDAP, SAML, Google etc auth options already. At Sandstorm code is read-only and signed by app maintainers, only grain content can be modified. Wekan at Sandstorm runs in sandboxed grain, it does not have access elsewhere without user-visible PowerBox request or opening randomly-generated API key URL. Also read Sandstorm Security Practices and Sandstorm Security non-events. For Sandstorm specific security issues you can contact kentonv by email.
Any typical web security bugs. If any of the previously mentioned is somehow problematic and a security issue, we'd like to know about it, and also how to fix it:
Typical already known or "no impact" bugs such as:
Wekan is Open Source with MIT license, and free to use also for commercial use. We welcome all fixes to improve security by email to security@wekan.team
If your Responsible Security Disclosure includes code for fixing security issue, you get bonus points, as seen on Hall of Fame.