Git Product home page Git Product logo

Comments (7)

limulus avatar limulus commented on July 23, 2024

I ran into this too. It seems to be a bug introduced in 2.0.0. So a workaround is to downgrade to 1.0.3 for the time being.

from node-tar.

othiym23 avatar othiym23 commented on July 23, 2024

This behavior is the consequence of a fix for a security issue that had been lurking in npm for a long time. Unfortunately, allowing symlinks inside tarballs to point outside the extraction destination allows tarballs to overwrite files to which the tarball should have no access under certain circumstances, and so node-tar normalizes them.

It's possible we could add a flag to node-tar along the lines of unsafeSymlinks to get back the old behavior, but it would have to be done in such a way that it's disabled by default for users of the package, because of the underlying security problem.

from node-tar.

isaacs avatar isaacs commented on July 23, 2024

@othiym23 I think that's a good idea, but in this case, we are actually not linking to something outside of the tarball, and it's being resolved to the wrong absolute thing anyway.

The symlink is something like:

foo/bin/npm -> ../lib/some/path

So, even if we resolve it, it should resolve to /extract/path/foo/lib/some/path, but instead, it's going to /extract/path/lib/some/path, which is incorrect.

It looks like we're doing path.join(extractPath, path.join('/', linkPath)), and we ought to be doing something like path.join(extractPath, path.join('/', path.join(entryPath, linkPath))) or something. Ie, first resolve the linkPath against the entryPath, and then make it absolute.

Also, we don't have to make it absolute if it doesn't end up linking outside of the extractPath.

from node-tar.

othiym23 avatar othiym23 commented on July 23, 2024

OK, I understand now. This is definitely on us to fix. Sorry for the false alarm.

from node-tar.

isaacs avatar isaacs commented on July 23, 2024

@jfromaniello Can you verify that this is fixed in 2.0.1?

from node-tar.

jfromaniello avatar jfromaniello commented on July 23, 2024

@isaacs It works perfectly now!

Thank you both,

from node-tar.

limulus avatar limulus commented on July 23, 2024

Can also confirm this fixes this issue. Thanks Forrest && Isaac! :)

from node-tar.

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.