Skip to content

Commit

Permalink
Merge pull request #119 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 1.7.0
  • Loading branch information
andyone authored Sep 24, 2024
2 parents e87043c + f152df9 commit eaba218
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
8 changes: 7 additions & 1 deletion bz2/bz2.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import (

// ////////////////////////////////////////////////////////////////////////////////// //

// MaxReadLimit is the maximum read limit for decompression bomb
// protection (default: 1GB)
var MaxReadLimit int64 = 1024 * 1024 * 1024

// ////////////////////////////////////////////////////////////////////////////////// //

var (
ErrNilReader = fmt.Errorf("Reader can not be nil")
ErrEmptyInput = fmt.Errorf("Path to input file can not be empty")
Expand Down Expand Up @@ -76,7 +82,7 @@ func Read(r io.Reader, output string) error {
}

bw := bufio.NewWriter(fd)
_, err = io.Copy(bw, bzip2.NewReader(r))
_, err = io.Copy(bw, io.LimitReader(bzip2.NewReader(r), MaxReadLimit))

bw.Flush()
fd.Close()
Expand Down
8 changes: 7 additions & 1 deletion gz/gz.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ import (

// ////////////////////////////////////////////////////////////////////////////////// //

// MaxReadLimit is the maximum read limit for decompression bomb
// protection (default: 1GB)
var MaxReadLimit int64 = 1024 * 1024 * 1024

// ////////////////////////////////////////////////////////////////////////////////// //

var (
ErrNilReader = fmt.Errorf("Reader can not be nil")
ErrEmptyInput = fmt.Errorf("Path to input file can not be empty")
Expand Down Expand Up @@ -83,7 +89,7 @@ func Read(r io.Reader, output string) error {
}

bw := bufio.NewWriter(fd)
_, err = io.Copy(bw, cr)
_, err = io.Copy(bw, io.LimitReader(cr, MaxReadLimit))

bw.Flush()
fd.Close()
Expand Down
6 changes: 5 additions & 1 deletion tar/tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ var UpdateTimes = true
// outside target directory
var AllowExternalLinks = false

// MaxReadLimit is the maximum read limit for decompression bomb
// protection (default: 1GB)
var MaxReadLimit int64 = 1024 * 1024 * 1024

// ////////////////////////////////////////////////////////////////////////////////// //

var (
Expand Down Expand Up @@ -148,7 +152,7 @@ func createFile(h *tar.Header, r io.Reader, path string) error {
}

bw := bufio.NewWriter(fd)
_, err = io.Copy(bw, r)
_, err = io.Copy(bw, io.LimitReader(r, MaxReadLimit))

if err != nil {
return err
Expand Down
8 changes: 7 additions & 1 deletion zip/zip.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import (

// ////////////////////////////////////////////////////////////////////////////////// //

// MaxReadLimit is the maximum read limit for decompression bomb
// protection (default: 1GB)
var MaxReadLimit int64 = 1024 * 1024 * 1024

// ////////////////////////////////////////////////////////////////////////////////// //

var (
ErrNilReader = fmt.Errorf("Reader can not be nil")
ErrEmptyOutput = fmt.Errorf("Path to output directory can not be empty")
Expand Down Expand Up @@ -95,7 +101,7 @@ func Read(r io.ReaderAt, dir string) error {
}

bw := bufio.NewWriter(fd)
_, err = io.Copy(bw, zfd)
_, err = io.Copy(bw, io.LimitReader(zfd, MaxReadLimit))

bw.Flush()
fd.Close()
Expand Down

0 comments on commit eaba218

Please sign in to comment.