Skip to content

Commit 0df024d

Browse files
authored
Merge pull request #96 from negbie/master
Fix bug found by fuzzer
2 parents 4def387 + 058ff2c commit 0df024d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

protos/fuzz.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// +build gofuzz
2+
3+
package protos
4+
5+
// To run the fuzzer, first download go-fuzz:
6+
// go get github.com/dvyukov/go-fuzz/...
7+
//
8+
// Then build the testing package:
9+
// go-fuzz-build github.com/negbie/heplify/protos
10+
//
11+
// And run the fuzzer
12+
//
13+
// go-fuzz -bin=fuzz-protos.zip -workdir=workdir
14+
15+
func Fuzz(data []byte) int {
16+
ParseRTCP(data)
17+
return 0
18+
}

protos/rtcp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ func ParseRTCP(data []byte) (ssrcBytes []byte, rtcpPkt []byte, infoMsg string) {
197197
offset := 0
198198

199199
for dataLen > 0 {
200-
if dataLen < 4 || dataLen > 576 || offset >= len(data) {
200+
if dataLen < 4 || dataLen > 768 || offset > len(data)-4 {
201201
infoMsg = fmt.Sprintf("Fishy RTCP dataLen=%d, offset=%d in packet:\n% X", dataLen, offset, data)
202202
break
203203
}

0 commit comments

Comments
 (0)