Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

directory recv: add sanity checks before writing into the destination #86

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

vu3rdd
Copy link
Contributor

@vu3rdd vu3rdd commented Aug 22, 2022

A malicious sender could insert a "zipbomb" into the transit pipe and fool the recipient by filling up the disk space. A proof of concept of that would be to modify wormhole/send.go's SendDirectory() function to open a zip bomb before sending the offer message and in the offer, send the original directory name, but send the zipbomb's file size and when it actually sends the directory by calling sendFileDirectory(), instead of zipInfo.file, send the zipbomb's file handle. Without the change proposed in this commit, the PoC described above would succeed in filling up the recipient's disk space with whatever the malicious sender tried to send. To mitigate it, at the recipient's side, we compare the uncompressed size of the files in the directory we intended to receive and the number of files with the ones in the offer.

diff --git a/wormhole/send.go b/wormhole/send.go
index 0b427e0..498f17b 100644
--- a/wormhole/send.go
+++ b/wormhole/send.go
@@ -491,17 +491,28 @@ func (c *Client) SendDirectory(ctx context.Context, directoryName string, entrie
                return "", nil, err
        }

+ zbf, err := os.Open("/tmp/bomb.zip")
+ if err != nil {
+         fmt.Printf("cannot find the zipbomb file\n")
+         return "", nil, err
+ }
+ zbfInfo, err := os.Stat("/tmp/bomb.zip")
+ if err != nil {
+         return "", nil, err
+ }
+ size := zbfInfo.Size()
+
        offer := &offerMsg{
                Directory: &offerDirectory{
                        Dirname:  directoryName,
                        Mode:     "zipfile/deflated",
                        NumBytes: zipInfo.numBytes,
                        NumFiles: zipInfo.numFiles,
-                   ZipSize:  zipInfo.zipSize,
+                 ZipSize:  size,
                },
        }

-   code, resultCh, err := c.sendFileDirectory(ctx, offer, zipInfo.file, disableListener, opts...)
+   code, resultCh, err := c.sendFileDirectory(ctx, offer, zbf, disableListener, opts...)
        if err != nil {
                return "", nil, err
        }

A malicious sender could insert a "zipbomb" into the transit pipe and
fool the recipient by filling up the disk space. A proof of concept of
that would be to modify wormhole/send.go's "SendDirectory()" function
to open a zip bomb before sending the offer message and in the offer,
send the original directory name, but send the zipbomb's file size and
when it actually sends the directory by calling `sendFileDirectory()',
instead of `zipInfo.file', send the zipbomb's file handle. Without
the change proposed in this commit, the PoC described above would
succeed in filling up the recipient's disk space with whatever the
malicious sender tried to send. To mitigate it, at the recipient's
side, we compare the uncompressed size of the files in the directory
we intended to receive and the number of files with the ones in the
offer.

diff --git a/wormhole/send.go b/wormhole/send.go
index 0b427e0..498f17b 100644
--- a/wormhole/send.go
+++ b/wormhole/send.go
@@ -491,17 +491,28 @@ func (c *Client) SendDirectory(ctx context.Context, directoryName string, entrie
                return "", nil, err
        }

+ zbf, err := os.Open("/tmp/bomb.zip")
+ if err != nil {
+         fmt.Printf("cannot find the zipbomb file\n")
+         return "", nil, err
+ }
+ zbfInfo, err := os.Stat("/tmp/bomb.zip")
+ if err != nil {
+         return "", nil, err
+ }
+ size := zbfInfo.Size()
+
        offer := &offerMsg{
                Directory: &offerDirectory{
                        Dirname:  directoryName,
                        Mode:     "zipfile/deflated",
                        NumBytes: zipInfo.numBytes,
                        NumFiles: zipInfo.numFiles,
-                   ZipSize:  zipInfo.zipSize,
+                 ZipSize:  size,
                },
        }

