File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,8 @@ exports.extract = function (cwd, opts) {
254
254
var onsymlink = function ( ) {
255
255
if ( win32 ) return next ( ) // skip symlinks on win for now before it can be tested
256
256
xfs . unlink ( name , function ( ) {
257
+ var dst = path . resolve ( path . dirname ( name ) , header . linkname )
258
+ if ( ! dst . startsWith ( path . resolve ( cwd ) ) ) return next ( new Error ( name + ' is not a valid symlink' ) )
257
259
xfs . symlink ( header . linkname , name , stat )
258
260
} )
259
261
}
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ test('do not extract invalid tar', function (t) {
304
304
fs . createReadStream ( a )
305
305
. pipe ( tar . extract ( out ) )
306
306
. on ( 'error' , function ( err ) {
307
- t . ok ( / i s n o t a v a l i d p a t h / i. test ( err . message ) )
307
+ t . ok ( / i s n o t a v a l i d s y m l i n k / i. test ( err . message ) )
308
308
fs . stat ( path . join ( out , '../bar' ) , function ( err ) {
309
309
t . ok ( err )
310
310
t . end ( )
You can’t perform that action at this time.
0 commit comments