mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 14:34:24 +08:00

We now consider debugerrors harmful: we've run into cases where debugerror.Wrap() hid valuable error information (err == io.EOF?). I've removed them from the main code, but left them in some tests. Go errors are lacking, but unfortunately, this isn't the solution. It is possible that debugerros.New or debugerrors.Errorf should remain still (i.e. only remove debugerrors.Wrap) but we don't use these errors often enough to keep.
25 lines
1.0 KiB
Go
25 lines
1.0 KiB
Go
package assets
|
|
|
|
var Init_doc_security_notes = ` IPFS Alpha Security Notes
|
|
|
|
We try hard to ensure our system is safe and robust, but all software
|
|
has bugs, especially new software. This distribution is meant to be an
|
|
alpha preview, don't use it for anything mission critical.
|
|
|
|
Please note the following:
|
|
|
|
- This is alpha software and has not been audited. It is our goal
|
|
to conduct a proper security audit once we close in on a 1.0 release.
|
|
|
|
- ipfs is a networked program, and may have serious undiscovered
|
|
vulnerabilities. It is written in Go, and we do not execute any
|
|
user provided data. But please point any problems out to us in a
|
|
github issue, or email security@ipfs.io privately.
|
|
|
|
- ipfs uses encryption for all communication, but it's NOT PROVEN SECURE
|
|
YET! It may be totally broken. For now, the code is included to make
|
|
sure we benchmark our operations with encryption in mind. In the future,
|
|
there will be an "unsafe" mode for high performance intranet apps.
|
|
If this is a blocking feature for you, please contact us.
|
|
`
|