-
Notifications
You must be signed in to change notification settings - Fork 487
Created SECURITY.md #6490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+84
−0
Merged
Created SECURITY.md #6490
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ae3e5cd
Created SECURITY.md
dlmarion 0c0d597
Add license header
dlmarion cef0fbf
Update SECURITY.md
dlmarion b203e3d
Update SECURITY.md
dlmarion f4f0aa2
Update SECURITY.md
dlmarion 0b27877
Update SECURITY.md
dlmarion 9f2ea88
Update SECURITY.md
dlmarion 7257351
Update SECURITY.md
dlmarion File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,84 @@ | ||
| <!-- | ||
|
|
||
| Licensed to the Apache Software Foundation (ASF) under one | ||
| or more contributor license agreements. See the NOTICE file | ||
| distributed with this work for additional information | ||
| regarding copyright ownership. The ASF licenses this file | ||
| to you under the Apache License, Version 2.0 (the | ||
| "License"); you may not use this file except in compliance | ||
| with the License. You may obtain a copy of the License at | ||
|
|
||
| https://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, | ||
| software distributed under the License is distributed on an | ||
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| KIND, either express or implied. See the License for the | ||
| specific language governing permissions and limitations | ||
| under the License. | ||
|
|
||
| --> | ||
| # Security Policy | ||
|
|
||
| ## Supported Versions | ||
|
|
||
| Security fixes are provided for [currently maintained release lines](https://accumulo.apache.org/versioning). Users should run the latest | ||
| patch release in a maintained line. See the [Accumulo downloads page](https://accumulo.apache.org/downloads/) | ||
| for current releases and maintenance status. | ||
| ## Reporting a vulnerability | ||
|
|
||
| If after reading this document you believe you have found a vulnerability or are unsure, | ||
| then please follow the [reporting process](https://www.apache.org/security/#reporting-a-vulnerability). | ||
|
|
||
| ## High-Level Accumulo Deployment Overview | ||
|
|
||
| Accumulo is designed to use Apache ZooKeeper for locking and coordination | ||
| and one or more Hadoop Compatible File System (HCFS) implementations | ||
| (HDFS, S3, local disk, etc.) for storage. Accumulo users could be humans | ||
| or machines connecting to Accumulo server processes from any location. | ||
| Please see the Security section of the User Manual (found at https://accumulo.apache.org/) | ||
| for information regarding: | ||
|
|
||
| * User authentication | ||
| * Authorizing actions and our permission scheme | ||
| * Labeling data and scan-time authorizations | ||
| * Encryption | ||
|
|
||
| ## Security Assumptions | ||
|
|
||
| The following items are out of our control and we assume that these items | ||
| are configured correctly and securely or are otherwise trusted. | ||
|
|
||
| * Network, to include network encryption components | ||
| * DNS | ||
| * Operating Systems and related computer hardware | ||
| * ZooKeeper and HCFS installations and configuration | ||
| * Persons or processes that can log into an environment (bare-metal or container) | ||
| where Accumulo, ZooKeeper, or HCFS-related processes are running | ||
| * Accumulo configuration files (e.g. accumulo-env.sh, accumulo.properties, logging configuration, etc.) | ||
| * The JVM classpath for Accumulo processes (configured in accumulo-env.sh or similar mechanism) | ||
| * User provided code that runs in the server process via an Accumulo SPI | ||
| * User configured JVM agents | ||
|
dlmarion marked this conversation as resolved.
|
||
| * Bulk-imported user created RFiles (these bypass server-side checks that are performed during live ingest) | ||
|
|
||
| ## Accumulo Security Boundary and Responsibilities | ||
|
|
||
| The Accumulo RPC layer, not the Accumulo client or shell, is the security boundary. Users | ||
| are not required to use the client and may interact with server processes via | ||
| supported RPC's. Security enforcement mechanisms must be implemented on the | ||
| server-side. Additional enforcement mechanisms may be implemented in the client, | ||
| but are not required. Accumulo's security relevant requirements are below: | ||
|
|
||
| * To authenticate users at the RPC layer | ||
| * To authorize the user's action against the relevant permission, if applicable, at the RPC layer | ||
| * To ensure that a user can only use Authorizations that they are assigned in a Scanner/BatchScanner | ||
| * To ensure that Key-Value pairs returned in a Scanner/BatchScanner are allowed given the scan Authorizations | ||
| * To ensure that files are encrypted/decrypted appropriately, if configured | ||
|
|
||
| ## Additional Considerations | ||
|
|
||
| * Accumulo server logs will contain user data and should be secured | ||
| * The Accumulo Monitor web UI does not perform authorization, user data should not be passed over the REST endpoints | ||
| * Each entry in a bulk-imported file is NOT inspected to confirm that the visiblity label is valid | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.