fixed: Buffer Overflow Vulnerability in countFields Function#245
Open
ayushman1210 wants to merge 8 commits intoPecanProject:masterfrom
Open
fixed: Buffer Overflow Vulnerability in countFields Function#245ayushman1210 wants to merge 8 commits intoPecanProject:masterfrom
ayushman1210 wants to merge 8 commits intoPecanProject:masterfrom
Conversation
3d13343 to
2ebcd1f
Compare
Contributor
Author
Alomir
requested changes
Feb 3, 2026
Collaborator
Alomir
left a comment
There was a problem hiding this comment.
Thanks for the work on this!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Buffer Overflow Vulnerability in countFields() Function
Location:
src/common/util.c, lines 51-62Description:
The
countFields()function has a fixed-size buffer of 256 bytes but usesstrcpy()without bounds checkingIf the input line parameter exceeds 255 characters (plus null terminator),
strcpy()will write beyond the buffer boundary, causing a buffer overflow. This can lead to:This function is called from:
readClimData()insipnet.c(line 164)checkParamFormat()inmodelParams.c(line 129)Both functions process user-supplied input files, making this a exploitable vulnerability.
changes made
Replace
strcpy()withstrncpy()or use dynamic allocation