Several memory safety issues have been uncovered in an audit of rusqlite.
See https://github.com/rusqlite/rusqlite/releases/tag/0.23.0 for a complete list.
remexre / flubber
This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.
flubber-backend
(7 total, 2 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
anyhow | ^1.0.19 | 1.0.93 | up to date |
serde | ^1.0.102 | 1.0.215 | up to date |
serde_json | ^1.0.41 | 1.0.132 | up to date |
futures-util-preview | ^0.3.0-alpha.19 | 0.2.2 | up to date |
pin-utils | ^0.1.0-alpha.4 | 0.1.0 | up to date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
tower | ^0.3.0-alpha.2 | 0.5.1 | out of date |
flubber-backend-proto
(7 total, 2 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
base64 | ^0.11.0 | 0.22.1 | out of date |
chrono ⚠️ | ^0.4.9 | 0.4.38 | maybe insecure |
mime | ^0.3.14 | 0.3.17 | up to date |
serde | ^1.0.102 | 1.0.215 | up to date |
serde_derive | ^1.0.102 | 1.0.215 | up to date |
serde_json | ^1.0.41 | 1.0.132 | up to date |
sval | ^0.4.7 | 2.13.2 | out of date |
flubber-server
(8 total, 2 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
anyhow | ^1.0.19 | 1.0.93 | up to date |
dotenv | ^0.15.0 | 0.15.0 | up to date |
femme | ^1.3.0 | 2.2.1 | out of date |
log | ^0.4.8 | 0.4.22 | up to date |
paw | ^1.0.0 | 1.0.0 | up to date |
structopt | ^0.3.3 | 0.3.26 | up to date |
futures-util-preview | ^0.3.0-alpha.19 | 0.2.2 | up to date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
flubber-server-backend
(9 total, 5 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
anyhow | ^1.0.18 | 1.0.93 | up to date |
bytes | ^0.4.12 | 1.8.0 | out of date |
derivative | ^1.0.3 | 2.2.0 | out of date |
derive_more | ^0.15.0 | 1.0.0 | out of date |
either | ^1.5.3 | 1.13.0 | up to date |
log | ^0.4.8 | 0.4.22 | up to date |
serde_json | ^1.0.41 | 1.0.132 | up to date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
tower | ^0.3.0-alpha.2 | 0.5.1 | out of date |
(1 total, 1 outdated)
Crate | Required | Latest | Status |
---|---|---|---|
femme | ^1.3.0 | 2.2.1 | out of date |
flubber-server-config
(6 total, 2 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
anyhow | ^1.0.18 | 1.0.93 | up to date |
log | ^0.4.8 | 0.4.22 | up to date |
serde | ^1.0.102 | 1.0.215 | up to date |
serde_derive | ^1.0.102 | 1.0.215 | up to date |
toml | ^0.5.5 | 0.8.19 | out of date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
flubber-server-db
(5 total, 2 outdated, 3 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
anyhow | ^1.0.18 | 1.0.93 | up to date |
chrono ⚠️ | ^0.4.9 | 0.4.38 | maybe insecure |
log | ^0.4.8 | 0.4.22 | up to date |
rusqlite ⚠️ | ^0.20.0 | 0.32.1 | out of date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
(1 total, 1 outdated)
Crate | Required | Latest | Status |
---|---|---|---|
femme | ^1.3.0 | 2.2.1 | out of date |
flubber-server-web
No external dependencies! 🙌
flubber-utils
(4 total, 2 outdated, 1 possibly insecure)
Crate | Required | Latest | Status |
---|---|---|---|
bytes | ^0.4.12 | 1.8.0 | out of date |
serde | ^1.0.102 | 1.0.215 | up to date |
serde_json | ^1.0.41 | 1.0.132 | up to date |
tokio ⚠️ | ^0.2.0-alpha.6 | 1.41.1 | out of date |
rusqlite
: Various memory safety issuesSeveral memory safety issues have been uncovered in an audit of rusqlite.
See https://github.com/rusqlite/rusqlite/releases/tag/0.23.0 for a complete list.
chrono
: Potential segfault in `localtime_r` invocationsUnix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.
No workarounds are known.
tokio
: Data race when sending and receiving after closing a `oneshot` channelIf a tokio::sync::oneshot
channel is closed (via the
oneshot::Receiver::close
method), a data race may occur if the
oneshot::Sender::send
method is called while the corresponding
oneshot::Receiver
is await
ed or calling try_recv
.
When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.
Note that the race only occurs when both halves of the channel are used
after the Receiver
half has called close
. Code where close
is not used, or where the
Receiver
is not await
ed and try_recv
is not called after calling close
,
is not affected.
See tokio#4225 for more details.