Giter Club home page Giter Club logo

Comments (12)

vmx avatar vmx commented on June 12, 2024

Your example malicious payload has 11 elements, but the we decode only up to 10 elements, due to the buffer having a length of 10. Do you have an example that leads to a panic?

Though, even if a panic cannot be triggered, it might still make sense to change the code for clarity.

from rust-multihash.

kevin-valerio avatar kevin-valerio commented on June 12, 2024

Your example malicious payload has 11 elements, but the we decode only up to 10 elements, due to the buffer having a length of 10. Do you have an example that leads to a panic?

Sure, let me give you another example, all the details should be visible in the screenshots.

image
image
imageimage

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

I've tried:

    #[test]
    fn decode_overflow() {
        let data = [203, 155, 0, 0, 0, 5, 67];
        let result = read_u64(&data[..]);
        println!("result: {:?}", result);
    }

Just as your error message, it returns an error that it's not minimal, but it does not panic. What am I missing?

from rust-multihash.

kevin-valerio avatar kevin-valerio commented on June 12, 2024

Just as your error message, it returns an error that it's not minimal, but it does not panic. What am I missing?

Put in your Cargo.toml:

[dependencies]
multihash = { version = "0.18.0", git="https://github.com/multiformats/rust-multihash", default-features = false, features = [ "multihash-impl", "sha2"] }

Because this function will have a different behaviour if you have std in the features (because of #[cfg(not(feature = "std"))]), so ensure std is not on the features.

from rust-multihash.

mattheworris avatar mattheworris commented on June 12, 2024

We have also run into panics on this line with a NotMinimal encoding error. We are also using a Substrate, no-std environment.
Any chance this fix will get merged in the near future?

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

We have also run into panics on this line with a NotMinimal encoding error.

That is an error and not a panic, isn't it?

I cannot reproduce the panic. If you can reproduce the panic, please provide a unit test for it.

from rust-multihash.

mattheworris avatar mattheworris commented on June 12, 2024

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

The NotMinimal error triggers a panic when it hits unwrap().

Oh sorry, it took me a long time to understand all that. So the problem is that you have a non-minimal encoded varint. That varint is then decoded and returns a NotMinimal error. As we call unwrap(), it leads to a panic.

Let me try if I create a unit test triggering that, now that I've understood the issue.

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

Alright, I now know why I wasn't able to reproduce it. The tests have std enabled (even with --no-default-features), hence it wasn't triggering the code path that contains the issue. On current master --no-default-features works as expected.

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

I've created pull requests for

from rust-multihash.

vmx avatar vmx commented on June 12, 2024

I've released the fix as 0.18.1. It's also fixed on master and will be included in the next minor release.

from rust-multihash.

mattheworris avatar mattheworris commented on June 12, 2024

from rust-multihash.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.