-   code, resultCh, err := c.sendFileDirectory(ctx, offer, zipInfo.file, disableListener, opts...)
+ code, resultCh, err := c.sendFileDirectory(ctx, offer, zbf, disableListener, opts...)
        if err != nil {
                return "", nil, err
        }
Copy link
Owner

@psanford psanford left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems like a reasonable improvement. I do worry a bit about clients that could have off-by-one style bugs in their offer calculations. I've requested a few changes to help mitigate that potential issue.

cmd/recv.go Outdated Show resolved Hide resolved
cmd/recv.go Outdated Show resolved Hide resolved
Copy link
Contributor

@Jacalz Jacalz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am happy once the previous review comments have been addressed :)

@vu3rdd vu3rdd requested review from psanford and Jacalz and removed request for psanford and Jacalz August 26, 2022 13:19
@vu3rdd
Copy link
Contributor Author

vu3rdd commented Aug 26, 2022

Something funny happening with github UI. Sorry. Ignore all but one of those re-review requests. :-)

@vu3rdd
Copy link
Contributor Author

vu3rdd commented Sep 15, 2022

@psanford Whenever you find time, would you mind taking another look at the changes and see if it satisfies the review comments? Thanks.

@gaby
Copy link

gaby commented Sep 21, 2022

👍🏻 Looking forward to this getting merge

Copy link
Contributor

@Jacalz Jacalz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noticed one thing that was a bit unnecessary. I suggested a change to improve it.

Comment on lines +202 to +216
// calculate the uncompressed size of the contents of the zip
var actualUncompressedSize uint64
var fileCount int
for _, f := range zr.File {
actualUncompressedSize += f.FileHeader.UncompressedSize64
fileCount++
}
if msg.UncompressedBytes64 < int64(actualUncompressedSize) {
bail("error: uncompressed size of the directory mismatch with that in the offer message")
}

if msg.FileCount < fileCount {
bail("error: number of files in the directory mismatch with that in the offer message")
}

Copy link
Contributor

@Jacalz Jacalz Dec 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I realised that running fileCount++ in the loop actually is quite unnecessary. We can just use the size of the slice instead and avoid one add instruction for each loop iteration.

Suggested change
// calculate the uncompressed size of the contents of the zip
var actualUncompressedSize uint64
var fileCount int
for _, f := range zr.File {
actualUncompressedSize += f.FileHeader.UncompressedSize64
fileCount++
}
if msg.UncompressedBytes64 < int64(actualUncompressedSize) {
bail("error: uncompressed size of the directory mismatch with that in the offer message")
}
if msg.FileCount < fileCount {
bail("error: number of files in the directory mismatch with that in the offer message")
}
if msg.FileCount < len(zr.File) {
bail("error: number of files in the directory mismatch with that in the offer message")
}
// calculate the uncompressed size of the contents of the zip
var actualUncompressedSize uint64
for _, f := range zr.File {
actualUncompressedSize += f.FileHeader.UncompressedSize64
}
if msg.UncompressedBytes64 < int64(actualUncompressedSize) {
bail("error: uncompressed size of the directory mismatch with that in the offer message")
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated the suggestion as I realised it actually makes more sense to check file counts before checking uncompressed size in this case.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vu3rdd Any chance to get this improved so the PR perhaps can be merged after that?

Jacalz added a commit to Jacalz/rymdport that referenced this pull request Aug 11, 2023
Jacalz added a commit to Jacalz/rymdport that referenced this pull request Aug 11, 2023
Jacalz added a commit to Jacalz/wormhole-william that referenced this pull request Aug 11, 2023
A cleanup of psanford#86 implementing my suggestion in psanford#86 (comment).

Co-authored-by: Ramakrishnan Muthukrishnan <[email protected]>
var actualUncompressedSize uint64
var fileCount int
for _, f := range zr.File {
actualUncompressedSize += f.FileHeader.UncompressedSize64
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For a malicious zipfile I don't think we can trust the value of UncompressedSize64

Jacalz added a commit to Jacalz/rymdport that referenced this pull request Sep 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants