mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-23 15:38:27 +01:00
Merge pull request #259 from eduardosm/flatbuffers
Add advisory for flatbuffers
This commit is contained in:
32
crates/flatbuffers/RUSTSEC-0000-0000.toml
Normal file
32
crates/flatbuffers/RUSTSEC-0000-0000.toml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
[advisory]
|
||||||
|
id = "RUSTSEC-0000-0000"
|
||||||
|
package = "flatbuffers"
|
||||||
|
date = "2020-04-11"
|
||||||
|
title = "`read_scalar` and `read_scalar_at` allow transmuting values without `unsafe` blocks"
|
||||||
|
url = "https://github.com/google/flatbuffers/issues/5825"
|
||||||
|
description = """
|
||||||
|
The `read_scalar` and `read_scalar_at` functions are unsound
|
||||||
|
because they allow transmuting values without `unsafe` blocks.
|
||||||
|
|
||||||
|
The following example shows how to create a dangling reference:
|
||||||
|
|
||||||
|
```
|
||||||
|
fn main() {
|
||||||
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||||
|
struct S(&'static str);
|
||||||
|
impl flatbuffers::EndianScalar for S {
|
||||||
|
fn to_little_endian(self) -> Self { self }
|
||||||
|
fn from_little_endian(self) -> Self { self }
|
||||||
|
}
|
||||||
|
println!("{:?}", flatbuffers::read_scalar::<S>(&[1; std::mem::size_of::<S>()]));
|
||||||
|
}
|
||||||
|
```
|
||||||
|
"""
|
||||||
|
|
||||||
|
[affected.functions]
|
||||||
|
"flatbuffers::read_scalar" = [">= 0.4.0"]
|
||||||
|
"flatbuffers::read_scalar_at" = [">= 0.4.0"]
|
||||||
|
|
||||||
|
[versions]
|
||||||
|
patched = []
|
||||||
|
unaffected = ["< 0.4.0"]
|
||||||
Reference in New Issue
Block a user